diff --git a/cli/test/fixtures/oopif-scripts-timespan.html b/cli/test/fixtures/oopif-scripts-timespan.html new file mode 100644 index 000000000000..817213b5fa21 --- /dev/null +++ b/cli/test/fixtures/oopif-scripts-timespan.html @@ -0,0 +1,8 @@ + + + +

Hello frames

+ + + + diff --git a/cli/test/fixtures/oopif-simple-page.html b/cli/test/fixtures/oopif-simple-page.html index 7b241b47d132..c5b4f865ef5e 100644 --- a/cli/test/fixtures/oopif-simple-page.html +++ b/cli/test/fixtures/oopif-simple-page.html @@ -5,16 +5,27 @@ -

Just a simple page

+ diff --git a/core/audits/network-requests.js b/core/audits/network-requests.js index 472c8e278629..f7e99bf5135b 100644 --- a/core/audits/network-requests.js +++ b/core/audits/network-requests.js @@ -63,6 +63,7 @@ class NetworkRequests extends Audit { return { url: UrlUtils.elideDataURI(record.url), + sessionTargetType: record.sessionTargetType, protocol: record.protocol, rendererStartTime: normalizeTime(record.rendererStartTime), networkRequestTime: normalizeTime(record.networkRequestTime), diff --git a/core/gather/driver/target-manager.js b/core/gather/driver/target-manager.js index 28945b8202a4..a4bab53e1ebd 100644 --- a/core/gather/driver/target-manager.js +++ b/core/gather/driver/target-manager.js @@ -119,7 +119,7 @@ class TargetManager extends ProtocolEventEmitter { const targetName = target.targetInfo.url || target.targetInfo.targetId; log.verbose('target-manager', `target ${targetName} attached`); - const trueProtocolListener = this._getProtocolEventListener(newSession.id()); + const trueProtocolListener = this._getProtocolEventListener(targetType, newSession.id()); /** @type {(event: unknown) => void} */ // @ts-expect-error - pptr currently typed only for single arg emits. const protocolListener = trueProtocolListener; @@ -156,9 +156,10 @@ class TargetManager extends ProtocolEventEmitter { /** * Returns a listener for all protocol events from session, and augments the * event with the sessionId. + * @param {LH.Protocol.TargetType} targetType * @param {string} sessionId */ - _getProtocolEventListener(sessionId) { + _getProtocolEventListener(targetType, sessionId) { /** * @template {keyof LH.Protocol.RawEventMessageRecord} EventName * @param {EventName} method @@ -166,7 +167,8 @@ class TargetManager extends ProtocolEventEmitter { */ const onProtocolEvent = (method, params) => { // Cast because tsc 4.7 still can't quite track the dependent parameters. - const payload = /** @type {LH.Protocol.RawEventMessage} */ ({method, params, sessionId}); + const payload = /** @type {LH.Protocol.RawEventMessage} */ ( + {method, params, targetType, sessionId}); this.emit('protocolevent', payload); }; diff --git a/core/gather/gatherers/dobetterweb/optimized-images.js b/core/gather/gatherers/dobetterweb/optimized-images.js index d3adfdee0883..feee90f1b4d2 100644 --- a/core/gather/gatherers/dobetterweb/optimized-images.js +++ b/core/gather/gatherers/dobetterweb/optimized-images.js @@ -54,8 +54,8 @@ class OptimizedImages extends FRGatherer { /** @type {Set} */ const seenUrls = new Set(); return networkRecords.reduce((prev, record) => { - // Skip records that we've seen before, never finished, or came from child targets (OOPIFS). - if (seenUrls.has(record.url) || !record.finished || record.sessionId) { + // Skip records that we've seen before, never finished, or came from OOPIFs. + if (seenUrls.has(record.url) || !record.finished || record.isOutOfProcessIframe) { return prev; } diff --git a/core/gather/gatherers/dobetterweb/response-compression.js b/core/gather/gatherers/dobetterweb/response-compression.js index 3af8d6970edd..d671ddb5f9e4 100644 --- a/core/gather/gatherers/dobetterweb/response-compression.js +++ b/core/gather/gatherers/dobetterweb/response-compression.js @@ -55,8 +55,7 @@ class ResponseCompression extends FRGatherer { const unoptimizedResponses = []; networkRecords.forEach(record => { - // Ignore records from child targets (OOPIFS). - if (record.sessionId) return; + if (record.isOutOfProcessIframe) return; const mimeType = record.mimeType; const resourceType = record.resourceType || NetworkRequest.TYPES.Other; diff --git a/core/gather/gatherers/script-elements.js b/core/gather/gatherers/script-elements.js index a3e66ecf4493..188766f2c9f0 100644 --- a/core/gather/gatherers/script-elements.js +++ b/core/gather/gatherers/script-elements.js @@ -65,8 +65,7 @@ class ScriptElements extends FRGatherer { const scriptRecords = networkRecords .filter(record => record.resourceType === NetworkRequest.TYPES.Script) - // Ignore records from OOPIFs - .filter(record => !record.sessionId); + .filter(record => !record.isOutOfProcessIframe); for (let i = 0; i < scriptRecords.length; i++) { const record = scriptRecords[i]; diff --git a/core/gather/gatherers/scripts.js b/core/gather/gatherers/scripts.js index 69e78bd8ef5a..ad4d7b02fe89 100644 --- a/core/gather/gatherers/scripts.js +++ b/core/gather/gatherers/scripts.js @@ -59,9 +59,6 @@ class Scripts extends FRGatherer { /** @type {Array} */ _scriptContents = []; - /** @type {string|null|undefined} */ - _mainSessionId = null; - constructor() { super(); this.onScriptParsed = this.onScriptParsed.bind(this); diff --git a/core/legacy/gather/connections/connection.js b/core/legacy/gather/connections/connection.js index 60bb8227aa16..22c9a6b2a267 100644 --- a/core/legacy/gather/connections/connection.js +++ b/core/legacy/gather/connections/connection.js @@ -25,6 +25,8 @@ class Connection { this._lastCommandId = 0; /** @type {Map} */ this._callbacks = new Map(); + /** @type {Map} */ + this._sessionIdToTargetType = new Map(); this._eventEmitter = /** @type {?CrdpEventMessageEmitter} */ (new EventEmitter()); } @@ -129,6 +131,18 @@ class Connection { if (!('id' in object)) { log.formatProtocol('<= event', {method: object.method, params: object.params}, 'verbose'); + if (object.method === 'Target.attachedToTarget') { + const type = object.params.targetInfo.type; + if (type === 'page' || type === 'iframe') { + this._sessionIdToTargetType.set(object.params.sessionId, type); + } + } + if (object.sessionId) { + const type = this._sessionIdToTargetType.get(object.sessionId); + if (type) { + object.targetType = type; + } + } this.emitProtocolEvent(object); return; } @@ -175,6 +189,7 @@ class Connection { this._eventEmitter.removeAllListeners(); this._eventEmitter = null; } + this._sessionIdToTargetType.clear(); } } diff --git a/core/lib/network-recorder.js b/core/lib/network-recorder.js index d0e1b7c76c60..11911066ed35 100644 --- a/core/lib/network-recorder.js +++ b/core/lib/network-recorder.js @@ -31,8 +31,6 @@ class NetworkRecorder extends RequestEventEmitter { this._records = []; /** @type {Map} */ this._recordsById = new Map(); - /** @type {string|null|undefined} */ - this._mainSessionId = null; } /** @@ -71,11 +69,12 @@ class NetworkRecorder extends RequestEventEmitter { // DevTools SDK network layer. /** - * @param {{params: LH.Crdp.Network.RequestWillBeSentEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.RequestWillBeSentEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onRequestWillBeSent(event) { const data = event.params; - const originalRequest = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const originalRequest = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); // This is a simple new request, create the NetworkRequest object and finish. if (!originalRequest) { const request = new NetworkRequest(); @@ -114,44 +113,48 @@ class NetworkRecorder extends RequestEventEmitter { } /** - * @param {{params: LH.Crdp.Network.RequestServedFromCacheEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.RequestServedFromCacheEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onRequestServedFromCache(event) { const data = event.params; - const request = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const request = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); if (!request) return; log.verbose('network', `${request.url} served from cache`); request.onRequestServedFromCache(); } /** - * @param {{params: LH.Crdp.Network.ResponseReceivedEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.ResponseReceivedEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onResponseReceived(event) { const data = event.params; - const request = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const request = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); if (!request) return; log.verbose('network', `${request.url} response received`); request.onResponseReceived(data); } /** - * @param {{params: LH.Crdp.Network.DataReceivedEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.DataReceivedEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onDataReceived(event) { const data = event.params; - const request = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const request = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); if (!request) return; log.verbose('network', `${request.url} data received`); request.onDataReceived(data); } /** - * @param {{params: LH.Crdp.Network.LoadingFinishedEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.LoadingFinishedEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onLoadingFinished(event) { const data = event.params; - const request = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const request = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); if (!request) return; log.verbose('network', `${request.url} loading finished`); request.onLoadingFinished(data); @@ -159,11 +162,12 @@ class NetworkRecorder extends RequestEventEmitter { } /** - * @param {{params: LH.Crdp.Network.LoadingFailedEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.LoadingFailedEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onLoadingFailed(event) { const data = event.params; - const request = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const request = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); if (!request) return; log.verbose('network', `${request.url} loading failed`); request.onLoadingFailed(data); @@ -171,11 +175,12 @@ class NetworkRecorder extends RequestEventEmitter { } /** - * @param {{params: LH.Crdp.Network.ResourceChangedPriorityEvent, sessionId?: string}} event + * @param {{params: LH.Crdp.Network.ResourceChangedPriorityEvent, targetType: LH.Protocol.TargetType, sessionId?: string}} event */ onResourceChangedPriority(event) { const data = event.params; - const request = this._findRealRequestAndSetSession(data.requestId, event.sessionId); + const request = this._findRealRequestAndSetSession( + data.requestId, event.targetType, event.sessionId); if (!request) return; request.onResourceChangedPriority(data); } @@ -204,24 +209,11 @@ class NetworkRecorder extends RequestEventEmitter { * message is referring. * * @param {string} requestId + * @param {LH.Protocol.TargetType} targetType * @param {string|undefined} sessionId * @return {NetworkRequest|undefined} */ - _findRealRequestAndSetSession(requestId, sessionId) { - // The very first sessionId processed is always the main sessionId. In all but DevTools, - // this sessionId is undefined. However, in DevTools the main Lighthouse protocol connection - // does send events with sessionId set to a string, because of how DevTools routes the protocol - // to Lighthouse. - // Many places in Lighthouse use `record.sessionId === undefined` to mean that the session is not - // an OOPIF. To maintain this property, we intercept sessionId here and set it to undefined if - // it matches the first value seen. - if (this._mainSessionId === null) { - this._mainSessionId = sessionId; - } - if (this._mainSessionId === sessionId) { - sessionId = undefined; - } - + _findRealRequestAndSetSession(requestId, targetType, sessionId) { let request = this._recordsById.get(requestId); if (!request || !request.isValid) return undefined; @@ -230,6 +222,7 @@ class NetworkRecorder extends RequestEventEmitter { } request.setSession(sessionId); + request.sessionTargetType = targetType; return request; } diff --git a/core/lib/network-request.js b/core/lib/network-request.js index 140e8dd2178a..15afc8530560 100644 --- a/core/lib/network-request.js +++ b/core/lib/network-request.js @@ -178,12 +178,10 @@ class NetworkRequest { this.fetchedViaServiceWorker = false; /** @type {string|undefined} */ this.frameId = ''; - /** - * @type {string|undefined} - * Only set for child targets (OOPIFs). This is the sessionId of the protocol connection on - * which this request was discovered. `undefined` means it came from the root. - */ + /** @type {string|undefined} */ this.sessionId = undefined; + /** @type {LH.Protocol.TargetType|undefined} */ + this.sessionTargetType = undefined; this.isLinkPreload = false; } @@ -320,12 +318,16 @@ class NetworkRequest { } /** - * @param {string=} sessionId + * @param {string|undefined} sessionId */ setSession(sessionId) { this.sessionId = sessionId; } + get isOutOfProcessIframe() { + return this.sessionTargetType === 'iframe'; + } + /** * @param {LH.Crdp.Network.Response} response * @param {number} timestamp in seconds diff --git a/core/test/fixtures/fraggle-rock/artifacts/step0/defaultPass.devtoolslog.json b/core/test/fixtures/fraggle-rock/artifacts/step0/defaultPass.devtoolslog.json index c737b2465f00..4b2c37c3c4ff 100644 --- a/core/test/fixtures/fraggle-rock/artifacts/step0/defaultPass.devtoolslog.json +++ b/core/test/fixtures/fraggle-rock/artifacts/step0/defaultPass.devtoolslog.json @@ -1,173 +1,173 @@ [ - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"commit","timestamp":183708.336293},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"DOMContentLoaded","timestamp":183708.336964},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"load","timestamp":183708.340716},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"networkAlmostIdle","timestamp":183708.343031},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"networkIdle","timestamp":183708.343031},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/","method":"GET","headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183712.986644,"wallTime":1673652466.845379,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Document","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"document","sec-fetch-mode":"navigate","sec-fetch-site":"none","sec-fetch-user":"?1","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183712.988017}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"en-US\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"8b5206aa34181a04d3bccd5416fb241ebd371db5d015ca33cec37377d4cafe1b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467109-f9ea326df36c"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.171371,"type":"Document","response":{"url":"https://www.mikescerealshack.co/","status":200,"statusText":"","headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"en-US\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"8b5206aa34181a04d3bccd5416fb241ebd371db5d015ca33cec37377d4cafe1b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467109-f9ea326df36c"},"mimeType":"text/html","connectionReused":false,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":250,"timing":{"requestTime":183712.988017,"proxyStart":-1,"proxyEnd":-1,"dnsStart":134.135,"dnsEnd":134.155,"connectStart":134.155,"connectEnd":156.688,"sslStart":139.326,"sslEnd":156.68,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":158.101,"sendEnd":158.411,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":178.099},"responseTime":1673652467023.216,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.frameStartedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"init","timestamp":183713.180051},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Runtime.executionContextsCleared","params":{},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.frameNavigated","params":{"frame":{"id":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","url":"https://www.mikescerealshack.co/","domainAndRegistry":"mikescerealshack.co","securityOrigin":"https://www.mikescerealshack.co","mimeType":"text/html","adFrameStatus":{"adFrameType":"none"},"secureContextType":"Secure","crossOriginIsolatedContextType":"NotIsolated","gatedAPIFeatures":[]},"type":"Navigation"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":3,"origin":"https://www.mikescerealshack.co","name":"","uniqueId":"-5646624151355224372.2343615347102176161","auxData":{"isDefault":true,"type":"default","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.193147,"dataLength":9302,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.2","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.197753,"wallTime":1673652467.056872,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":0,"columnNumber":540},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.3","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://events.mikescerealshack.co/js/index.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.199269,"wallTime":1673652467.057869,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":126},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.4","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.199523,"wallTime":1673652467.058437,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1362},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.6","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.20041,"wallTime":1673652467.059019,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1573},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.7","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.200673,"wallTime":1673652467.059273,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1666},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.8","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.200892,"wallTime":1673652467.059486,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1761},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.9","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201085,"wallTime":1673652467.059681,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1854},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.10","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201342,"wallTime":1673652467.059935,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1950},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.11","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201515,"wallTime":1673652467.060107,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":2076},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.12","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201697,"wallTime":1673652467.060289,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":2173},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.13","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/logo-text.svg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.201883,"wallTime":1673652467.060475,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":3414},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.22","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.202137,"wallTime":1673652467.06073,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":8288},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.23","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.202225,"wallTime":1673652467.060821,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":8372},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":4,"origin":"://","name":"__puppeteer_utility_world__","uniqueId":"7062098712228152176.-2130357016024239878","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.2","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/fonts/danielbd.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","origin":"https://www.mikescerealshack.co","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.199581},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.4","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/css/08dcb440d7d83b488817.css",":scheme":"https","accept":"text/css,*/*;q=0.1","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"style","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.200727},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.6","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/main-1f8481d632114a408557.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.200973},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.7","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/webpack-657a8433bac0aabd564e.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.201227},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.8","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/framework.9d524150d48315f49e80.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.201583},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.9","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/commons.49455e4fa8cc3f51203f.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.20179},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.10","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.202143},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.11","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.202362},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.12","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/index-37980adf97404e76e41a.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.202528},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.2","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"danielbd.woff2\"","content-length":"35680","content-type":"font/woff2","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467161-f77b1d65385a"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.25","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183713.217517,"wallTime":1673652467.076328,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"loadCssAsync","scriptId":"12","url":"https://www.mikescerealshack.co/","lineNumber":8,"columnNumber":16},{"functionName":"","scriptId":"12","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":2}]}},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.13","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/logo-text.svg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.219286},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.167977,"encodedDataLength":3558,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.22","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.219608},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.23","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.219873},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.6","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.2","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.222448,"type":"Font","response":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467161-f77b1d65385a","age":"3886004","etag":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","x-vercel-cache":"HIT","content-type":"font/woff2","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"danielbd.woff2\"","accept-ranges":"bytes","content-length":"35680"},"mimeType":"font/woff2","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":158,"timing":{"requestTime":183713.199581,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.373,"sendEnd":1.229,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.604},"responseTime":1673652467068.689,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.2","timestamp":183713.222534,"dataLength":35680,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.2","timestamp":183713.225524,"dataLength":0,"encodedDataLength":35716},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.2","timestamp":183713.213493,"encodedDataLength":35874,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.8","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.9","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.10","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.7","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.11","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.12","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.23","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","content-length":"76","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.22","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954887","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.13","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\"","content-encoding":"br","content-type":"image/svg+xml","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467184-d0acb503fa17"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.4","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\"","content-encoding":"br","content-type":"text/css; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.domContentEventFired","params":{"timestamp":183713.240089},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"DOMContentLoaded","timestamp":183713.240089},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.6","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.240936,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616","age":"3886004","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":7033,"timing":{"requestTime":183713.200973,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.44,"sendEnd":1.64,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":24.524},"responseTime":1673652467074.245,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.6","timestamp":183713.241029,"dataLength":17656,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.8","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.241558,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c","age":"3886004","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":43877,"timing":{"requestTime":183713.201583,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.116,"sendEnd":1.47,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":24.829},"responseTime":1673652467075.567,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.8","timestamp":183713.241615,"dataLength":97131,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.9","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.242165,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f","age":"3886004","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":15122,"timing":{"requestTime":183713.20179,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.975,"sendEnd":1.268,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":25.686},"responseTime":1673652467082.21,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.9","timestamp":183713.242208,"dataLength":44060,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.10","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.242603,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf","age":"3886004","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":747,"timing":{"requestTime":183713.202143,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.805,"sendEnd":1.012,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":25.841},"responseTime":1673652467077.189,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.10","timestamp":183713.242647,"dataLength":1235,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.7","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.242978,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4","age":"3886004","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":145,"timing":{"requestTime":183713.201227,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.757,"sendEnd":1.611,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":27.155},"responseTime":1673652467086.881,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.7","timestamp":183713.243018,"dataLength":2351,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.11","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.243287,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":167,"timing":{"requestTime":183713.202362,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.619,"sendEnd":0.798,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":26.837},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.11","timestamp":183713.243325,"dataLength":67673,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.12","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.243789,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1125,"timing":{"requestTime":183713.202528,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.49,"sendEnd":0.636,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":26.903},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.12","timestamp":183713.243828,"dataLength":1856,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.23","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.244147,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7","age":"3886004","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","accept-ranges":"bytes","content-length":"76"},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":138,"timing":{"requestTime":183713.219873,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":2.239,"sendEnd":2.391,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":12.454},"responseTime":1673652467090.852,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.23","timestamp":183713.24419,"dataLength":76,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.22","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.244461,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760","age":"954887","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":141,"timing":{"requestTime":183713.219608,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":2.436,"sendEnd":2.652,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":13.261},"responseTime":1673652467091.398,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.22","timestamp":183713.244499,"dataLength":1545,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.13","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.244772,"type":"Image","response":{"url":"https://www.mikescerealshack.co/logo-text.svg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467184-d0acb503fa17","age":"3886004","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","x-vercel-cache":"HIT","content-type":"image/svg+xml","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\""},"mimeType":"image/svg+xml","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":231,"timing":{"requestTime":183713.219286,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.143,"sendEnd":2.855,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":15.092},"responseTime":1673652467092.904,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.13","timestamp":183713.244806,"dataLength":53947,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.13","timestamp":183713.257801,"dataLength":0,"encodedDataLength":14188},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.13","timestamp":183713.237762,"encodedDataLength":14419,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.4","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.258161,"type":"Stylesheet","response":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163","age":"3886004","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","x-vercel-cache":"HIT","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\""},"mimeType":"text/css","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":157,"timing":{"requestTime":183713.200727,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.349,"sendEnd":1.164,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":37.264},"responseTime":1673652467096.503,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.4","timestamp":183713.258208,"dataLength":18126,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.4","timestamp":183713.260046,"dataLength":0,"encodedDataLength":4837},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.4","timestamp":183713.238572,"encodedDataLength":4994,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstPaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstContentfulPaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstImagePaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstMeaningfulPaintCandidate","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.7","timestamp":183713.30871,"dataLength":0,"encodedDataLength":1262},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.7","timestamp":183713.228935,"encodedDataLength":1407,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.6","timestamp":183713.227277,"encodedDataLength":7033,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.10","timestamp":183713.229922,"encodedDataLength":747,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.9","timestamp":183713.229715,"encodedDataLength":15122,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.12","timestamp":183713.230088,"encodedDataLength":1125,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.23","timestamp":183713.309245,"dataLength":0,"encodedDataLength":94},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.23","timestamp":183713.23263,"encodedDataLength":232,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.22","timestamp":183713.309342,"dataLength":0,"encodedDataLength":623},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.22","timestamp":183713.233205,"encodedDataLength":764,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.11","timestamp":183713.309465,"dataLength":0,"encodedDataLength":23795},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.11","timestamp":183713.232099,"encodedDataLength":23962,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.8","timestamp":183713.309835,"dataLength":33146,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.8","timestamp":183713.26609,"encodedDataLength":43877,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.25","associatedCookies":[],"headers":{":authority":"fonts.googleapis.com",":method":"GET",":path":"/css2?family=Poppins:wght@400;500;700&display=swap",":scheme":"https","accept":"text/css,*/*;q=0.1","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"style","sec-fetch-mode":"no-cors","sec-fetch-site":"cross-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","x-client-data":"CKbqygE="},"connectTiming":{"requestTime":183713.22014},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.25","blockedCookies":[],"headers":{"access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"private, max-age=86400, stale-while-revalidate=604800","content-encoding":"gzip","content-type":"text/css; charset=utf-8","cross-origin-opener-policy":"same-origin-allow-popups","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Fri, 13 Jan 2023 23:27:47 GMT","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","link":"; rel=preconnect; crossorigin","server":"ESF","strict-transport-security":"max-age=31536000","timing-allow-origin":"*","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-google-apps-framework-action":"Css2","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","x-google-dos-service-trace":"main:apps-themes","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"apps-themes","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32\nFRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","x-google-service":"apps-themes","x-google-session-info":"WgdKBWVuLVVT","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.navigatedWithinDocument","params":{"frameId":"6B7B62084170FF8A201077D06215638B","url":"https://www.mikescerealshack.co/"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.25","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.366822,"type":"Stylesheet","response":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","status":200,"statusText":"","headers":{"x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32, FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","content-encoding":"gzip","x-google-gfe-service-trace":"apps-themes","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-frame-options":"SAMEORIGIN","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"private, max-age=86400, stale-while-revalidate=604800","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","link":"; rel=preconnect; crossorigin","x-google-dos-service-trace":"main:apps-themes","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","strict-transport-security":"max-age=31536000","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-session-info":"WgdKBWVuLVVT","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","expires":"Fri, 13 Jan 2023 23:27:47 GMT","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","x-google-service":"apps-themes","x-xss-protection":"0","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-shellfish-status":"CA0gBEBG","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","server":"ESF","cross-origin-opener-policy":"same-origin-allow-popups","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-apps-framework-action":"Css2","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","timing-allow-origin":"*"},"mimeType":"text/css","connectionReused":false,"connectionId":156,"remoteIPAddress":"[2607:f8b0:4005:80f::200a]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1987,"timing":{"requestTime":183713.22014,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.587,"dnsEnd":70.146,"connectStart":70.146,"connectEnd":96.056,"sslStart":73.552,"sslEnd":96.049,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":97.523,"sendEnd":97.65,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":123.454},"responseTime":1673652467202.03,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"upload.video.google.com","sanList":["upload.video.google.com","*.clients.google.com","*.docs.google.com","*.drive.google.com","*.gdata.youtube.com","*.googleapis.com","*.photos.google.com","*.youtube-3rd-party.com","upload.google.com","*.upload.google.com","upload.youtube.com","*.upload.youtube.com","uploads.stage.gdata.youtube.com","bg-call-donation.goog","bg-call-donation-alpha.goog","bg-call-donation-canary.goog","bg-call-donation-dev.goog"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1670836759168,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304402200A35AA11399C121A5F71D168954FDB7F3C67AD3C912A34392A6D32A9469EEC3302201DCCD7D79C5AE793E6031D617555EE92010B3589A096928E1778EF3F5C9DDC85"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1670836759163,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022026B6BE4ED12D5AF91A7827A2AAC98105DE583B591FFFFE934C06B5C4BCE106250221009495CFDC420A532CEE2D15E09E4C3A5C468707530215EBABFB0D0292223522A5"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.25","timestamp":183713.366885,"dataLength":3282,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.25","timestamp":183713.367137,"dataLength":0,"encodedDataLength":519},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.25","timestamp":183713.344427,"encodedDataLength":2506,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.53","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.37525,"wallTime":1673652467.233897,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.54","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.375542,"wallTime":1673652467.234169,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.55","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.37577,"wallTime":1673652467.234391,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.54","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.376044},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.55","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.376282},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.53","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183713.37584},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.53","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.53","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.377358,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183713.37584,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.042,"sendEnd":0.042,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.956},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.53","timestamp":183713.377346,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.54","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.54","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.386721,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a","age":"883151","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":173,"timing":{"requestTime":183713.376044,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.33,"sendEnd":0.684,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.008},"responseTime":1673652467244.559,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.55","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.55","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.388671,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e","age":"883151","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":199,"timing":{"requestTime":183713.376282,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.315,"sendEnd":0.665,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.376},"responseTime":1673652467246.169,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.55","timestamp":183713.388815,"dataLength":0,"encodedDataLength":2828},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.55","timestamp":183713.387974,"encodedDataLength":3027,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.54","timestamp":183713.388982,"dataLength":0,"encodedDataLength":3693},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.54","timestamp":183713.387484,"encodedDataLength":3866,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.58","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183713.500419,"wallTime":1673652467.359027,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.64","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183713.501661,"wallTime":1673652467.360267,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.58","associatedCookies":[],"headers":{":authority":"fonts.gstatic.com",":method":"GET",":path":"/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","origin":"https://www.mikescerealshack.co","referer":"https://fonts.googleapis.com/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"cross-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","x-client-data":"CKbqygE="},"connectTiming":{"requestTime":183713.503016},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.64","associatedCookies":[],"headers":{":authority":"fonts.gstatic.com",":method":"GET",":path":"/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","origin":"https://www.mikescerealshack.co","referer":"https://fonts.googleapis.com/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"cross-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","x-client-data":"CKbqygE="},"connectTiming":{"requestTime":183713.503254},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.58","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7884","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075620475600","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.58","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.524558,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075620475600","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7884","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":false,"connectionId":170,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1493,"timing":{"requestTime":183713.503016,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.413,"sendEnd":0.631,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":20.255},"responseTime":1673652467381.674,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1670836758586,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30440220345C01062681291884E36BBFF51027545279C81A7A5F85D2109904082225D11A02207A374F0496010F62092D3309C786D697BE679E8CE4829ADC1A1AD939B7CE1106"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2023' Log","logId":"7A328C54D8B72DB620EA38E0521EE98416703213854D3BD22BC13A57A352EB52","timestamp":1670836758643,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100FE14CAABCE2CD0F1096E14C9BDD816210D2B92669341E4B826EBD2ADFF62C20E022100D3392684B65F853BCA07DA6C0F1A99F5491DF4BD1D328BBF95E3A225B86B9BF5"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.64","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7816","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075834023274","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.58","timestamp":183713.525586,"dataLength":7884,"encodedDataLength":7902},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.58","timestamp":183713.52474,"encodedDataLength":9395,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.64","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.526861,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075834023274","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7816","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":true,"connectionId":170,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":439,"timing":{"requestTime":183713.503254,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.365,"sendEnd":0.44,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":22.286},"responseTime":1673652467383.561,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1670836758586,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30440220345C01062681291884E36BBFF51027545279C81A7A5F85D2109904082225D11A02207A374F0496010F62092D3309C786D697BE679E8CE4829ADC1A1AD939B7CE1106"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2023' Log","logId":"7A328C54D8B72DB620EA38E0521EE98416703213854D3BD22BC13A57A352EB52","timestamp":1670836758643,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100FE14CAABCE2CD0F1096E14C9BDD816210D2B92669341E4B826EBD2ADFF62C20E022100D3392684B65F853BCA07DA6C0F1A99F5491DF4BD1D328BBF95E3A225B86B9BF5"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.64","timestamp":183713.526934,"dataLength":7816,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.64","timestamp":183713.527654,"dataLength":0,"encodedDataLength":7834},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.64","timestamp":183713.525864,"encodedDataLength":8273,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.65","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.548631,"wallTime":1673652467.407352,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.66","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.549176,"wallTime":1673652467.40787,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.65","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183713.549252},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.65","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.66","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183713.549708},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.66","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.65","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.550387,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a","age":"883151","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183713.549252,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.044,"sendEnd":0.044,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.654},"responseTime":1673652467244.559,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.66","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.551011,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e","age":"883151","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183713.549708,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.046,"sendEnd":0.046,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.657},"responseTime":1673652467246.169,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.66","timestamp":183713.551075,"dataLength":6837,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.65","timestamp":183713.551268,"dataLength":8890,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.66","timestamp":183713.550888,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.65","timestamp":183713.550628,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.3","associatedCookies":[],"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Connection":"keep-alive","Host":"events.mikescerealshack.co","Referer":"https://www.mikescerealshack.co/","Sec-Fetch-Dest":"script","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Site":"same-site","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\""},"connectTiming":{"requestTime":183713.199825},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.3","blockedCookies":[],"headers":{"Connection":"keep-alive","Content-Encoding":"gzip","Content-Type":"application/javascript","Date":"Fri, 13 Jan 2023 23:27:47 GMT","Server":"nginx/1.18.0 (Ubuntu)","Transfer-Encoding":"chunked","access-control-allow-origin":"*","application":"10.0.0.8","cache-control":"public, max-age=86400, must-revalidate","cross-origin-resource-policy":"cross-origin","permissions-policy":"interest-cohort=()","x-content-type-options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx/1.18.0 (Ubuntu)\r\nDate: Fri, 13 Jan 2023 23:27:47 GMT\r\nContent-Type: application/javascript\r\nTransfer-Encoding: chunked\r\nConnection: keep-alive\r\naccess-control-allow-origin: *\r\napplication: 10.0.0.8\r\ncache-control: public, max-age=86400, must-revalidate\r\ncross-origin-resource-policy: cross-origin\r\npermissions-policy: interest-cohort=()\r\nx-content-type-options: nosniff\r\nContent-Encoding: gzip\r\n\r\n"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.3","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.867136,"type":"Script","response":{"url":"https://events.mikescerealshack.co/js/index.js","status":200,"statusText":"OK","headers":{"Date":"Fri, 13 Jan 2023 23:27:47 GMT","Content-Encoding":"gzip","x-content-type-options":"nosniff","Server":"nginx/1.18.0 (Ubuntu)","Transfer-Encoding":"chunked","Content-Type":"application/javascript","access-control-allow-origin":"*","cache-control":"public, max-age=86400, must-revalidate","permissions-policy":"interest-cohort=()","cross-origin-resource-policy":"cross-origin","Connection":"keep-alive","application":"10.0.0.8"},"mimeType":"application/javascript","connectionReused":false,"connectionId":171,"remoteIPAddress":"[64:ff9b::4e2f:830b]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":428,"timing":{"requestTime":183713.199825,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.206,"dnsEnd":167.898,"connectStart":167.898,"connectEnd":498.356,"sslStart":330.229,"sslEnd":498.349,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":499.746,"sendEnd":500.213,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":666.336},"responseTime":1673652467724.65,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"events.mikescerealshack.co","sanList":["events.mikescerealshack.co"],"issuer":"R3","validFrom":1668691921,"validTo":1676467920,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1668695521955,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100C6BD5711A0E20393F31746760C6EF102744D0BD12A57766251DE44E39380BDD8022037B01566FBDD87FCAC4EFA3F153D8099E8CC65C6C1504B57DA3EF34F10F58CF2"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1668695521949,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100A19641A20D4A120D4E8E96508598F5CA71DA9086AF5B6784F2E8D61BA9AD67560220502D2F4B1FD4BA6AB40ABCC77FCD7B9C3E67C09C35B357BDFE4D8C49A1D9A9AF"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.3","timestamp":183713.867194,"dataLength":1321,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.3","timestamp":183713.86675,"encodedDataLength":1201,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.loadEventFired","params":{"timestamp":183713.869203},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"load","timestamp":183713.869203},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.frameStoppedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.67","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/favicon.png","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.907521,"wallTime":1673652467.766144,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.67","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/favicon.png",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.908489},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.67","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"favicon.png\"","content-length":"5164","content-type":"image/png","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"d4447ef0fcc1b11c946665fec8f987d082cad07567565d928864d6dc58559e4b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467897-3a58d68471fe"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.67","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.946649,"type":"Other","response":{"url":"https://www.mikescerealshack.co/favicon.png","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467897-3a58d68471fe","age":"3886004","etag":"W/\"d4447ef0fcc1b11c946665fec8f987d082cad07567565d928864d6dc58559e4b\"","x-vercel-cache":"HIT","content-type":"image/png","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"favicon.png\"","accept-ranges":"bytes","content-length":"5164"},"mimeType":"image/png","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":155,"timing":{"requestTime":183713.908489,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.732,"sendEnd":0.897,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":37.524},"responseTime":1673652467804.489,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.67","timestamp":183713.947869,"dataLength":5164,"encodedDataLength":5191},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.67","timestamp":183713.947756,"encodedDataLength":5346,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkAlmostIdle","timestamp":183713.551617},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstMeaningfulPaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkIdle","timestamp":183713.949932},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD"} + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"commit","timestamp":183708.336293},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"DOMContentLoaded","timestamp":183708.336964},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"load","timestamp":183708.340716},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"networkAlmostIdle","timestamp":183708.343031},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"8FD782D14EA14DAA17115CE3C8EABC89","name":"networkIdle","timestamp":183708.343031},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/","method":"GET","headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183712.986644,"wallTime":1673652466.845379,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Document","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"document","sec-fetch-mode":"navigate","sec-fetch-site":"none","sec-fetch-user":"?1","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183712.988017}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"en-US\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"8b5206aa34181a04d3bccd5416fb241ebd371db5d015ca33cec37377d4cafe1b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467109-f9ea326df36c"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.171371,"type":"Document","response":{"url":"https://www.mikescerealshack.co/","status":200,"statusText":"","headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"en-US\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"8b5206aa34181a04d3bccd5416fb241ebd371db5d015ca33cec37377d4cafe1b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467109-f9ea326df36c"},"mimeType":"text/html","connectionReused":false,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":250,"timing":{"requestTime":183712.988017,"proxyStart":-1,"proxyEnd":-1,"dnsStart":134.135,"dnsEnd":134.155,"connectStart":134.155,"connectEnd":156.688,"sslStart":139.326,"sslEnd":156.68,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":158.101,"sendEnd":158.411,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":178.099},"responseTime":1673652467023.216,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.frameStartedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"init","timestamp":183713.180051},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Runtime.executionContextsCleared","params":{},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.frameNavigated","params":{"frame":{"id":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","url":"https://www.mikescerealshack.co/","domainAndRegistry":"mikescerealshack.co","securityOrigin":"https://www.mikescerealshack.co","mimeType":"text/html","adFrameStatus":{"adFrameType":"none"},"secureContextType":"Secure","crossOriginIsolatedContextType":"NotIsolated","gatedAPIFeatures":[]},"type":"Navigation"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":3,"origin":"https://www.mikescerealshack.co","name":"","uniqueId":"-5646624151355224372.2343615347102176161","auxData":{"isDefault":true,"type":"default","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.193147,"dataLength":9302,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.2","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.197753,"wallTime":1673652467.056872,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":0,"columnNumber":540},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.3","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://events.mikescerealshack.co/js/index.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.199269,"wallTime":1673652467.057869,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":126},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.4","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.199523,"wallTime":1673652467.058437,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1362},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.6","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.20041,"wallTime":1673652467.059019,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1573},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.7","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.200673,"wallTime":1673652467.059273,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1666},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.8","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.200892,"wallTime":1673652467.059486,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1761},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.9","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201085,"wallTime":1673652467.059681,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1854},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.10","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201342,"wallTime":1673652467.059935,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":1950},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.11","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201515,"wallTime":1673652467.060107,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":2076},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.12","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183713.201697,"wallTime":1673652467.060289,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":2173},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.13","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/logo-text.svg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.201883,"wallTime":1673652467.060475,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":3414},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.22","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.202137,"wallTime":1673652467.06073,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":8288},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.23","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.202225,"wallTime":1673652467.060821,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":8372},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":4,"origin":"://","name":"__puppeteer_utility_world__","uniqueId":"7062098712228152176.-2130357016024239878","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.2","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/fonts/danielbd.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","origin":"https://www.mikescerealshack.co","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.199581},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.4","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/css/08dcb440d7d83b488817.css",":scheme":"https","accept":"text/css,*/*;q=0.1","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"style","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.200727},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.6","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/main-1f8481d632114a408557.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.200973},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.7","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/webpack-657a8433bac0aabd564e.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.201227},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.8","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/framework.9d524150d48315f49e80.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.201583},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.9","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/commons.49455e4fa8cc3f51203f.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.20179},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.10","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.202143},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.11","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.202362},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.12","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/index-37980adf97404e76e41a.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.202528},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.2","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"danielbd.woff2\"","content-length":"35680","content-type":"font/woff2","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467161-f77b1d65385a"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.25","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183713.217517,"wallTime":1673652467.076328,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"loadCssAsync","scriptId":"12","url":"https://www.mikescerealshack.co/","lineNumber":8,"columnNumber":16},{"functionName":"","scriptId":"12","url":"https://www.mikescerealshack.co/","lineNumber":9,"columnNumber":2}]}},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.13","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/logo-text.svg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.219286},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.167977,"encodedDataLength":3558,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.22","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.219608},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.23","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.219873},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.6","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.2","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.222448,"type":"Font","response":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::kq2v8-1673652467161-f77b1d65385a","age":"3886004","etag":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","x-vercel-cache":"HIT","content-type":"font/woff2","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"danielbd.woff2\"","accept-ranges":"bytes","content-length":"35680"},"mimeType":"font/woff2","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":158,"timing":{"requestTime":183713.199581,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.373,"sendEnd":1.229,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.604},"responseTime":1673652467068.689,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.2","timestamp":183713.222534,"dataLength":35680,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.2","timestamp":183713.225524,"dataLength":0,"encodedDataLength":35716},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.2","timestamp":183713.213493,"encodedDataLength":35874,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.8","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.9","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.10","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.7","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.11","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.12","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.23","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","content-length":"76","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.22","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954887","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.13","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\"","content-encoding":"br","content-type":"image/svg+xml","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467184-d0acb503fa17"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.4","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\"","content-encoding":"br","content-type":"text/css; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.domContentEventFired","params":{"timestamp":183713.240089},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"DOMContentLoaded","timestamp":183713.240089},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.6","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.240936,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616","age":"3886004","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":7033,"timing":{"requestTime":183713.200973,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.44,"sendEnd":1.64,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":24.524},"responseTime":1673652467074.245,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.6","timestamp":183713.241029,"dataLength":17656,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.8","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.241558,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c","age":"3886004","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":43877,"timing":{"requestTime":183713.201583,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.116,"sendEnd":1.47,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":24.829},"responseTime":1673652467075.567,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.8","timestamp":183713.241615,"dataLength":97131,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.9","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.242165,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f","age":"3886004","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":15122,"timing":{"requestTime":183713.20179,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.975,"sendEnd":1.268,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":25.686},"responseTime":1673652467082.21,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.9","timestamp":183713.242208,"dataLength":44060,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.10","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.242603,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf","age":"3886004","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":747,"timing":{"requestTime":183713.202143,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.805,"sendEnd":1.012,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":25.841},"responseTime":1673652467077.189,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.10","timestamp":183713.242647,"dataLength":1235,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.7","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.242978,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4","age":"3886004","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":145,"timing":{"requestTime":183713.201227,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.757,"sendEnd":1.611,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":27.155},"responseTime":1673652467086.881,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.7","timestamp":183713.243018,"dataLength":2351,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.11","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.243287,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":167,"timing":{"requestTime":183713.202362,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.619,"sendEnd":0.798,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":26.837},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.11","timestamp":183713.243325,"dataLength":67673,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.12","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.243789,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1125,"timing":{"requestTime":183713.202528,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.49,"sendEnd":0.636,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":26.903},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.12","timestamp":183713.243828,"dataLength":1856,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.23","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.244147,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7","age":"3886004","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","accept-ranges":"bytes","content-length":"76"},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":138,"timing":{"requestTime":183713.219873,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":2.239,"sendEnd":2.391,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":12.454},"responseTime":1673652467090.852,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.23","timestamp":183713.24419,"dataLength":76,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.22","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.244461,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760","age":"954887","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":141,"timing":{"requestTime":183713.219608,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":2.436,"sendEnd":2.652,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":13.261},"responseTime":1673652467091.398,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.22","timestamp":183713.244499,"dataLength":1545,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.13","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.244772,"type":"Image","response":{"url":"https://www.mikescerealshack.co/logo-text.svg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467184-d0acb503fa17","age":"3886004","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","x-vercel-cache":"HIT","content-type":"image/svg+xml","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\""},"mimeType":"image/svg+xml","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":231,"timing":{"requestTime":183713.219286,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.143,"sendEnd":2.855,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":15.092},"responseTime":1673652467092.904,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.13","timestamp":183713.244806,"dataLength":53947,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.13","timestamp":183713.257801,"dataLength":0,"encodedDataLength":14188},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.13","timestamp":183713.237762,"encodedDataLength":14419,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.4","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.258161,"type":"Stylesheet","response":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163","age":"3886004","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","x-vercel-cache":"HIT","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\""},"mimeType":"text/css","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":157,"timing":{"requestTime":183713.200727,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.349,"sendEnd":1.164,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":37.264},"responseTime":1673652467096.503,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.4","timestamp":183713.258208,"dataLength":18126,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.4","timestamp":183713.260046,"dataLength":0,"encodedDataLength":4837},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.4","timestamp":183713.238572,"encodedDataLength":4994,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstPaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstContentfulPaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstImagePaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstMeaningfulPaintCandidate","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.7","timestamp":183713.30871,"dataLength":0,"encodedDataLength":1262},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.7","timestamp":183713.228935,"encodedDataLength":1407,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.6","timestamp":183713.227277,"encodedDataLength":7033,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.10","timestamp":183713.229922,"encodedDataLength":747,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.9","timestamp":183713.229715,"encodedDataLength":15122,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.12","timestamp":183713.230088,"encodedDataLength":1125,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.23","timestamp":183713.309245,"dataLength":0,"encodedDataLength":94},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.23","timestamp":183713.23263,"encodedDataLength":232,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.22","timestamp":183713.309342,"dataLength":0,"encodedDataLength":623},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.22","timestamp":183713.233205,"encodedDataLength":764,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.11","timestamp":183713.309465,"dataLength":0,"encodedDataLength":23795},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.11","timestamp":183713.232099,"encodedDataLength":23962,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.8","timestamp":183713.309835,"dataLength":33146,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.8","timestamp":183713.26609,"encodedDataLength":43877,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.25","associatedCookies":[],"headers":{":authority":"fonts.googleapis.com",":method":"GET",":path":"/css2?family=Poppins:wght@400;500;700&display=swap",":scheme":"https","accept":"text/css,*/*;q=0.1","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"style","sec-fetch-mode":"no-cors","sec-fetch-site":"cross-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","x-client-data":"CKbqygE="},"connectTiming":{"requestTime":183713.22014},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.25","blockedCookies":[],"headers":{"access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"private, max-age=86400, stale-while-revalidate=604800","content-encoding":"gzip","content-type":"text/css; charset=utf-8","cross-origin-opener-policy":"same-origin-allow-popups","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Fri, 13 Jan 2023 23:27:47 GMT","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","link":"; rel=preconnect; crossorigin","server":"ESF","strict-transport-security":"max-age=31536000","timing-allow-origin":"*","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-google-apps-framework-action":"Css2","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","x-google-dos-service-trace":"main:apps-themes","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"apps-themes","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32\nFRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","x-google-service":"apps-themes","x-google-session-info":"WgdKBWVuLVVT","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.navigatedWithinDocument","params":{"frameId":"6B7B62084170FF8A201077D06215638B","url":"https://www.mikescerealshack.co/"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.25","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.366822,"type":"Stylesheet","response":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","status":200,"statusText":"","headers":{"x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32, FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","content-encoding":"gzip","x-google-gfe-service-trace":"apps-themes","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-frame-options":"SAMEORIGIN","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"private, max-age=86400, stale-while-revalidate=604800","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","link":"; rel=preconnect; crossorigin","x-google-dos-service-trace":"main:apps-themes","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","strict-transport-security":"max-age=31536000","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-session-info":"WgdKBWVuLVVT","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","expires":"Fri, 13 Jan 2023 23:27:47 GMT","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","x-google-service":"apps-themes","x-xss-protection":"0","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-shellfish-status":"CA0gBEBG","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","server":"ESF","cross-origin-opener-policy":"same-origin-allow-popups","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-apps-framework-action":"Css2","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","timing-allow-origin":"*"},"mimeType":"text/css","connectionReused":false,"connectionId":156,"remoteIPAddress":"[2607:f8b0:4005:80f::200a]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1987,"timing":{"requestTime":183713.22014,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.587,"dnsEnd":70.146,"connectStart":70.146,"connectEnd":96.056,"sslStart":73.552,"sslEnd":96.049,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":97.523,"sendEnd":97.65,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":123.454},"responseTime":1673652467202.03,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"upload.video.google.com","sanList":["upload.video.google.com","*.clients.google.com","*.docs.google.com","*.drive.google.com","*.gdata.youtube.com","*.googleapis.com","*.photos.google.com","*.youtube-3rd-party.com","upload.google.com","*.upload.google.com","upload.youtube.com","*.upload.youtube.com","uploads.stage.gdata.youtube.com","bg-call-donation.goog","bg-call-donation-alpha.goog","bg-call-donation-canary.goog","bg-call-donation-dev.goog"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1670836759168,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304402200A35AA11399C121A5F71D168954FDB7F3C67AD3C912A34392A6D32A9469EEC3302201DCCD7D79C5AE793E6031D617555EE92010B3589A096928E1778EF3F5C9DDC85"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1670836759163,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022026B6BE4ED12D5AF91A7827A2AAC98105DE583B591FFFFE934C06B5C4BCE106250221009495CFDC420A532CEE2D15E09E4C3A5C468707530215EBABFB0D0292223522A5"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.25","timestamp":183713.366885,"dataLength":3282,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.25","timestamp":183713.367137,"dataLength":0,"encodedDataLength":519},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.25","timestamp":183713.344427,"encodedDataLength":2506,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.53","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.37525,"wallTime":1673652467.233897,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.54","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.375542,"wallTime":1673652467.234169,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.55","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.37577,"wallTime":1673652467.234391,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.54","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.376044},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.55","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.376282},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.53","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183713.37584},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.53","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.53","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.377358,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183713.37584,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.042,"sendEnd":0.042,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.956},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.53","timestamp":183713.377346,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.54","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.54","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.386721,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a","age":"883151","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":173,"timing":{"requestTime":183713.376044,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.33,"sendEnd":0.684,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.008},"responseTime":1673652467244.559,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.55","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.55","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.388671,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e","age":"883151","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":199,"timing":{"requestTime":183713.376282,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.315,"sendEnd":0.665,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.376},"responseTime":1673652467246.169,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.55","timestamp":183713.388815,"dataLength":0,"encodedDataLength":2828},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.55","timestamp":183713.387974,"encodedDataLength":3027,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.54","timestamp":183713.388982,"dataLength":0,"encodedDataLength":3693},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.54","timestamp":183713.387484,"encodedDataLength":3866,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.58","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183713.500419,"wallTime":1673652467.359027,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.64","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183713.501661,"wallTime":1673652467.360267,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.58","associatedCookies":[],"headers":{":authority":"fonts.gstatic.com",":method":"GET",":path":"/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","origin":"https://www.mikescerealshack.co","referer":"https://fonts.googleapis.com/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"cross-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","x-client-data":"CKbqygE="},"connectTiming":{"requestTime":183713.503016},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.64","associatedCookies":[],"headers":{":authority":"fonts.gstatic.com",":method":"GET",":path":"/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","origin":"https://www.mikescerealshack.co","referer":"https://fonts.googleapis.com/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"cross-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","x-client-data":"CKbqygE="},"connectTiming":{"requestTime":183713.503254},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.58","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7884","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075620475600","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.58","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.524558,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075620475600","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7884","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":false,"connectionId":170,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":1493,"timing":{"requestTime":183713.503016,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.413,"sendEnd":0.631,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":20.255},"responseTime":1673652467381.674,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1670836758586,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30440220345C01062681291884E36BBFF51027545279C81A7A5F85D2109904082225D11A02207A374F0496010F62092D3309C786D697BE679E8CE4829ADC1A1AD939B7CE1106"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2023' Log","logId":"7A328C54D8B72DB620EA38E0521EE98416703213854D3BD22BC13A57A352EB52","timestamp":1670836758643,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100FE14CAABCE2CD0F1096E14C9BDD816210D2B92669341E4B826EBD2ADFF62C20E022100D3392684B65F853BCA07DA6C0F1A99F5491DF4BD1D328BBF95E3A225B86B9BF5"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.64","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7816","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075834023274","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.58","timestamp":183713.525586,"dataLength":7884,"encodedDataLength":7902},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.58","timestamp":183713.52474,"encodedDataLength":9395,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.64","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.526861,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075834023274","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7816","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":true,"connectionId":170,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":439,"timing":{"requestTime":183713.503254,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.365,"sendEnd":0.44,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":22.286},"responseTime":1673652467383.561,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1670836758586,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30440220345C01062681291884E36BBFF51027545279C81A7A5F85D2109904082225D11A02207A374F0496010F62092D3309C786D697BE679E8CE4829ADC1A1AD939B7CE1106"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2023' Log","logId":"7A328C54D8B72DB620EA38E0521EE98416703213854D3BD22BC13A57A352EB52","timestamp":1670836758643,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100FE14CAABCE2CD0F1096E14C9BDD816210D2B92669341E4B826EBD2ADFF62C20E022100D3392684B65F853BCA07DA6C0F1A99F5491DF4BD1D328BBF95E3A225B86B9BF5"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.64","timestamp":183713.526934,"dataLength":7816,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.64","timestamp":183713.527654,"dataLength":0,"encodedDataLength":7834},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.64","timestamp":183713.525864,"encodedDataLength":8273,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.65","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.548631,"wallTime":1673652467.407352,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.66","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.549176,"wallTime":1673652467.40787,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"3","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.65","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183713.549252},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.65","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.66","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183713.549708},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.66","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"883151","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.65","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.550387,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467337-06219f280a3a","age":"883151","etag":"W/\"0a6c18e8cc48a9f6a9f33d9a86257d57bb68ad493eb89f4b2a803fe2cf331257\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183713.549252,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.044,"sendEnd":0.044,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.654},"responseTime":1673652467244.559,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.66","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.551011,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467337-5e474295e15e","age":"883151","etag":"W/\"33b9efe7d0ab5d2f6461f4f72e61726d766679145f51d0befe115ecf8e5dc27c\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"[scene]-526fe33be891a56314a3.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183713.549708,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.046,"sendEnd":0.046,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.657},"responseTime":1673652467246.169,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.66","timestamp":183713.551075,"dataLength":6837,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.65","timestamp":183713.551268,"dataLength":8890,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.66","timestamp":183713.550888,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.65","timestamp":183713.550628,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.3","associatedCookies":[],"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Connection":"keep-alive","Host":"events.mikescerealshack.co","Referer":"https://www.mikescerealshack.co/","Sec-Fetch-Dest":"script","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Site":"same-site","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\""},"connectTiming":{"requestTime":183713.199825},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.3","blockedCookies":[],"headers":{"Connection":"keep-alive","Content-Encoding":"gzip","Content-Type":"application/javascript","Date":"Fri, 13 Jan 2023 23:27:47 GMT","Server":"nginx/1.18.0 (Ubuntu)","Transfer-Encoding":"chunked","access-control-allow-origin":"*","application":"10.0.0.8","cache-control":"public, max-age=86400, must-revalidate","cross-origin-resource-policy":"cross-origin","permissions-policy":"interest-cohort=()","x-content-type-options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx/1.18.0 (Ubuntu)\r\nDate: Fri, 13 Jan 2023 23:27:47 GMT\r\nContent-Type: application/javascript\r\nTransfer-Encoding: chunked\r\nConnection: keep-alive\r\naccess-control-allow-origin: *\r\napplication: 10.0.0.8\r\ncache-control: public, max-age=86400, must-revalidate\r\ncross-origin-resource-policy: cross-origin\r\npermissions-policy: interest-cohort=()\r\nx-content-type-options: nosniff\r\nContent-Encoding: gzip\r\n\r\n"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.3","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.867136,"type":"Script","response":{"url":"https://events.mikescerealshack.co/js/index.js","status":200,"statusText":"OK","headers":{"Date":"Fri, 13 Jan 2023 23:27:47 GMT","Content-Encoding":"gzip","x-content-type-options":"nosniff","Server":"nginx/1.18.0 (Ubuntu)","Transfer-Encoding":"chunked","Content-Type":"application/javascript","access-control-allow-origin":"*","cache-control":"public, max-age=86400, must-revalidate","permissions-policy":"interest-cohort=()","cross-origin-resource-policy":"cross-origin","Connection":"keep-alive","application":"10.0.0.8"},"mimeType":"application/javascript","connectionReused":false,"connectionId":171,"remoteIPAddress":"[64:ff9b::4e2f:830b]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":428,"timing":{"requestTime":183713.199825,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.206,"dnsEnd":167.898,"connectStart":167.898,"connectEnd":498.356,"sslStart":330.229,"sslEnd":498.349,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":499.746,"sendEnd":500.213,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":666.336},"responseTime":1673652467724.65,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"events.mikescerealshack.co","sanList":["events.mikescerealshack.co"],"issuer":"R3","validFrom":1668691921,"validTo":1676467920,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1668695521955,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100C6BD5711A0E20393F31746760C6EF102744D0BD12A57766251DE44E39380BDD8022037B01566FBDD87FCAC4EFA3F153D8099E8CC65C6C1504B57DA3EF34F10F58CF2"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1668695521949,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100A19641A20D4A120D4E8E96508598F5CA71DA9086AF5B6784F2E8D61BA9AD67560220502D2F4B1FD4BA6AB40ABCC77FCD7B9C3E67C09C35B357BDFE4D8C49A1D9A9AF"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.3","timestamp":183713.867194,"dataLength":1321,"encodedDataLength":0},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.3","timestamp":183713.86675,"encodedDataLength":1201,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.loadEventFired","params":{"timestamp":183713.869203},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"load","timestamp":183713.869203},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.67","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/favicon.png","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183713.907521,"wallTime":1673652467.766144,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.67","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/favicon.png",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183713.908489},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.67","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"favicon.png\"","content-length":"5164","content-type":"image/png","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"d4447ef0fcc1b11c946665fec8f987d082cad07567565d928864d6dc58559e4b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467897-3a58d68471fe"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.67","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183713.946649,"type":"Other","response":{"url":"https://www.mikescerealshack.co/favicon.png","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467897-3a58d68471fe","age":"3886004","etag":"W/\"d4447ef0fcc1b11c946665fec8f987d082cad07567565d928864d6dc58559e4b\"","x-vercel-cache":"HIT","content-type":"image/png","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"favicon.png\"","accept-ranges":"bytes","content-length":"5164"},"mimeType":"image/png","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":155,"timing":{"requestTime":183713.908489,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.732,"sendEnd":0.897,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":37.524},"responseTime":1673652467804.489,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.67","timestamp":183713.947869,"dataLength":5164,"encodedDataLength":5191},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.67","timestamp":183713.947756,"encodedDataLength":5346,"shouldReportCorbBlocking":false},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkAlmostIdle","timestamp":183713.551617},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"firstMeaningfulPaint","timestamp":183713.307332},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkIdle","timestamp":183713.949932},"sessionId":"D12EB3C170FE91DB748102AF3F788EFD","targetType":"page"} ] diff --git a/core/test/fixtures/fraggle-rock/artifacts/step1/defaultPass.devtoolslog.json b/core/test/fixtures/fraggle-rock/artifacts/step1/defaultPass.devtoolslog.json index b4386536c656..ee2de007bdc1 100644 --- a/core/test/fixtures/fraggle-rock/artifacts/step1/defaultPass.devtoolslog.json +++ b/core/test/fixtures/fraggle-rock/artifacts/step1/defaultPass.devtoolslog.json @@ -1,139 +1,139 @@ [ - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.75","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183718.560149},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.75","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183718.559114,"wallTime":1673652472.418087,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17360},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27342},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27623},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":24127},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":24883},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":20850},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":22350},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":17302},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"onSubmit","scriptId":"22","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","lineNumber":0,"columnNumber":966},{"functionName":"$e","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27760},{"functionName":"Ye","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27914},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46121},{"functionName":"xr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46215},{"functionName":"Cr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46630},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":52283},{"functionName":"Fe","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":128142},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48091},{"functionName":"Or","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48121},{"functionName":"Zt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":36192},{"functionName":"Jt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35418},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Me","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":127881},{"functionName":"Xt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35210}]}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.75","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"842926","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"search-915c07eb7d90925bcf29.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:52 GMT","etag":"W/\"871f7f88f82864c337f57adca043d0b9d99b118dda085743f84526cae4b603fe\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652472525-9e1c2c1478a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.75","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.137729,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:52 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652472525-9e1c2c1478a9","age":"842926","etag":"W/\"871f7f88f82864c337f57adca043d0b9d99b118dda085743f84526cae4b603fe\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"search-915c07eb7d90925bcf29.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3285,"timing":{"requestTime":183718.560149,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.901,"sendEnd":1.041,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":576.086},"responseTime":1673652472438.815,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.75","timestamp":183719.144777,"dataLength":3005,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.75","timestamp":183719.152694,"dataLength":3317,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.75","timestamp":183719.152767,"dataLength":309,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.75","timestamp":183719.152709,"encodedDataLength":3285,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Page.frameStartedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Page.navigatedWithinDocument","params":{"frameId":"6B7B62084170FF8A201077D06215638B","url":"https://www.mikescerealshack.co/search?q=call+of+duty"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Page.frameStoppedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.76","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/logo-text.svg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","if-none-match":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.189084},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.76","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/logo-text.svg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.187518,"wallTime":1673652473.046742,"initiator":{"type":"script","stack":{"callFrames":[],"parent":{"description":"Image","callFrames":[{"functionName":"w","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":15171},{"functionName":"lu","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":90618},{"functionName":"Ni","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110749},{"functionName":"Pi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110631},{"functionName":"xi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110498},{"functionName":"_i","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110361},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107327},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"Gi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":120847},{"functionName":"rs","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":121897},{"functionName":"t.render","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":129733},{"functionName":"we","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":11384},{"functionName":"","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":7420},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"fe","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":7174},{"functionName":"subscription","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":6798},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":28507},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":25036},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":21789},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":22350},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":17302},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"onSubmit","scriptId":"22","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","lineNumber":0,"columnNumber":966},{"functionName":"$e","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27760},{"functionName":"Ye","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27914},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46121},{"functionName":"xr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46215},{"functionName":"Cr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46630},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":52283},{"functionName":"Fe","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":128142},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48091},{"functionName":"Or","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48121},{"functionName":"Zt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":36192},{"functionName":"Jt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35418},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Me","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":127881},{"functionName":"Xt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35210}]}}}}}},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"32033.76","newPriority":"High","timestamp":183719.198883},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","loaderId":"","documentURL":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","request":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","method":"OPTIONS","headers":{"Accept":"*/*","Access-Control-Request-Headers":"x-algolia-api-key,x-algolia-application-id","Access-Control-Request-Method":"POST","Origin":"https://www.mikescerealshack.co","Sec-Fetch-Mode":"cors","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin"},"timestamp":183719.221303,"wallTime":1673652473.079896,"initiator":{"type":"preflight","url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","requestId":"32033.77"},"redirectHasExtraInfo":false,"type":"Other","hasUserGesture":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.77","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","method":"POST","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","x-algolia-api-key":"01e0257c3420fe7c9cc07278e9bb3358","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Content-Type":"text/plain;charset=UTF-8","x-algolia-application-id":"MNL4BJJSNZ","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-platform":"\"Android\""},"postData":"{\"query\":\"call of duty\"}","hasPostData":true,"postDataEntries":[{"bytes":"eyJxdWVyeSI6ImNhbGwgb2YgZHV0eSJ9"}],"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183719.219291,"wallTime":1673652473.07856,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"61","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","lineNumber":0,"columnNumber":2659},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24720},{"functionName":"a","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24923},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24982},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24863},{"functionName":"j","scriptId":"61","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","lineNumber":0,"columnNumber":3138},{"functionName":"b","scriptId":"61","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","lineNumber":0,"columnNumber":2134},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":30318},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24720},{"functionName":"a","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24923},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24982},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24863},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":30465},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"6","debuggerId":"3576047070098267201.7300265271152525584"}}},"redirectHasExtraInfo":false,"type":"Fetch","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.78","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183719.236203},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.78","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.78","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.235114,"wallTime":1673652473.093736,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107230},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"No","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":76263},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66529},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66293},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66202}]}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.79","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.236567,"wallTime":1673652473.095996,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107230},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"No","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":76263},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66529},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66293},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66202}]}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.79","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.238072},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.80","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.24577},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.80","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.245304,"wallTime":1673652473.103918,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"7","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.78","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.248491,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183719.236203,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.052,"sendEnd":0.052,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.353},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.78","timestamp":183719.236745,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","associatedCookies":[],"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Access-Control-Request-Headers":"x-algolia-api-key,x-algolia-application-id","Access-Control-Request-Method":"POST","Connection":"keep-alive","Host":"mnl4bjjsnz-dsn.algolia.net","Origin":"https://www.mikescerealshack.co","Referer":"https://www.mikescerealshack.co/","Sec-Fetch-Dest":"empty","Sec-Fetch-Mode":"cors","Sec-Fetch-Site":"cross-site","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.22125},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","blockedCookies":[],"headers":{"Access-Control-Allow-Credentials":"false","Access-Control-Allow-Headers":"x-algolia-application-id, connection, origin, x-algolia-api-key, content-type, content-length, x-algolia-signature, x-algolia-user-id, x-algolia-usertoken, x-algolia-tagfilters, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Authorization, Accept, Pragma","Access-Control-Allow-Methods":"GET, PUT, DELETE, POST, OPTIONS","Access-Control-Allow-Origin":"*","Access-Control-Max-Age":"86400","Cache-Control":"max-age=86400","Connection":"keep-alive","Content-Disposition":"inline; filename=a.txt","Content-Length":"0","Content-Type":"text/plain","Date":"Fri, 13 Jan 2023 23:27:53 GMT","Expires":"Sat, 14 Jan 2023 23:27:53 GMT","Server":"nginx","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Timing-Allow-Origin":"*","X-Content-Type-Options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Fri, 13 Jan 2023 23:27:53 GMT\r\nContent-Type: text/plain\r\nContent-Length: 0\r\nConnection: keep-alive\r\nAccess-Control-Allow-Origin: *\r\nTiming-Allow-Origin: *\r\nX-Content-Type-Options: nosniff\r\nStrict-Transport-Security: max-age=31536000; includeSubDomains; preload\r\nContent-Disposition: inline; filename=a.txt\r\nAccess-Control-Allow-Methods: GET, PUT, DELETE, POST, OPTIONS\r\nAccess-Control-Allow-Headers: x-algolia-application-id, connection, origin, x-algolia-api-key, content-type, content-length, x-algolia-signature, x-algolia-user-id, x-algolia-usertoken, x-algolia-tagfilters, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Authorization, Accept, Pragma\r\nAccess-Control-Allow-Credentials: false\r\nExpires: Sat, 14 Jan 2023 23:27:53 GMT\r\nCache-Control: max-age=86400\r\nAccess-Control-Max-Age: 86400\r\n\r\n"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","loaderId":"","timestamp":183719.48636,"type":"Preflight","response":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Credentials":"false","Access-Control-Allow-Headers":"x-algolia-application-id, connection, origin, x-algolia-api-key, content-type, content-length, x-algolia-signature, x-algolia-user-id, x-algolia-usertoken, x-algolia-tagfilters, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Authorization, Accept, Pragma","Access-Control-Allow-Methods":"GET, PUT, DELETE, POST, OPTIONS","Access-Control-Allow-Origin":"*","Access-Control-Max-Age":"86400","Cache-Control":"max-age=86400","Connection":"keep-alive","Content-Disposition":"inline; filename=a.txt","Content-Length":"0","Content-Type":"text/plain","Date":"Fri, 13 Jan 2023 23:27:53 GMT","Expires":"Sat, 14 Jan 2023 23:27:53 GMT","Server":"nginx","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Timing-Allow-Origin":"*","X-Content-Type-Options":"nosniff"},"mimeType":"text/plain","connectionReused":false,"connectionId":377,"remoteIPAddress":"[64:ff9b::3ffb:6987]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":887,"timing":{"requestTime":183719.22125,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.129,"dnsEnd":110.857,"connectStart":110.857,"connectEnd":214.671,"sslStart":160.417,"sslEnd":214.665,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":214.762,"sendEnd":214.827,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":263.967},"responseTime":1673652473343.697,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.2","keyExchange":"ECDHE_RSA","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"algolia.net","sanList":["algolia.net","*.algolia.io","*.algolia.net","*.algolianet.com"],"issuer":"Sectigo RSA Organization Validation Secure Server CA","validFrom":1671494400,"validTo":1705708799,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Xenon2024' log","logId":"76FF883F0AB6FB9551C261CCF587BA34B4A4CDBB29DC68420A9FE6674C5A3A74","timestamp":1671554779279,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450220222241BF959C7961448D0A907CD75131970CD1054AC330685FC7BD0D324BD5FA022100ADD62E509598251A9B66DA62A20B9747B584E1BBCACADDDF1823721AC21AF271"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2024' Log","logId":"DAB6BF6B3FB5B6229F9BC2BB5C6BE87091716CBB51848534BDA43D3048D7FBAB","timestamp":1671554779235,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502204AA123550A26D7609ADD05ABB260E93022D89655F2DBC1CC1245533E0FB2C508022100E90E173E6C101E3E6F9AAA06D7C19D4DF8CFB4B628849B15473EF47D70B7270B"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2024' log","logId":"EECDD064D5DB1ACEC55CB79DB4CD13A23287467CBCECDEC351485946711FB59B","timestamp":1671554779187,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100BCC6B54CA377CF9B8C8DFB6BDA37B7A47D343F4BB9B28564740FE4DA9E37E6C6022100C07D208C460BEF16E405F4D180340A8043ECDB16E27842AB55E8D2C00D773AF6"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","timestamp":183719.485919,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.77","associatedCookies":[],"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Connection":"keep-alive","Content-Length":"24","Content-Type":"text/plain;charset=UTF-8","Host":"mnl4bjjsnz-dsn.algolia.net","Origin":"https://www.mikescerealshack.co","Referer":"https://www.mikescerealshack.co/","Sec-Fetch-Dest":"empty","Sec-Fetch-Mode":"cors","Sec-Fetch-Site":"cross-site","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","x-algolia-api-key":"01e0257c3420fe7c9cc07278e9bb3358","x-algolia-application-id":"MNL4BJJSNZ"},"connectTiming":{"requestTime":183719.486034},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.76","blockedCookies":[],"headers":{"cache-control":"public, max-age=0, must-revalidate","date":"Fri, 13 Jan 2023 23:27:53 GMT","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1::glk7q-1673652473150-ab342a1724be"},"resourceIPAddressSpace":"Public","statusCode":304},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.76","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.769284,"type":"Image","response":{"url":"https://www.mikescerealshack.co/logo-text.svg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1::glk7q-1673652473150-ab342a1724be","age":"3886004","x-vercel-cache":"HIT","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","content-type":"image/svg+xml","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\""},"mimeType":"image/svg+xml","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":68,"timing":{"requestTime":183719.189084,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.582,"sendEnd":0.75,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":579.433},"responseTime":1673652473056.591,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.76","timestamp":183719.771351,"dataLength":53947,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.76","timestamp":183719.769205,"encodedDataLength":68,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.79","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954893","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.79","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.817796,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08","age":"954893","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":4889,"timing":{"requestTime":183719.238072,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.364,"sendEnd":0.803,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.033},"responseTime":1673652473108.243,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.80","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"843817","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","content-length":"720","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.80","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.825859,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1","age":"843817","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","accept-ranges":"bytes","content-length":"720"},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":892,"timing":{"requestTime":183719.24577,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.171,"sendEnd":0.362,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.367},"responseTime":1673652473115.621,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.80","timestamp":183719.824441,"encodedDataLength":892,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.81","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183719.83709},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.81","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"843817","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","content-length":"720","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.81","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.835375,"wallTime":1673652473.694779,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"7","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.81","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.838158,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1","age":"843817","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","accept-ranges":"bytes","content-length":"720"},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183719.83709,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.042,"sendEnd":0.042,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.339},"responseTime":1673652473115.621,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.81","timestamp":183719.838922,"dataLength":720,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.81","timestamp":183719.837626,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.79","timestamp":183719.876654,"encodedDataLength":4889,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.82","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.886511,"wallTime":1673652473.74516,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107230},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"No","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":76263},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66529},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66293},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66202}]}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.82","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183719.887619},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.82","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954893","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.82","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.901169,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08","age":"954893","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183719.887619,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.049,"sendEnd":0.049,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.055},"responseTime":1673652473108.243,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.82","timestamp":183719.901378,"dataLength":11002,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.82","timestamp":183719.898004,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.77","blockedCookies":[],"headers":{"Accept-Encoding":"deflate, gzip","Access-Control-Allow-Origin":"*","Cache-Control":"no-store","Connection":"keep-alive","Content-Disposition":"inline; filename=a.txt","Content-Encoding":"gzip","Content-Type":"application/json; charset=UTF-8","Date":"Fri, 13 Jan 2023 23:27:53 GMT","Server":"nginx","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Timing-Allow-Origin":"*","Transfer-Encoding":"chunked","X-Alg-PT":"6","X-Content-Type-Options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Fri, 13 Jan 2023 23:27:53 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: keep-alive\r\nX-Alg-PT: 6\r\nAccept-Encoding: deflate, gzip\r\nCache-Control: no-store\r\nAccess-Control-Allow-Origin: *\r\nTiming-Allow-Origin: *\r\nX-Content-Type-Options: nosniff\r\nStrict-Transport-Security: max-age=31536000; includeSubDomains; preload\r\nContent-Disposition: inline; filename=a.txt\r\nContent-Encoding: gzip\r\n\r\n"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.77","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183720.067631,"type":"Fetch","response":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","status":200,"statusText":"OK","headers":{"Date":"Fri, 13 Jan 2023 23:27:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","X-Content-Type-Options":"nosniff","Accept-Encoding":"deflate, gzip","X-Alg-PT":"6","Server":"nginx","Content-Encoding":"gzip","Transfer-Encoding":"chunked","Content-Type":"application/json; charset=UTF-8","Access-Control-Allow-Origin":"*","Cache-Control":"no-store","Content-Disposition":"inline; filename=a.txt","Connection":"keep-alive","Timing-Allow-Origin":"*"},"mimeType":"application/json","connectionReused":true,"connectionId":377,"remoteIPAddress":"[64:ff9b::3ffb:6987]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":471,"timing":{"requestTime":183719.486034,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.362,"sendEnd":2.073,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.038},"responseTime":1673652473498.544,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.2","keyExchange":"ECDHE_RSA","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"algolia.net","sanList":["algolia.net","*.algolia.io","*.algolia.net","*.algolianet.com"],"issuer":"Sectigo RSA Organization Validation Secure Server CA","validFrom":1671494400,"validTo":1705708799,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Xenon2024' log","logId":"76FF883F0AB6FB9551C261CCF587BA34B4A4CDBB29DC68420A9FE6674C5A3A74","timestamp":1671554779279,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450220222241BF959C7961448D0A907CD75131970CD1054AC330685FC7BD0D324BD5FA022100ADD62E509598251A9B66DA62A20B9747B584E1BBCACADDDF1823721AC21AF271"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2024' Log","logId":"DAB6BF6B3FB5B6229F9BC2BB5C6BE87091716CBB51848534BDA43D3048D7FBAB","timestamp":1671554779235,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502204AA123550A26D7609ADD05ABB260E93022D89655F2DBC1CC1245533E0FB2C508022100E90E173E6C101E3E6F9AAA06D7C19D4DF8CFB4B628849B15473EF47D70B7270B"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2024' log","logId":"EECDD064D5DB1ACEC55CB79DB4CD13A23287467CBCECDEC351485946711FB59B","timestamp":1671554779187,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100BCC6B54CA377CF9B8C8DFB6BDA37B7A47D343F4BB9B28564740FE4DA9E37E6C6022100C07D208C460BEF16E405F4D180340A8043ECDB16E27842AB55E8D2C00D773AF6"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.072487,"dataLength":5140,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.081224,"dataLength":12035,"encodedDataLength":2125},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.088717,"dataLength":6524,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.09629,"dataLength":7067,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.104843,"dataLength":7368,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.112558,"dataLength":7923,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.121138,"dataLength":11343,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.129474,"dataLength":6811,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.13643,"dataLength":8069,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.145196,"dataLength":9480,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.152822,"dataLength":7954,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.161193,"dataLength":7858,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.169102,"dataLength":7557,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.176363,"dataLength":8661,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.184903,"dataLength":9027,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.192564,"dataLength":8774,"encodedDataLength":1732},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.77","timestamp":183720.192227,"encodedDataLength":25328,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.83","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.363048,"wallTime":1673652474.222067,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.84","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.363758,"wallTime":1673652474.222975,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.85","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.3652,"wallTime":1673652474.22376,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.86","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.365788,"wallTime":1673652474.224355,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.87","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.366243,"wallTime":1673652474.224853,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.88","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.367625,"wallTime":1673652474.226184,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.89","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.368305,"wallTime":1673652474.226863,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.90","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.368442,"wallTime":1673652474.227005,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.91","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.369741,"wallTime":1673652474.228299,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.83","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.363939},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.84","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.364875},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.85","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.365508},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.86","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.366486},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.87","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.367506},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.88","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.368086},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.85","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cda966a-SJC","content-length":"1758","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"00c66d8957f51218ac0c9531b388f7a3\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 22:42:04 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ICb8flGZkzqHlf8ozqa5sk3WBydUCjROqCFZcju9xDhEP5fA58nL9%2FOnGPoa%2FhUDcO6UZXIOmr9ADsdaweMIk5IriXpWHxGtOoL40K2BcMigBDLIpdnMAW9PezpzGf%2FPTGiCNWZVinbQdpw5lPCPn%2B7MfIIMhw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972924506949","x-goog-hash":"crc32c=Od/nwA==\nmd5=AMZtiVf1EhisDJUxs4j3ow==","x-goog-meta-goog-reserved-file-mtime":"1609547913","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"1758","x-guploader-uploadid":"ADPycdvlc2uupJd77Og42wGTYa5bYKqxkkaaZTBJynHo8EA7MJY6M92MoLzRSqhHMgAkxqYCL4Muxmb1XBnmvBZUXicrBQ"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.84","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cd9966a-SJC","content-length":"2865","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"58b6fdeda39744e74ba77f6b9c9c2640\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 22:42:05 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8gdwZniLbXqiQi12fwAf5KtopJw6NSxgxTi87c1gCwR9b26OeNI389HsNXQwGspQar1n%2FCgoZPzSv917qNvaCHRR6SMP2Wc9lHlQyxXWF9uOUHtHJgY%2F7eeSM3%2BNaYLQmPaumwq2YJ6hpOZON%2F6dmbaq36Dgsg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972925663705","x-goog-hash":"crc32c=qrXVCw==\nmd5=WLb97aOXROdLp39rnJwmQA==","x-goog-meta-goog-reserved-file-mtime":"1609547911","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"2865","x-guploader-uploadid":"ADPycduI9_uMJzVn7QfhD4Bu50elmsT4B8mLJPsxpT5CmzW9ZJl0x422Ttzs02S_lcFNnKxCdrxbd9iDpJQ7rAjBPtwXsw"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.86","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cdb966a-SJC","content-length":"3267","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"a399f5b48b372f248af09a6dea0211be\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:11:53 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AknxvVvZGkFnS42DrgphKL6kf4s11gP%2F231bI4Y4eYyXSfAgYZhqumoQemykakN19g8RzHqULv5rdQfxpm4oFLUbWjJ6SJDhJJBP3RWrlRqaE6%2Bs4RgRPN0jZz7MB%2FgdaMP12Ux%2F6UMaKJSNRJHEr3Cl4NCAAw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609974713732296","x-goog-hash":"crc32c=QFZMTg==\nmd5=o5n1tIs3LySK8Jpt6gIRvg==","x-goog-meta-goog-reserved-file-mtime":"1609549117","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3267","x-guploader-uploadid":"ADPycdvbjcyhONHMkQUhBthAHQq7TpIuTnEkiRk7Itw5SLJEWZTosjO6dPD_0xBBXK88GzSLeyhJc3ZwN907anQQgdsDwA"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.87","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cdc966a-SJC","content-length":"2596","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"bdff5710945976e76823a299737094b0\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:21:45 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=E0DZd3toGEpA%2BP5G9yyuaPy6HxGlNuDyGj9y5cxI46g91SFGwDca%2BhH1tKjKDtj%2B%2FeIp8%2BqhXzHsBpFtog5a7lMi8TRD5B18SmVX2M%2Fs817zBnXUg0697R7FbrTTFPwTVoV7a29JAkoqBIQANCTYEQN0oIaiAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975305620947","x-goog-hash":"crc32c=BQZ6QQ==\nmd5=vf9XEJRZdudoI6KZc3CUsA==","x-goog-meta-goog-reserved-file-mtime":"1609549516","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"2596","x-guploader-uploadid":"ADPycdtxD2kOjALSb3cjjiQsrA51jqh8dhYUbmOqD7d0PoD4TLhAqaoaeTKV0QWfOPrItMl3IFXewW_jpuD0fQylJHq8Og"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.83","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cd8966a-SJC","content-length":"2379","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"c9b0a364c88bbcb64f84acd4361d0f8a\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:21:43 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5sAC8Xsw5LHDJdVH6Fds7BOAerrRcejnt%2BYFOZv6vomR1k%2BdjMseE2sMR%2BFgisU%2BOvtqsSO4nv2dj5s7rzZrG7AdfEeTMrbae9Qk78%2BePHGqT6o9nubspjt8RFg0rtI0Z1xpRUCv%2BkzLh8VNEEjoLtHHwU6YzQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975303514062","x-goog-hash":"crc32c=KX8rfg==\nmd5=ybCjZMiLvLZPhKzUNh0Pig==","x-goog-meta-goog-reserved-file-mtime":"1609549519","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"2379","x-guploader-uploadid":"ADPycdttJ_gzeYWfHqoGke6ZpKKKFzzkRZTMRQRG1lGwtIYK-IS9QHt0rw7WS442NO-f0hbLTpL-fdYQAbtWoYJVgDMq6pRaq6mn"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.88","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cde966a-SJC","content-length":"3110","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"dca610fc0a97201188c88df72a0e9c5a\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:26:02 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sEHErQQus8yC6ioU%2BZa6Z%2FRe0WqVbbhvrBAzOFkqrweqwIlkYhl02d59KsMb52s5lp%2F2ol94dvNWn0zmXybN0rERj11PZOo6Dxq2Usswh%2FXJO1e4dQQcRtzV3dbCP%2BM9h3m72ckyaan0aC7BclTOIVuLwG5Ecw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975562412911","x-goog-hash":"crc32c=+2NzRA==\nmd5=3KYQ/AqXIBGIyI33Kg6cWg==","x-goog-meta-goog-reserved-file-mtime":"1609549706","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3110","x-guploader-uploadid":"ADPycdv5ink0ggjlwvghPGI4SbSJ0JxjoCXb-6OMw5yJeRhS8VuL6OvVnRZ0DicjEty5iPtYjAU8rQBzd-c39K2dIIY48oC9n6r5"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.89","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183721.097992},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.90","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183721.09812},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.91","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183721.098157},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.85","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.09855,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609547913","x-guploader-uploadid":"ADPycdvlc2uupJd77Og42wGTYa5bYKqxkkaaZTBJynHo8EA7MJY6M92MoLzRSqhHMgAkxqYCL4Muxmb1XBnmvBZUXicrBQ","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"1758","last-modified":"Wed, 06 Jan 2021 22:42:04 GMT","server":"cloudflare","etag":"\"00c66d8957f51218ac0c9531b388f7a3\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972924506949","content-type":"image/jpeg","x-goog-hash":"crc32c=Od/nwA==, md5=AMZtiVf1EhisDJUxs4j3ow==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ICb8flGZkzqHlf8ozqa5sk3WBydUCjROqCFZcju9xDhEP5fA58nL9%2FOnGPoa%2FhUDcO6UZXIOmr9ADsdaweMIk5IriXpWHxGtOoL40K2BcMigBDLIpdnMAW9PezpzGf%2FPTGiCNWZVinbQdpw5lPCPn%2B7MfIIMhw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"1758","accept-ranges":"bytes","cf-ray":"7891e7bd4cda966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":2641,"timing":{"requestTime":183720.365508,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":119.034,"sendEnd":119.373,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":690.769},"responseTime":1673652474531.617,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.85","timestamp":183721.099106,"dataLength":1758,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.85","timestamp":183721.097744,"encodedDataLength":2641,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.84","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.107977,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609547911","x-guploader-uploadid":"ADPycduI9_uMJzVn7QfhD4Bu50elmsT4B8mLJPsxpT5CmzW9ZJl0x422Ttzs02S_lcFNnKxCdrxbd9iDpJQ7rAjBPtwXsw","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"2865","last-modified":"Wed, 06 Jan 2021 22:42:05 GMT","server":"cloudflare","etag":"\"58b6fdeda39744e74ba77f6b9c9c2640\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972925663705","content-type":"image/jpeg","x-goog-hash":"crc32c=qrXVCw==, md5=WLb97aOXROdLp39rnJwmQA==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8gdwZniLbXqiQi12fwAf5KtopJw6NSxgxTi87c1gCwR9b26OeNI389HsNXQwGspQar1n%2FCgoZPzSv917qNvaCHRR6SMP2Wc9lHlQyxXWF9uOUHtHJgY%2F7eeSM3%2BNaYLQmPaumwq2YJ6hpOZON%2F6dmbaq36Dgsg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"2865","accept-ranges":"bytes","cf-ray":"7891e7bd4cd9966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3366,"timing":{"requestTime":183720.364875,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":119.634,"sendEnd":120.001,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":699.33},"responseTime":1673652474533.628,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.84","timestamp":183721.108462,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.86","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.119061,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549117","x-guploader-uploadid":"ADPycdvbjcyhONHMkQUhBthAHQq7TpIuTnEkiRk7Itw5SLJEWZTosjO6dPD_0xBBXK88GzSLeyhJc3ZwN907anQQgdsDwA","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3267","last-modified":"Wed, 06 Jan 2021 23:11:53 GMT","server":"cloudflare","etag":"\"a399f5b48b372f248af09a6dea0211be\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609974713732296","content-type":"image/jpeg","x-goog-hash":"crc32c=QFZMTg==, md5=o5n1tIs3LySK8Jpt6gIRvg==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AknxvVvZGkFnS42DrgphKL6kf4s11gP%2F231bI4Y4eYyXSfAgYZhqumoQemykakN19g8RzHqULv5rdQfxpm4oFLUbWjJ6SJDhJJBP3RWrlRqaE6%2Bs4RgRPN0jZz7MB%2FgdaMP12Ux%2F6UMaKJSNRJHEr3Cl4NCAAw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3267","accept-ranges":"bytes","cf-ray":"7891e7bd4cdb966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3771,"timing":{"requestTime":183720.366486,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":118.094,"sendEnd":118.399,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":705.747},"responseTime":1673652474547.771,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.86","timestamp":183721.119112,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.87","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.129386,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549516","x-guploader-uploadid":"ADPycdtxD2kOjALSb3cjjiQsrA51jqh8dhYUbmOqD7d0PoD4TLhAqaoaeTKV0QWfOPrItMl3IFXewW_jpuD0fQylJHq8Og","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"2596","last-modified":"Wed, 06 Jan 2021 23:21:45 GMT","server":"cloudflare","etag":"\"bdff5710945976e76823a299737094b0\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975305620947","content-type":"image/jpeg","x-goog-hash":"crc32c=BQZ6QQ==, md5=vf9XEJRZdudoI6KZc3CUsA==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=E0DZd3toGEpA%2BP5G9yyuaPy6HxGlNuDyGj9y5cxI46g91SFGwDca%2BhH1tKjKDtj%2B%2FeIp8%2BqhXzHsBpFtog5a7lMi8TRD5B18SmVX2M%2Fs817zBnXUg0697R7FbrTTFPwTVoV7a29JAkoqBIQANCTYEQN0oIaiAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"2596","accept-ranges":"bytes","cf-ray":"7891e7bd4cdc966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3142,"timing":{"requestTime":183720.367506,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":117.104,"sendEnd":117.383,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":712.776},"responseTime":1673652474561.91,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.87","timestamp":183721.129682,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.83","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.131105,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549519","x-guploader-uploadid":"ADPycdttJ_gzeYWfHqoGke6ZpKKKFzzkRZTMRQRG1lGwtIYK-IS9QHt0rw7WS442NO-f0hbLTpL-fdYQAbtWoYJVgDMq6pRaq6mn","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"2379","last-modified":"Wed, 06 Jan 2021 23:21:43 GMT","server":"cloudflare","etag":"\"c9b0a364c88bbcb64f84acd4361d0f8a\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975303514062","content-type":"image/jpeg","x-goog-hash":"crc32c=KX8rfg==, md5=ybCjZMiLvLZPhKzUNh0Pig==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5sAC8Xsw5LHDJdVH6Fds7BOAerrRcejnt%2BYFOZv6vomR1k%2BdjMseE2sMR%2BFgisU%2BOvtqsSO4nv2dj5s7rzZrG7AdfEeTMrbae9Qk78%2BePHGqT6o9nubspjt8RFg0rtI0Z1xpRUCv%2BkzLh8VNEEjoLtHHwU6YzQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"2379","accept-ranges":"bytes","cf-ray":"7891e7bd4cd8966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":false,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3135,"timing":{"requestTime":183720.363939,"proxyStart":-1,"proxyEnd":-1,"dnsStart":3.666,"dnsEnd":103.068,"connectStart":103.068,"connectEnd":118.404,"sslStart":108.523,"sslEnd":118.387,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":120.52,"sendEnd":120.932,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":724.176},"responseTime":1673652474569.224,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.83","timestamp":183721.131145,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.88","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.145921,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549706","x-guploader-uploadid":"ADPycdv5ink0ggjlwvghPGI4SbSJ0JxjoCXb-6OMw5yJeRhS8VuL6OvVnRZ0DicjEty5iPtYjAU8rQBzd-c39K2dIIY48oC9n6r5","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3110","last-modified":"Wed, 06 Jan 2021 23:26:02 GMT","server":"cloudflare","etag":"\"dca610fc0a97201188c88df72a0e9c5a\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975562412911","content-type":"image/jpeg","x-goog-hash":"crc32c=+2NzRA==, md5=3KYQ/AqXIBGIyI33Kg6cWg==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sEHErQQus8yC6ioU%2BZa6Z%2FRe0WqVbbhvrBAzOFkqrweqwIlkYhl02d59KsMb52s5lp%2F2ol94dvNWn0zmXybN0rERj11PZOo6Dxq2Usswh%2FXJO1e4dQQcRtzV3dbCP%2BM9h3m72ckyaan0aC7BclTOIVuLwG5Ecw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3110","accept-ranges":"bytes","cf-ray":"7891e7bd4cde966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3617,"timing":{"requestTime":183720.368086,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":116.554,"sendEnd":116.807,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":728.978},"responseTime":1673652474575.437,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.88","timestamp":183721.146313,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.84","timestamp":183721.152159,"dataLength":1365,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.84","timestamp":183721.152188,"encodedDataLength":3366,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.86","timestamp":183721.156926,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.86","timestamp":183721.157124,"dataLength":267,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.86","timestamp":183721.157111,"encodedDataLength":3771,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.87","timestamp":183721.168557,"dataLength":1096,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.87","timestamp":183721.168224,"encodedDataLength":3142,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.83","timestamp":183721.169421,"dataLength":879,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.83","timestamp":183721.168688,"encodedDataLength":3135,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.88","timestamp":183721.184873,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.88","timestamp":183721.185816,"dataLength":110,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.88","timestamp":183721.185371,"encodedDataLength":3617,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.90","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7c119a3966a-SJC","content-length":"3032","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:55 GMT","etag":"\"d7857b6350dea42c89c55b0b156f8066\"","expires":"Sat, 14 Jan 2023 00:27:55 GMT","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MRox1XJCPrZOejQ8%2BbnK4Y6m8e4pcrB2op2WAbjaGh5htnYqGcJfJgCer8HiVghFCIgaEEFMfuqdBq29ZDyDs%2BEfqhYWPQEOts8s71x3zjgqaWaToGoBYp3bxPVogrVM4I%2FfOh3D0wc5ntwFNy9D8%2FvU8GTydA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267981871","x-goog-hash":"crc32c=qlNrvg==\nmd5=14V7Y1DepCyJxVsLFW+AZg==","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3032","x-guploader-uploadid":"ADPycdsUBLE3PHBKvXw1nTsjZB14YovfDI5OYlamtFW21cXiLCtZTQJi5Ia2k_tAwQFQuJWjuHVQZMjlimaWezjj35Q9Bb7lrATw"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.91","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7c119a4966a-SJC","content-length":"3324","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:55 GMT","etag":"\"9c370b8fe25b4783b2cf6cd4cbe2ec9b\"","expires":"Sat, 14 Jan 2023 00:27:55 GMT","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eHNbKsyCYwTirfS5OBWncF6H48u5ubyLZHmz2oJYMoQ35%2FyjO9lM4Gnd%2BmLOO0TPum4lR0ZpFnjV7EheZaqHzXRGt1yDdI88UjqUfbQnaHW4ACxSLquhN6fbSI9Svmk24T3Nab2j50j6BR0FFXWpxpqCFRKJ8Q%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267610822","x-goog-hash":"crc32c=N1jS0w==\nmd5=nDcLj+JbR4Oyz2zUy+Lsmw==","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3324","x-guploader-uploadid":"ADPycduoUtN2s2vgwesZPBHw8uXn7okhzj6HX_uf8jQauZZ8O05TTDlT2OvAfpdGZ70w6yYS8MeqVflXT4LWeKP4Hx_vu_KzsQPn"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.89","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7c119a2966a-SJC","content-length":"3806","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:55 GMT","etag":"\"7ccae94cde583785b8c1e08ace6c3e93\"","expires":"Sat, 14 Jan 2023 00:27:55 GMT","last-modified":"Wed, 06 Jan 2021 23:21:48 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cYFQTKM4zy72y4v6n6JR%2FWFbadUV0EZKSMf78saU3UBmWQtEFG7gxvBQGwaZl5ENWXhD24uHnC9Njw75i0lC407B4YGoDdPh7wd9zGKf6deVWmLBhBVt%2Bd97Q2G0oF6omCxgiiPrF2Ge84TTjUFg9HaDhRFdtw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975308105008","x-goog-hash":"crc32c=vBwt8A==\nmd5=fMrpTN5YN4W4weCKzmw+kw==","x-goog-meta-goog-reserved-file-mtime":"1609549513","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3806","x-guploader-uploadid":"ADPycdtM9aN6z8NDW6629Mf4VjCFYep_lVXoF6x8CRz8gX_gRmKldlWaiB6jw7ogmINyGjGiB3d7Yl7mHuCZEY_pOtPqOpH3iFUJ"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.90","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.698239,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:55 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-guploader-uploadid":"ADPycdsUBLE3PHBKvXw1nTsjZB14YovfDI5OYlamtFW21cXiLCtZTQJi5Ia2k_tAwQFQuJWjuHVQZMjlimaWezjj35Q9Bb7lrATw","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3032","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","server":"cloudflare","etag":"\"d7857b6350dea42c89c55b0b156f8066\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267981871","content-type":"image/jpeg","x-goog-hash":"crc32c=qlNrvg==, md5=14V7Y1DepCyJxVsLFW+AZg==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MRox1XJCPrZOejQ8%2BbnK4Y6m8e4pcrB2op2WAbjaGh5htnYqGcJfJgCer8HiVghFCIgaEEFMfuqdBq29ZDyDs%2BEfqhYWPQEOts8s71x3zjgqaWaToGoBYp3bxPVogrVM4I%2FfOh3D0wc5ntwFNy9D8%2FvU8GTydA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3032","accept-ranges":"bytes","cf-ray":"7891e7c119a3966a-SJC","expires":"Sat, 14 Jan 2023 00:27:55 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3585,"timing":{"requestTime":183721.09812,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.856,"sendEnd":1.099,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":574.128},"responseTime":1673652475129.526,"protocol":"h2","alternateProtocolUsage":"mainJobWonRace","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.90","timestamp":183721.698557,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.91","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.705061,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:55 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-guploader-uploadid":"ADPycduoUtN2s2vgwesZPBHw8uXn7okhzj6HX_uf8jQauZZ8O05TTDlT2OvAfpdGZ70w6yYS8MeqVflXT4LWeKP4Hx_vu_KzsQPn","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3324","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","server":"cloudflare","etag":"\"9c370b8fe25b4783b2cf6cd4cbe2ec9b\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267610822","content-type":"image/jpeg","x-goog-hash":"crc32c=N1jS0w==, md5=nDcLj+JbR4Oyz2zUy+Lsmw==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eHNbKsyCYwTirfS5OBWncF6H48u5ubyLZHmz2oJYMoQ35%2FyjO9lM4Gnd%2BmLOO0TPum4lR0ZpFnjV7EheZaqHzXRGt1yDdI88UjqUfbQnaHW4ACxSLquhN6fbSI9Svmk24T3Nab2j50j6BR0FFXWpxpqCFRKJ8Q%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3324","accept-ranges":"bytes","cf-ray":"7891e7c119a4966a-SJC","expires":"Sat, 14 Jan 2023 00:27:55 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3815,"timing":{"requestTime":183721.098157,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.9,"sendEnd":1.067,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":581.975},"responseTime":1673652475134.547,"protocol":"h2","alternateProtocolUsage":"mainJobWonRace","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.91","timestamp":183721.705102,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.89","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.71299,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:55 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549513","x-guploader-uploadid":"ADPycdtM9aN6z8NDW6629Mf4VjCFYep_lVXoF6x8CRz8gX_gRmKldlWaiB6jw7ogmINyGjGiB3d7Yl7mHuCZEY_pOtPqOpH3iFUJ","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3806","last-modified":"Wed, 06 Jan 2021 23:21:48 GMT","server":"cloudflare","etag":"\"7ccae94cde583785b8c1e08ace6c3e93\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975308105008","content-type":"image/jpeg","x-goog-hash":"crc32c=vBwt8A==, md5=fMrpTN5YN4W4weCKzmw+kw==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cYFQTKM4zy72y4v6n6JR%2FWFbadUV0EZKSMf78saU3UBmWQtEFG7gxvBQGwaZl5ENWXhD24uHnC9Njw75i0lC407B4YGoDdPh7wd9zGKf6deVWmLBhBVt%2Bd97Q2G0oF6omCxgiiPrF2Ge84TTjUFg9HaDhRFdtw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3806","accept-ranges":"bytes","cf-ray":"7891e7c119a2966a-SJC","expires":"Sat, 14 Jan 2023 00:27:55 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":4533,"timing":{"requestTime":183721.097992,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.925,"sendEnd":1.209,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":590.274},"responseTime":1673652475294.669,"protocol":"h2","alternateProtocolUsage":"mainJobWonRace","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.89","timestamp":183721.713038,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.90","timestamp":183721.720435,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.90","timestamp":183721.721171,"dataLength":32,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.90","timestamp":183721.72096,"encodedDataLength":3585,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.91","timestamp":183721.728554,"dataLength":1824,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.91","timestamp":183721.728511,"encodedDataLength":3815,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.89","timestamp":183721.736254,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.89","timestamp":183721.744476,"dataLength":806,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.89","timestamp":183721.744486,"encodedDataLength":4533,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B"} + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.75","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183718.560149},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.75","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183718.559114,"wallTime":1673652472.418087,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17360},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27342},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27623},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":24127},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":24883},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":20850},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":22350},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":17302},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"onSubmit","scriptId":"22","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","lineNumber":0,"columnNumber":966},{"functionName":"$e","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27760},{"functionName":"Ye","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27914},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46121},{"functionName":"xr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46215},{"functionName":"Cr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46630},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":52283},{"functionName":"Fe","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":128142},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48091},{"functionName":"Or","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48121},{"functionName":"Zt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":36192},{"functionName":"Jt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35418},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Me","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":127881},{"functionName":"Xt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35210}]}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.75","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"842926","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"search-915c07eb7d90925bcf29.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:52 GMT","etag":"W/\"871f7f88f82864c337f57adca043d0b9d99b118dda085743f84526cae4b603fe\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652472525-9e1c2c1478a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.75","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.137729,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:52 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652472525-9e1c2c1478a9","age":"842926","etag":"W/\"871f7f88f82864c337f57adca043d0b9d99b118dda085743f84526cae4b603fe\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"search-915c07eb7d90925bcf29.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3285,"timing":{"requestTime":183718.560149,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.901,"sendEnd":1.041,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":576.086},"responseTime":1673652472438.815,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.75","timestamp":183719.144777,"dataLength":3005,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.75","timestamp":183719.152694,"dataLength":3317,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.75","timestamp":183719.152767,"dataLength":309,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.75","timestamp":183719.152709,"encodedDataLength":3285,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Page.frameStartedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Page.navigatedWithinDocument","params":{"frameId":"6B7B62084170FF8A201077D06215638B","url":"https://www.mikescerealshack.co/search?q=call+of+duty"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.76","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/logo-text.svg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","if-none-match":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.189084},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.76","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/logo-text.svg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.187518,"wallTime":1673652473.046742,"initiator":{"type":"script","stack":{"callFrames":[],"parent":{"description":"Image","callFrames":[{"functionName":"w","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":15171},{"functionName":"lu","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":90618},{"functionName":"Ni","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110749},{"functionName":"Pi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110631},{"functionName":"xi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110498},{"functionName":"_i","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":110361},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107327},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"Gi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":120847},{"functionName":"rs","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":121897},{"functionName":"t.render","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":129733},{"functionName":"we","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":11384},{"functionName":"","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":7420},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"fe","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":7174},{"functionName":"subscription","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":6798},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":28507},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":25036},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":21789},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":22350},{"functionName":"value","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":17302},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"onSubmit","scriptId":"22","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","lineNumber":0,"columnNumber":966},{"functionName":"$e","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27760},{"functionName":"Ye","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":27914},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46121},{"functionName":"xr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46215},{"functionName":"Cr","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":46630},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":52283},{"functionName":"Fe","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":128142},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48091},{"functionName":"Or","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":48121},{"functionName":"Zt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":36192},{"functionName":"Jt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35418},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Me","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":127881},{"functionName":"Xt","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":35210}]}}}}}},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"32033.76","newPriority":"High","timestamp":183719.198883},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","loaderId":"","documentURL":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","request":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","method":"OPTIONS","headers":{"Accept":"*/*","Access-Control-Request-Headers":"x-algolia-api-key,x-algolia-application-id","Access-Control-Request-Method":"POST","Origin":"https://www.mikescerealshack.co","Sec-Fetch-Mode":"cors","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin"},"timestamp":183719.221303,"wallTime":1673652473.079896,"initiator":{"type":"preflight","url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","requestId":"32033.77"},"redirectHasExtraInfo":false,"type":"Other","hasUserGesture":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.77","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","method":"POST","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","x-algolia-api-key":"01e0257c3420fe7c9cc07278e9bb3358","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Content-Type":"text/plain;charset=UTF-8","x-algolia-application-id":"MNL4BJJSNZ","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-platform":"\"Android\""},"postData":"{\"query\":\"call of duty\"}","hasPostData":true,"postDataEntries":[{"bytes":"eyJxdWVyeSI6ImNhbGwgb2YgZHV0eSJ9"}],"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183719.219291,"wallTime":1673652473.07856,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"61","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","lineNumber":0,"columnNumber":2659},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24720},{"functionName":"a","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24923},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24982},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24863},{"functionName":"j","scriptId":"61","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","lineNumber":0,"columnNumber":3138},{"functionName":"b","scriptId":"61","url":"https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js","lineNumber":0,"columnNumber":2134},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":30318},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24720},{"functionName":"a","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24923},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24982},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":24863},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":30465},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"6","debuggerId":"3576047070098267201.7300265271152525584"}}},"redirectHasExtraInfo":false,"type":"Fetch","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.78","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183719.236203},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.78","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.78","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.235114,"wallTime":1673652473.093736,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107230},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"No","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":76263},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66529},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66293},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66202}]}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.79","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.236567,"wallTime":1673652473.095996,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107230},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"No","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":76263},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66529},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66293},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66202}]}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.79","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.238072},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.80","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","purpose":"prefetch","referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"empty","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.24577},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.80","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.245304,"wallTime":1673652473.103918,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"7","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.78","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.248491,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183719.236203,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.052,"sendEnd":0.052,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.353},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.78","timestamp":183719.236745,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","associatedCookies":[],"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Access-Control-Request-Headers":"x-algolia-api-key,x-algolia-application-id","Access-Control-Request-Method":"POST","Connection":"keep-alive","Host":"mnl4bjjsnz-dsn.algolia.net","Origin":"https://www.mikescerealshack.co","Referer":"https://www.mikescerealshack.co/","Sec-Fetch-Dest":"empty","Sec-Fetch-Mode":"cors","Sec-Fetch-Site":"cross-site","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183719.22125},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","blockedCookies":[],"headers":{"Access-Control-Allow-Credentials":"false","Access-Control-Allow-Headers":"x-algolia-application-id, connection, origin, x-algolia-api-key, content-type, content-length, x-algolia-signature, x-algolia-user-id, x-algolia-usertoken, x-algolia-tagfilters, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Authorization, Accept, Pragma","Access-Control-Allow-Methods":"GET, PUT, DELETE, POST, OPTIONS","Access-Control-Allow-Origin":"*","Access-Control-Max-Age":"86400","Cache-Control":"max-age=86400","Connection":"keep-alive","Content-Disposition":"inline; filename=a.txt","Content-Length":"0","Content-Type":"text/plain","Date":"Fri, 13 Jan 2023 23:27:53 GMT","Expires":"Sat, 14 Jan 2023 23:27:53 GMT","Server":"nginx","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Timing-Allow-Origin":"*","X-Content-Type-Options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Fri, 13 Jan 2023 23:27:53 GMT\r\nContent-Type: text/plain\r\nContent-Length: 0\r\nConnection: keep-alive\r\nAccess-Control-Allow-Origin: *\r\nTiming-Allow-Origin: *\r\nX-Content-Type-Options: nosniff\r\nStrict-Transport-Security: max-age=31536000; includeSubDomains; preload\r\nContent-Disposition: inline; filename=a.txt\r\nAccess-Control-Allow-Methods: GET, PUT, DELETE, POST, OPTIONS\r\nAccess-Control-Allow-Headers: x-algolia-application-id, connection, origin, x-algolia-api-key, content-type, content-length, x-algolia-signature, x-algolia-user-id, x-algolia-usertoken, x-algolia-tagfilters, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Authorization, Accept, Pragma\r\nAccess-Control-Allow-Credentials: false\r\nExpires: Sat, 14 Jan 2023 23:27:53 GMT\r\nCache-Control: max-age=86400\r\nAccess-Control-Max-Age: 86400\r\n\r\n"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","loaderId":"","timestamp":183719.48636,"type":"Preflight","response":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Credentials":"false","Access-Control-Allow-Headers":"x-algolia-application-id, connection, origin, x-algolia-api-key, content-type, content-length, x-algolia-signature, x-algolia-user-id, x-algolia-usertoken, x-algolia-tagfilters, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, X-Requested-With, If-Modified-Since, Cache-Control, Authorization, Accept, Pragma","Access-Control-Allow-Methods":"GET, PUT, DELETE, POST, OPTIONS","Access-Control-Allow-Origin":"*","Access-Control-Max-Age":"86400","Cache-Control":"max-age=86400","Connection":"keep-alive","Content-Disposition":"inline; filename=a.txt","Content-Length":"0","Content-Type":"text/plain","Date":"Fri, 13 Jan 2023 23:27:53 GMT","Expires":"Sat, 14 Jan 2023 23:27:53 GMT","Server":"nginx","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Timing-Allow-Origin":"*","X-Content-Type-Options":"nosniff"},"mimeType":"text/plain","connectionReused":false,"connectionId":377,"remoteIPAddress":"[64:ff9b::3ffb:6987]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":887,"timing":{"requestTime":183719.22125,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.129,"dnsEnd":110.857,"connectStart":110.857,"connectEnd":214.671,"sslStart":160.417,"sslEnd":214.665,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":214.762,"sendEnd":214.827,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":263.967},"responseTime":1673652473343.697,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.2","keyExchange":"ECDHE_RSA","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"algolia.net","sanList":["algolia.net","*.algolia.io","*.algolia.net","*.algolianet.com"],"issuer":"Sectigo RSA Organization Validation Secure Server CA","validFrom":1671494400,"validTo":1705708799,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Xenon2024' log","logId":"76FF883F0AB6FB9551C261CCF587BA34B4A4CDBB29DC68420A9FE6674C5A3A74","timestamp":1671554779279,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450220222241BF959C7961448D0A907CD75131970CD1054AC330685FC7BD0D324BD5FA022100ADD62E509598251A9B66DA62A20B9747B584E1BBCACADDDF1823721AC21AF271"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2024' Log","logId":"DAB6BF6B3FB5B6229F9BC2BB5C6BE87091716CBB51848534BDA43D3048D7FBAB","timestamp":1671554779235,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502204AA123550A26D7609ADD05ABB260E93022D89655F2DBC1CC1245533E0FB2C508022100E90E173E6C101E3E6F9AAA06D7C19D4DF8CFB4B628849B15473EF47D70B7270B"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2024' log","logId":"EECDD064D5DB1ACEC55CB79DB4CD13A23287467CBCECDEC351485946711FB59B","timestamp":1671554779187,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100BCC6B54CA377CF9B8C8DFB6BDA37B7A47D343F4BB9B28564740FE4DA9E37E6C6022100C07D208C460BEF16E405F4D180340A8043ECDB16E27842AB55E8D2C00D773AF6"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"A7EEEEE1A120C8112B311FFD02FF2909","timestamp":183719.485919,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.77","associatedCookies":[],"headers":{"Accept":"*/*","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Connection":"keep-alive","Content-Length":"24","Content-Type":"text/plain;charset=UTF-8","Host":"mnl4bjjsnz-dsn.algolia.net","Origin":"https://www.mikescerealshack.co","Referer":"https://www.mikescerealshack.co/","Sec-Fetch-Dest":"empty","Sec-Fetch-Mode":"cors","Sec-Fetch-Site":"cross-site","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","x-algolia-api-key":"01e0257c3420fe7c9cc07278e9bb3358","x-algolia-application-id":"MNL4BJJSNZ"},"connectTiming":{"requestTime":183719.486034},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.76","blockedCookies":[],"headers":{"cache-control":"public, max-age=0, must-revalidate","date":"Fri, 13 Jan 2023 23:27:53 GMT","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1::glk7q-1673652473150-ab342a1724be"},"resourceIPAddressSpace":"Public","statusCode":304},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.76","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.769284,"type":"Image","response":{"url":"https://www.mikescerealshack.co/logo-text.svg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1::glk7q-1673652473150-ab342a1724be","age":"3886004","x-vercel-cache":"HIT","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","content-type":"image/svg+xml","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\""},"mimeType":"image/svg+xml","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":68,"timing":{"requestTime":183719.189084,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.582,"sendEnd":0.75,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":579.433},"responseTime":1673652473056.591,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.76","timestamp":183719.771351,"dataLength":53947,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.76","timestamp":183719.769205,"encodedDataLength":68,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.79","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954893","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.79","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.817796,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08","age":"954893","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":4889,"timing":{"requestTime":183719.238072,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.364,"sendEnd":0.803,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.033},"responseTime":1673652473108.243,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.80","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"843817","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","content-length":"720","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.80","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.825859,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1","age":"843817","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","accept-ranges":"bytes","content-length":"720"},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":892,"timing":{"requestTime":183719.24577,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.171,"sendEnd":0.362,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.367},"responseTime":1673652473115.621,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.80","timestamp":183719.824441,"encodedDataLength":892,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.81","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183719.83709},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.81","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"843817","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","content-length":"720","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.81","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.835375,"wallTime":1673652473.694779,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"7","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.81","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.838158,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473207-8582335399f1","age":"843817","etag":"W/\"7c3801505b3f92a88dbd48432541040063b1c408a73cb8e5468792e0f3e2e2f0\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"privacy-864d3895f3c3722acef2.js\"","accept-ranges":"bytes","content-length":"720"},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183719.83709,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.042,"sendEnd":0.042,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.339},"responseTime":1673652473115.621,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.81","timestamp":183719.838922,"dataLength":720,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.81","timestamp":183719.837626,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.79","timestamp":183719.876654,"encodedDataLength":4889,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.82","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/search?q=call+of+duty","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183719.886511,"wallTime":1673652473.74516,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"10","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"16","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"18","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"vi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":107230},{"functionName":"","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56706},{"functionName":"t.unstable_runWithPriority","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Hl","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56651},{"functionName":"Ql","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56586},{"functionName":"fi","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":104696},{"functionName":"No","scriptId":"17","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":76263},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66529},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66293},{"functionName":"","scriptId":"21","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":66202}]}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.82","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183719.887619},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.82","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954893","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:53 GMT","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.82","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183719.901169,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:53 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652473199-a82ae796bf08","age":"954893","etag":"W/\"73951576045d14583face6da630071c3d2e33cc738c0b51702af46da40d28477\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"terms-0236318e86139dd7d7f2.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183719.887619,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.049,"sendEnd":0.049,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.055},"responseTime":1673652473108.243,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.82","timestamp":183719.901378,"dataLength":11002,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.82","timestamp":183719.898004,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.77","blockedCookies":[],"headers":{"Accept-Encoding":"deflate, gzip","Access-Control-Allow-Origin":"*","Cache-Control":"no-store","Connection":"keep-alive","Content-Disposition":"inline; filename=a.txt","Content-Encoding":"gzip","Content-Type":"application/json; charset=UTF-8","Date":"Fri, 13 Jan 2023 23:27:53 GMT","Server":"nginx","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","Timing-Allow-Origin":"*","Transfer-Encoding":"chunked","X-Alg-PT":"6","X-Content-Type-Options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Fri, 13 Jan 2023 23:27:53 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nTransfer-Encoding: chunked\r\nConnection: keep-alive\r\nX-Alg-PT: 6\r\nAccept-Encoding: deflate, gzip\r\nCache-Control: no-store\r\nAccess-Control-Allow-Origin: *\r\nTiming-Allow-Origin: *\r\nX-Content-Type-Options: nosniff\r\nStrict-Transport-Security: max-age=31536000; includeSubDomains; preload\r\nContent-Disposition: inline; filename=a.txt\r\nContent-Encoding: gzip\r\n\r\n"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.77","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183720.067631,"type":"Fetch","response":{"url":"https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query","status":200,"statusText":"OK","headers":{"Date":"Fri, 13 Jan 2023 23:27:53 GMT","Strict-Transport-Security":"max-age=31536000; includeSubDomains; preload","X-Content-Type-Options":"nosniff","Accept-Encoding":"deflate, gzip","X-Alg-PT":"6","Server":"nginx","Content-Encoding":"gzip","Transfer-Encoding":"chunked","Content-Type":"application/json; charset=UTF-8","Access-Control-Allow-Origin":"*","Cache-Control":"no-store","Content-Disposition":"inline; filename=a.txt","Connection":"keep-alive","Timing-Allow-Origin":"*"},"mimeType":"application/json","connectionReused":true,"connectionId":377,"remoteIPAddress":"[64:ff9b::3ffb:6987]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":471,"timing":{"requestTime":183719.486034,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.362,"sendEnd":2.073,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.038},"responseTime":1673652473498.544,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.2","keyExchange":"ECDHE_RSA","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"algolia.net","sanList":["algolia.net","*.algolia.io","*.algolia.net","*.algolianet.com"],"issuer":"Sectigo RSA Organization Validation Secure Server CA","validFrom":1671494400,"validTo":1705708799,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Xenon2024' log","logId":"76FF883F0AB6FB9551C261CCF587BA34B4A4CDBB29DC68420A9FE6674C5A3A74","timestamp":1671554779279,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450220222241BF959C7961448D0A907CD75131970CD1054AC330685FC7BD0D324BD5FA022100ADD62E509598251A9B66DA62A20B9747B584E1BBCACADDDF1823721AC21AF271"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Cloudflare 'Nimbus2024' Log","logId":"DAB6BF6B3FB5B6229F9BC2BB5C6BE87091716CBB51848534BDA43D3048D7FBAB","timestamp":1671554779235,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502204AA123550A26D7609ADD05ABB260E93022D89655F2DBC1CC1245533E0FB2C508022100E90E173E6C101E3E6F9AAA06D7C19D4DF8CFB4B628849B15473EF47D70B7270B"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2024' log","logId":"EECDD064D5DB1ACEC55CB79DB4CD13A23287467CBCECDEC351485946711FB59B","timestamp":1671554779187,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100BCC6B54CA377CF9B8C8DFB6BDA37B7A47D343F4BB9B28564740FE4DA9E37E6C6022100C07D208C460BEF16E405F4D180340A8043ECDB16E27842AB55E8D2C00D773AF6"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.072487,"dataLength":5140,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.081224,"dataLength":12035,"encodedDataLength":2125},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.088717,"dataLength":6524,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.09629,"dataLength":7067,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.104843,"dataLength":7368,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.112558,"dataLength":7923,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.121138,"dataLength":11343,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.129474,"dataLength":6811,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.13643,"dataLength":8069,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.145196,"dataLength":9480,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.152822,"dataLength":7954,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.161193,"dataLength":7858,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.169102,"dataLength":7557,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.176363,"dataLength":8661,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.184903,"dataLength":9027,"encodedDataLength":1500},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.77","timestamp":183720.192564,"dataLength":8774,"encodedDataLength":1732},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.77","timestamp":183720.192227,"encodedDataLength":25328,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.83","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.363048,"wallTime":1673652474.222067,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.84","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.363758,"wallTime":1673652474.222975,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.85","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.3652,"wallTime":1673652474.22376,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.86","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.365788,"wallTime":1673652474.224355,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.87","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.366243,"wallTime":1673652474.224853,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.88","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.367625,"wallTime":1673652474.226184,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.89","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.368305,"wallTime":1673652474.226863,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.90","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.368442,"wallTime":1673652474.227005,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.91","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","documentURL":"https://www.mikescerealshack.co/search?q=call+of+duty","request":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183720.369741,"wallTime":1673652474.228299,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.83","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.363939},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.84","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.364875},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.85","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.365508},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.86","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.366486},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.87","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.367506},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.88","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183720.368086},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.85","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cda966a-SJC","content-length":"1758","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"00c66d8957f51218ac0c9531b388f7a3\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 22:42:04 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ICb8flGZkzqHlf8ozqa5sk3WBydUCjROqCFZcju9xDhEP5fA58nL9%2FOnGPoa%2FhUDcO6UZXIOmr9ADsdaweMIk5IriXpWHxGtOoL40K2BcMigBDLIpdnMAW9PezpzGf%2FPTGiCNWZVinbQdpw5lPCPn%2B7MfIIMhw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972924506949","x-goog-hash":"crc32c=Od/nwA==\nmd5=AMZtiVf1EhisDJUxs4j3ow==","x-goog-meta-goog-reserved-file-mtime":"1609547913","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"1758","x-guploader-uploadid":"ADPycdvlc2uupJd77Og42wGTYa5bYKqxkkaaZTBJynHo8EA7MJY6M92MoLzRSqhHMgAkxqYCL4Muxmb1XBnmvBZUXicrBQ"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.84","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cd9966a-SJC","content-length":"2865","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"58b6fdeda39744e74ba77f6b9c9c2640\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 22:42:05 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8gdwZniLbXqiQi12fwAf5KtopJw6NSxgxTi87c1gCwR9b26OeNI389HsNXQwGspQar1n%2FCgoZPzSv917qNvaCHRR6SMP2Wc9lHlQyxXWF9uOUHtHJgY%2F7eeSM3%2BNaYLQmPaumwq2YJ6hpOZON%2F6dmbaq36Dgsg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972925663705","x-goog-hash":"crc32c=qrXVCw==\nmd5=WLb97aOXROdLp39rnJwmQA==","x-goog-meta-goog-reserved-file-mtime":"1609547911","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"2865","x-guploader-uploadid":"ADPycduI9_uMJzVn7QfhD4Bu50elmsT4B8mLJPsxpT5CmzW9ZJl0x422Ttzs02S_lcFNnKxCdrxbd9iDpJQ7rAjBPtwXsw"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.86","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cdb966a-SJC","content-length":"3267","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"a399f5b48b372f248af09a6dea0211be\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:11:53 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AknxvVvZGkFnS42DrgphKL6kf4s11gP%2F231bI4Y4eYyXSfAgYZhqumoQemykakN19g8RzHqULv5rdQfxpm4oFLUbWjJ6SJDhJJBP3RWrlRqaE6%2Bs4RgRPN0jZz7MB%2FgdaMP12Ux%2F6UMaKJSNRJHEr3Cl4NCAAw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609974713732296","x-goog-hash":"crc32c=QFZMTg==\nmd5=o5n1tIs3LySK8Jpt6gIRvg==","x-goog-meta-goog-reserved-file-mtime":"1609549117","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3267","x-guploader-uploadid":"ADPycdvbjcyhONHMkQUhBthAHQq7TpIuTnEkiRk7Itw5SLJEWZTosjO6dPD_0xBBXK88GzSLeyhJc3ZwN907anQQgdsDwA"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.87","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cdc966a-SJC","content-length":"2596","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"bdff5710945976e76823a299737094b0\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:21:45 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=E0DZd3toGEpA%2BP5G9yyuaPy6HxGlNuDyGj9y5cxI46g91SFGwDca%2BhH1tKjKDtj%2B%2FeIp8%2BqhXzHsBpFtog5a7lMi8TRD5B18SmVX2M%2Fs817zBnXUg0697R7FbrTTFPwTVoV7a29JAkoqBIQANCTYEQN0oIaiAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975305620947","x-goog-hash":"crc32c=BQZ6QQ==\nmd5=vf9XEJRZdudoI6KZc3CUsA==","x-goog-meta-goog-reserved-file-mtime":"1609549516","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"2596","x-guploader-uploadid":"ADPycdtxD2kOjALSb3cjjiQsrA51jqh8dhYUbmOqD7d0PoD4TLhAqaoaeTKV0QWfOPrItMl3IFXewW_jpuD0fQylJHq8Og"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.83","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cd8966a-SJC","content-length":"2379","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"c9b0a364c88bbcb64f84acd4361d0f8a\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:21:43 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5sAC8Xsw5LHDJdVH6Fds7BOAerrRcejnt%2BYFOZv6vomR1k%2BdjMseE2sMR%2BFgisU%2BOvtqsSO4nv2dj5s7rzZrG7AdfEeTMrbae9Qk78%2BePHGqT6o9nubspjt8RFg0rtI0Z1xpRUCv%2BkzLh8VNEEjoLtHHwU6YzQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975303514062","x-goog-hash":"crc32c=KX8rfg==\nmd5=ybCjZMiLvLZPhKzUNh0Pig==","x-goog-meta-goog-reserved-file-mtime":"1609549519","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"2379","x-guploader-uploadid":"ADPycdttJ_gzeYWfHqoGke6ZpKKKFzzkRZTMRQRG1lGwtIYK-IS9QHt0rw7WS442NO-f0hbLTpL-fdYQAbtWoYJVgDMq6pRaq6mn"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.88","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7bd4cde966a-SJC","content-length":"3110","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:54 GMT","etag":"\"dca610fc0a97201188c88df72a0e9c5a\"","expires":"Sat, 14 Jan 2023 00:27:54 GMT","last-modified":"Wed, 06 Jan 2021 23:26:02 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sEHErQQus8yC6ioU%2BZa6Z%2FRe0WqVbbhvrBAzOFkqrweqwIlkYhl02d59KsMb52s5lp%2F2ol94dvNWn0zmXybN0rERj11PZOo6Dxq2Usswh%2FXJO1e4dQQcRtzV3dbCP%2BM9h3m72ckyaan0aC7BclTOIVuLwG5Ecw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975562412911","x-goog-hash":"crc32c=+2NzRA==\nmd5=3KYQ/AqXIBGIyI33Kg6cWg==","x-goog-meta-goog-reserved-file-mtime":"1609549706","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3110","x-guploader-uploadid":"ADPycdv5ink0ggjlwvghPGI4SbSJ0JxjoCXb-6OMw5yJeRhS8VuL6OvVnRZ0DicjEty5iPtYjAU8rQBzd-c39K2dIIY48oC9n6r5"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.89","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183721.097992},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.90","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183721.09812},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.91","associatedCookies":[],"headers":{":authority":"cdn.mikescerealshack.co",":method":"GET",":path":"/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-site","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183721.098157},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.85","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.09855,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609547913","x-guploader-uploadid":"ADPycdvlc2uupJd77Og42wGTYa5bYKqxkkaaZTBJynHo8EA7MJY6M92MoLzRSqhHMgAkxqYCL4Muxmb1XBnmvBZUXicrBQ","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"1758","last-modified":"Wed, 06 Jan 2021 22:42:04 GMT","server":"cloudflare","etag":"\"00c66d8957f51218ac0c9531b388f7a3\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972924506949","content-type":"image/jpeg","x-goog-hash":"crc32c=Od/nwA==, md5=AMZtiVf1EhisDJUxs4j3ow==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=ICb8flGZkzqHlf8ozqa5sk3WBydUCjROqCFZcju9xDhEP5fA58nL9%2FOnGPoa%2FhUDcO6UZXIOmr9ADsdaweMIk5IriXpWHxGtOoL40K2BcMigBDLIpdnMAW9PezpzGf%2FPTGiCNWZVinbQdpw5lPCPn%2B7MfIIMhw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"1758","accept-ranges":"bytes","cf-ray":"7891e7bd4cda966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":2641,"timing":{"requestTime":183720.365508,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":119.034,"sendEnd":119.373,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":690.769},"responseTime":1673652474531.617,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.85","timestamp":183721.099106,"dataLength":1758,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.85","timestamp":183721.097744,"encodedDataLength":2641,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.84","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.107977,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609547911","x-guploader-uploadid":"ADPycduI9_uMJzVn7QfhD4Bu50elmsT4B8mLJPsxpT5CmzW9ZJl0x422Ttzs02S_lcFNnKxCdrxbd9iDpJQ7rAjBPtwXsw","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"2865","last-modified":"Wed, 06 Jan 2021 22:42:05 GMT","server":"cloudflare","etag":"\"58b6fdeda39744e74ba77f6b9c9c2640\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609972925663705","content-type":"image/jpeg","x-goog-hash":"crc32c=qrXVCw==, md5=WLb97aOXROdLp39rnJwmQA==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=8gdwZniLbXqiQi12fwAf5KtopJw6NSxgxTi87c1gCwR9b26OeNI389HsNXQwGspQar1n%2FCgoZPzSv917qNvaCHRR6SMP2Wc9lHlQyxXWF9uOUHtHJgY%2F7eeSM3%2BNaYLQmPaumwq2YJ6hpOZON%2F6dmbaq36Dgsg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"2865","accept-ranges":"bytes","cf-ray":"7891e7bd4cd9966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3366,"timing":{"requestTime":183720.364875,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":119.634,"sendEnd":120.001,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":699.33},"responseTime":1673652474533.628,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.84","timestamp":183721.108462,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.86","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.119061,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549117","x-guploader-uploadid":"ADPycdvbjcyhONHMkQUhBthAHQq7TpIuTnEkiRk7Itw5SLJEWZTosjO6dPD_0xBBXK88GzSLeyhJc3ZwN907anQQgdsDwA","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3267","last-modified":"Wed, 06 Jan 2021 23:11:53 GMT","server":"cloudflare","etag":"\"a399f5b48b372f248af09a6dea0211be\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609974713732296","content-type":"image/jpeg","x-goog-hash":"crc32c=QFZMTg==, md5=o5n1tIs3LySK8Jpt6gIRvg==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=AknxvVvZGkFnS42DrgphKL6kf4s11gP%2F231bI4Y4eYyXSfAgYZhqumoQemykakN19g8RzHqULv5rdQfxpm4oFLUbWjJ6SJDhJJBP3RWrlRqaE6%2Bs4RgRPN0jZz7MB%2FgdaMP12Ux%2F6UMaKJSNRJHEr3Cl4NCAAw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3267","accept-ranges":"bytes","cf-ray":"7891e7bd4cdb966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3771,"timing":{"requestTime":183720.366486,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":118.094,"sendEnd":118.399,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":705.747},"responseTime":1673652474547.771,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.86","timestamp":183721.119112,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.87","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.129386,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549516","x-guploader-uploadid":"ADPycdtxD2kOjALSb3cjjiQsrA51jqh8dhYUbmOqD7d0PoD4TLhAqaoaeTKV0QWfOPrItMl3IFXewW_jpuD0fQylJHq8Og","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"2596","last-modified":"Wed, 06 Jan 2021 23:21:45 GMT","server":"cloudflare","etag":"\"bdff5710945976e76823a299737094b0\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975305620947","content-type":"image/jpeg","x-goog-hash":"crc32c=BQZ6QQ==, md5=vf9XEJRZdudoI6KZc3CUsA==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=E0DZd3toGEpA%2BP5G9yyuaPy6HxGlNuDyGj9y5cxI46g91SFGwDca%2BhH1tKjKDtj%2B%2FeIp8%2BqhXzHsBpFtog5a7lMi8TRD5B18SmVX2M%2Fs817zBnXUg0697R7FbrTTFPwTVoV7a29JAkoqBIQANCTYEQN0oIaiAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"2596","accept-ranges":"bytes","cf-ray":"7891e7bd4cdc966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3142,"timing":{"requestTime":183720.367506,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":117.104,"sendEnd":117.383,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":712.776},"responseTime":1673652474561.91,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.87","timestamp":183721.129682,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.83","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.131105,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549519","x-guploader-uploadid":"ADPycdttJ_gzeYWfHqoGke6ZpKKKFzzkRZTMRQRG1lGwtIYK-IS9QHt0rw7WS442NO-f0hbLTpL-fdYQAbtWoYJVgDMq6pRaq6mn","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"2379","last-modified":"Wed, 06 Jan 2021 23:21:43 GMT","server":"cloudflare","etag":"\"c9b0a364c88bbcb64f84acd4361d0f8a\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975303514062","content-type":"image/jpeg","x-goog-hash":"crc32c=KX8rfg==, md5=ybCjZMiLvLZPhKzUNh0Pig==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5sAC8Xsw5LHDJdVH6Fds7BOAerrRcejnt%2BYFOZv6vomR1k%2BdjMseE2sMR%2BFgisU%2BOvtqsSO4nv2dj5s7rzZrG7AdfEeTMrbae9Qk78%2BePHGqT6o9nubspjt8RFg0rtI0Z1xpRUCv%2BkzLh8VNEEjoLtHHwU6YzQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"2379","accept-ranges":"bytes","cf-ray":"7891e7bd4cd8966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":false,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3135,"timing":{"requestTime":183720.363939,"proxyStart":-1,"proxyEnd":-1,"dnsStart":3.666,"dnsEnd":103.068,"connectStart":103.068,"connectEnd":118.404,"sslStart":108.523,"sslEnd":118.387,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":120.52,"sendEnd":120.932,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":724.176},"responseTime":1673652474569.224,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.83","timestamp":183721.131145,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.88","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.145921,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:54 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549706","x-guploader-uploadid":"ADPycdv5ink0ggjlwvghPGI4SbSJ0JxjoCXb-6OMw5yJeRhS8VuL6OvVnRZ0DicjEty5iPtYjAU8rQBzd-c39K2dIIY48oC9n6r5","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3110","last-modified":"Wed, 06 Jan 2021 23:26:02 GMT","server":"cloudflare","etag":"\"dca610fc0a97201188c88df72a0e9c5a\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975562412911","content-type":"image/jpeg","x-goog-hash":"crc32c=+2NzRA==, md5=3KYQ/AqXIBGIyI33Kg6cWg==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=sEHErQQus8yC6ioU%2BZa6Z%2FRe0WqVbbhvrBAzOFkqrweqwIlkYhl02d59KsMb52s5lp%2F2ol94dvNWn0zmXybN0rERj11PZOo6Dxq2Usswh%2FXJO1e4dQQcRtzV3dbCP%2BM9h3m72ckyaan0aC7BclTOIVuLwG5Ecw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3110","accept-ranges":"bytes","cf-ray":"7891e7bd4cde966a-SJC","expires":"Sat, 14 Jan 2023 00:27:54 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3617,"timing":{"requestTime":183720.368086,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":116.554,"sendEnd":116.807,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":728.978},"responseTime":1673652474575.437,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.88","timestamp":183721.146313,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.84","timestamp":183721.152159,"dataLength":1365,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.84","timestamp":183721.152188,"encodedDataLength":3366,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.86","timestamp":183721.156926,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.86","timestamp":183721.157124,"dataLength":267,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.86","timestamp":183721.157111,"encodedDataLength":3771,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.87","timestamp":183721.168557,"dataLength":1096,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.87","timestamp":183721.168224,"encodedDataLength":3142,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.83","timestamp":183721.169421,"dataLength":879,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.83","timestamp":183721.168688,"encodedDataLength":3135,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.88","timestamp":183721.184873,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.88","timestamp":183721.185816,"dataLength":110,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.88","timestamp":183721.185371,"encodedDataLength":3617,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.90","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7c119a3966a-SJC","content-length":"3032","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:55 GMT","etag":"\"d7857b6350dea42c89c55b0b156f8066\"","expires":"Sat, 14 Jan 2023 00:27:55 GMT","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MRox1XJCPrZOejQ8%2BbnK4Y6m8e4pcrB2op2WAbjaGh5htnYqGcJfJgCer8HiVghFCIgaEEFMfuqdBq29ZDyDs%2BEfqhYWPQEOts8s71x3zjgqaWaToGoBYp3bxPVogrVM4I%2FfOh3D0wc5ntwFNy9D8%2FvU8GTydA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267981871","x-goog-hash":"crc32c=qlNrvg==\nmd5=14V7Y1DepCyJxVsLFW+AZg==","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3032","x-guploader-uploadid":"ADPycdsUBLE3PHBKvXw1nTsjZB14YovfDI5OYlamtFW21cXiLCtZTQJi5Ia2k_tAwQFQuJWjuHVQZMjlimaWezjj35Q9Bb7lrATw"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.91","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7c119a4966a-SJC","content-length":"3324","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:55 GMT","etag":"\"9c370b8fe25b4783b2cf6cd4cbe2ec9b\"","expires":"Sat, 14 Jan 2023 00:27:55 GMT","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eHNbKsyCYwTirfS5OBWncF6H48u5ubyLZHmz2oJYMoQ35%2FyjO9lM4Gnd%2BmLOO0TPum4lR0ZpFnjV7EheZaqHzXRGt1yDdI88UjqUfbQnaHW4ACxSLquhN6fbSI9Svmk24T3Nab2j50j6BR0FFXWpxpqCFRKJ8Q%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267610822","x-goog-hash":"crc32c=N1jS0w==\nmd5=nDcLj+JbR4Oyz2zUy+Lsmw==","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3324","x-guploader-uploadid":"ADPycduoUtN2s2vgwesZPBHw8uXn7okhzj6HX_uf8jQauZZ8O05TTDlT2OvAfpdGZ70w6yYS8MeqVflXT4LWeKP4Hx_vu_KzsQPn"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.89","blockedCookies":[],"headers":{"accept-ranges":"bytes","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","cache-control":"public, max-age=14400","cf-cache-status":"MISS","cf-ray":"7891e7c119a2966a-SJC","content-length":"3806","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:27:55 GMT","etag":"\"7ccae94cde583785b8c1e08ace6c3e93\"","expires":"Sat, 14 Jan 2023 00:27:55 GMT","last-modified":"Wed, 06 Jan 2021 23:21:48 GMT","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cYFQTKM4zy72y4v6n6JR%2FWFbadUV0EZKSMf78saU3UBmWQtEFG7gxvBQGwaZl5ENWXhD24uHnC9Njw75i0lC407B4YGoDdPh7wd9zGKf6deVWmLBhBVt%2Bd97Q2G0oF6omCxgiiPrF2Ge84TTjUFg9HaDhRFdtw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","server":"cloudflare","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975308105008","x-goog-hash":"crc32c=vBwt8A==\nmd5=fMrpTN5YN4W4weCKzmw+kw==","x-goog-meta-goog-reserved-file-mtime":"1609549513","x-goog-metageneration":"1","x-goog-storage-class":"STANDARD","x-goog-stored-content-encoding":"identity","x-goog-stored-content-length":"3806","x-guploader-uploadid":"ADPycdtM9aN6z8NDW6629Mf4VjCFYep_lVXoF6x8CRz8gX_gRmKldlWaiB6jw7ogmINyGjGiB3d7Yl7mHuCZEY_pOtPqOpH3iFUJ"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.90","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.698239,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:55 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-guploader-uploadid":"ADPycdsUBLE3PHBKvXw1nTsjZB14YovfDI5OYlamtFW21cXiLCtZTQJi5Ia2k_tAwQFQuJWjuHVQZMjlimaWezjj35Q9Bb7lrATw","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3032","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","server":"cloudflare","etag":"\"d7857b6350dea42c89c55b0b156f8066\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267981871","content-type":"image/jpeg","x-goog-hash":"crc32c=qlNrvg==, md5=14V7Y1DepCyJxVsLFW+AZg==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=MRox1XJCPrZOejQ8%2BbnK4Y6m8e4pcrB2op2WAbjaGh5htnYqGcJfJgCer8HiVghFCIgaEEFMfuqdBq29ZDyDs%2BEfqhYWPQEOts8s71x3zjgqaWaToGoBYp3bxPVogrVM4I%2FfOh3D0wc5ntwFNy9D8%2FvU8GTydA%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3032","accept-ranges":"bytes","cf-ray":"7891e7c119a3966a-SJC","expires":"Sat, 14 Jan 2023 00:27:55 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3585,"timing":{"requestTime":183721.09812,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.856,"sendEnd":1.099,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":574.128},"responseTime":1673652475129.526,"protocol":"h2","alternateProtocolUsage":"mainJobWonRace","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.90","timestamp":183721.698557,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.91","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.705061,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:55 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609550160","x-guploader-uploadid":"ADPycduoUtN2s2vgwesZPBHw8uXn7okhzj6HX_uf8jQauZZ8O05TTDlT2OvAfpdGZ70w6yYS8MeqVflXT4LWeKP4Hx_vu_KzsQPn","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3324","last-modified":"Wed, 06 Jan 2021 23:37:47 GMT","server":"cloudflare","etag":"\"9c370b8fe25b4783b2cf6cd4cbe2ec9b\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609976267610822","content-type":"image/jpeg","x-goog-hash":"crc32c=N1jS0w==, md5=nDcLj+JbR4Oyz2zUy+Lsmw==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=eHNbKsyCYwTirfS5OBWncF6H48u5ubyLZHmz2oJYMoQ35%2FyjO9lM4Gnd%2BmLOO0TPum4lR0ZpFnjV7EheZaqHzXRGt1yDdI88UjqUfbQnaHW4ACxSLquhN6fbSI9Svmk24T3Nab2j50j6BR0FFXWpxpqCFRKJ8Q%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3324","accept-ranges":"bytes","cf-ray":"7891e7c119a4966a-SJC","expires":"Sat, 14 Jan 2023 00:27:55 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":3815,"timing":{"requestTime":183721.098157,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.9,"sendEnd":1.067,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":581.975},"responseTime":1673652475134.547,"protocol":"h2","alternateProtocolUsage":"mainJobWonRace","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.91","timestamp":183721.705102,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.89","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","timestamp":183721.71299,"type":"Image","response":{"url":"https://cdn.mikescerealshack.co/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:55 GMT","cf-cache-status":"MISS","nel":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","x-goog-meta-goog-reserved-file-mtime":"1609549513","x-guploader-uploadid":"ADPycdtM9aN6z8NDW6629Mf4VjCFYep_lVXoF6x8CRz8gX_gRmKldlWaiB6jw7ogmINyGjGiB3d7Yl7mHuCZEY_pOtPqOpH3iFUJ","x-goog-storage-class":"STANDARD","x-goog-metageneration":"1","x-goog-stored-content-encoding":"identity","alt-svc":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400","content-length":"3806","last-modified":"Wed, 06 Jan 2021 23:21:48 GMT","server":"cloudflare","etag":"\"7ccae94cde583785b8c1e08ace6c3e93\"","vary":"Origin, Accept-Encoding","x-goog-generation":"1609975308105008","content-type":"image/jpeg","x-goog-hash":"crc32c=vBwt8A==, md5=fMrpTN5YN4W4weCKzmw+kw==","cache-control":"public, max-age=14400","report-to":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=cYFQTKM4zy72y4v6n6JR%2FWFbadUV0EZKSMf78saU3UBmWQtEFG7gxvBQGwaZl5ENWXhD24uHnC9Njw75i0lC407B4YGoDdPh7wd9zGKf6deVWmLBhBVt%2Bd97Q2G0oF6omCxgiiPrF2Ge84TTjUFg9HaDhRFdtw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","x-goog-stored-content-length":"3806","accept-ranges":"bytes","cf-ray":"7891e7c119a2966a-SJC","expires":"Sat, 14 Jan 2023 00:27:55 GMT"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":428,"remoteIPAddress":"[2606:4700:3031::ac43:af3e]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":4533,"timing":{"requestTime":183721.097992,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.925,"sendEnd":1.209,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":590.274},"responseTime":1673652475294.669,"protocol":"h2","alternateProtocolUsage":"mainJobWonRace","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"sni.cloudflaressl.com","sanList":["*.mikescerealshack.co","sni.cloudflaressl.com","mikescerealshack.co"],"issuer":"Cloudflare Inc ECC CA-3","validFrom":1667779200,"validTo":1699401599,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1667787453045,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"30450221009000F7723B5FF79D03F1FB868A093DA516708C863216739FDCB9EAAA74DD0DA50220611A425293DD750FEA558ED1E2A8318E13244C40F472698380DA49CE14815686"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"DigiCert Nessie2023 Log","logId":"B3737707E18450F86386D605A9DC11094A792DB1670C0B87DCF0030E7936A59A","timestamp":1667787453145,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022031DAED01865AF50E6050D8C55C366EA68ACB8461CD16F373F90E4208335897F2022100C12DC85598D23BB77EC615A65DC233657D52E5E9EFD867A7CDC000E46F6F974C"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1667787453066,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3046022100F2BB42C66EAF67FE8EC90F081F188ADFB1BF07E79B2F0BF12426C0E980DBCA0E022100B8080668F0764214F9EC12676346C6134802543471F4C3857D6D1A347CDCCA25"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.89","timestamp":183721.713038,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.90","timestamp":183721.720435,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.90","timestamp":183721.721171,"dataLength":32,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.90","timestamp":183721.72096,"encodedDataLength":3585,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.91","timestamp":183721.728554,"dataLength":1824,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.91","timestamp":183721.728511,"encodedDataLength":3815,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.89","timestamp":183721.736254,"dataLength":1500,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.89","timestamp":183721.744476,"dataLength":806,"encodedDataLength":0},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.89","timestamp":183721.744486,"encodedDataLength":4533,"shouldReportCorbBlocking":false},"sessionId":"CA00760E6BD715708D472B020870395B","targetType":"page"} ] diff --git a/core/test/fixtures/fraggle-rock/artifacts/step3/defaultPass.devtoolslog.json b/core/test/fixtures/fraggle-rock/artifacts/step3/defaultPass.devtoolslog.json index 151430233062..4375b0e74d62 100644 --- a/core/test/fixtures/fraggle-rock/artifacts/step3/defaultPass.devtoolslog.json +++ b/core/test/fixtures/fraggle-rock/artifacts/step3/defaultPass.devtoolslog.json @@ -1,156 +1,156 @@ [ - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"commit","timestamp":183713.167977},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"DOMContentLoaded","timestamp":183713.237485},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"load","timestamp":183713.869169},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkAlmostIdle","timestamp":183713.551617},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkIdle","timestamp":183713.949932},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/corrections","method":"GET","headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.762259,"wallTime":1673652483.620813,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Document","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/corrections",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"document","sec-fetch-mode":"navigate","sec-fetch-site":"none","sec-fetch-user":"?1","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.764766}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"704076","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"corrections\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"b47b254b4337db62fb6d80e188b73caa2dd7c63614667359e1787476cc9b0e6b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652483726-719e4afb5cf6"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.776574,"type":"Document","response":{"url":"https://www.mikescerealshack.co/corrections","status":200,"statusText":"","headers":{"access-control-allow-origin":"*","age":"704076","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"corrections\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"b47b254b4337db62fb6d80e188b73caa2dd7c63614667359e1787476cc9b0e6b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652483726-719e4afb5cf6"},"mimeType":"text/html","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":224,"timing":{"requestTime":183729.764766,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.468,"sendEnd":0.731,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.994},"responseTime":1673652483634.155,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.frameStartedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"init","timestamp":183729.779418},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.103","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/fonts/danielbd.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","if-none-match":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","origin":"https://www.mikescerealshack.co","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.782687},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.104","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.783303},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.104","blockedCookies":[],"headers":{"Content-Encoding":"gzip","Content-Type":"application/javascript","Date":"Fri, 13 Jan 2023 23:27:47 GMT","Server":"nginx/1.18.0 (Ubuntu)","access-control-allow-origin":"*","application":"10.0.0.8","cache-control":"public, max-age=86400, must-revalidate","cross-origin-resource-policy":"cross-origin","permissions-policy":"interest-cohort=()","x-content-type-options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx/1.18.0 (Ubuntu)\r\nDate: Fri, 13 Jan 2023 23:27:47 GMT\r\nContent-Type: application/javascript\r\naccess-control-allow-origin: *\r\napplication: 10.0.0.8\r\ncache-control: public, max-age=86400, must-revalidate\r\ncross-origin-resource-policy: cross-origin\r\npermissions-policy: interest-cohort=()\r\nx-content-type-options: nosniff\r\nContent-Encoding: gzip\r\n\r\n"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.105","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.783675},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.105","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\"","content-encoding":"br","content-type":"text/css; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.107","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.784079},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.107","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.108","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.784298},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.108","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.113","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.78585},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.109","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.784446},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.109","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.110","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.78483},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.110","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.111","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.785281},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.111","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.112","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.785642},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.112","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Runtime.executionContextsCleared","params":{},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.frameNavigated","params":{"frame":{"id":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","url":"https://www.mikescerealshack.co/corrections","domainAndRegistry":"mikescerealshack.co","securityOrigin":"https://www.mikescerealshack.co","mimeType":"text/html","adFrameStatus":{"adFrameType":"none"},"secureContextType":"Secure","crossOriginIsolatedContextType":"NotIsolated","gatedAPIFeatures":[]},"type":"Navigation"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":8,"origin":"https://www.mikescerealshack.co","name":"","uniqueId":"-104313651229622418.1544028665195226885","auxData":{"isDefault":true,"type":"default","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.781988,"dataLength":9492,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.103","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.782251,"wallTime":1673652483.640791,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":0,"columnNumber":545},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.104","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://events.mikescerealshack.co/js/index.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.78251,"wallTime":1673652483.641043,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":126},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.105","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783113,"wallTime":1673652483.641649,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1367},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.107","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783388,"wallTime":1673652483.641918,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1578},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.108","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783701,"wallTime":1673652483.642235,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1671},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.109","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783891,"wallTime":1673652483.642416,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1766},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.110","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784093,"wallTime":1673652483.642624,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1859},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.111","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784398,"wallTime":1673652483.642925,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1955},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.112","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784608,"wallTime":1673652483.643134,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":2081},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.113","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784787,"wallTime":1673652483.643311,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":2184},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.114","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/logo-text.svg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.784952,"wallTime":1673652483.643476,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":3419},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.115","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/oscar-actually.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.78504,"wallTime":1673652483.643561,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":5550},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.123","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.785259,"wallTime":1673652483.64378,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":8473},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.124","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.785333,"wallTime":1673652483.643853,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":8557},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":9,"origin":"://","name":"__puppeteer_utility_world__","uniqueId":"4339459643211787851.7025459809305323433","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":10,"origin":"https://www.mikescerealshack.co","name":"lighthouse_isolated_context","uniqueId":"4732987172825122225.2598087000091621674","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":11,"origin":"https://www.mikescerealshack.co","name":"lighthouse_isolated_context","uniqueId":"6418786534197089440.-4447239351610692962","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Runtime.executionContextCreated","params":{"context":{"id":12,"origin":"https://www.mikescerealshack.co","name":"lighthouse_isolated_context","uniqueId":"8970596674113716809.627750559267878027","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.103","blockedCookies":[],"headers":{"cache-control":"public, max-age=0, must-revalidate","date":"Fri, 13 Jan 2023 23:28:03 GMT","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1::w6s9b-1673652483745-cda98bf28e67"},"resourceIPAddressSpace":"Public","statusCode":304},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.115","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/oscar-actually.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.797712},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.114","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/logo-text.svg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","if-none-match":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.797243},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.123","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.79807},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.123","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954887","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.126","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183729.795872,"wallTime":1673652483.654436,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"loadCssAsync","scriptId":"101","url":"https://www.mikescerealshack.co/corrections","lineNumber":8,"columnNumber":16},{"functionName":"","scriptId":"101","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":2}]}},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.124","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.798338},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.124","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","content-length":"76","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.776853,"encodedDataLength":3596,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.113","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"704076","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"corrections-7a620a51252fe2c2f77b.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"c01d848a9c39b975b544438c32453febc4ead94358024112ff429c9444cc2ffb\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483750-fbf6449869c2"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.104","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.801123,"type":"Script","response":{"url":"https://events.mikescerealshack.co/js/index.js","status":200,"statusText":"OK","headers":{"Date":"Fri, 13 Jan 2023 23:27:47 GMT","Content-Encoding":"gzip","x-content-type-options":"nosniff","Server":"nginx/1.18.0 (Ubuntu)","Content-Type":"application/javascript","access-control-allow-origin":"*","cache-control":"public, max-age=86400, must-revalidate","permissions-policy":"interest-cohort=()","cross-origin-resource-policy":"cross-origin","application":"10.0.0.8"},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4e2f:830b]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.783303,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.039,"sendEnd":0.039,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.625},"responseTime":1673652467724.65,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"events.mikescerealshack.co","sanList":["events.mikescerealshack.co"],"issuer":"R3","validFrom":1668691921,"validTo":1676467920,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.104","timestamp":183729.801309,"dataLength":1321,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.105","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.801689,"type":"Stylesheet","response":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163","age":"3886004","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","x-vercel-cache":"HIT","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\""},"mimeType":"text/css","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.783675,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.036,"sendEnd":0.036,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.692},"responseTime":1673652467096.503,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.105","timestamp":183729.801756,"dataLength":18126,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.126","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.798573},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.126","blockedCookies":[],"headers":{"access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"private, max-age=86400, stale-while-revalidate=604800","content-encoding":"gzip","content-type":"text/css; charset=utf-8","cross-origin-opener-policy":"same-origin-allow-popups","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Fri, 13 Jan 2023 23:27:47 GMT","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","link":"; rel=preconnect; crossorigin","server":"ESF","timing-allow-origin":"*","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-google-apps-framework-action":"Css2","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","x-google-dos-service-trace":"main:apps-themes","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"apps-themes","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32\nFRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","x-google-service":"apps-themes","x-google-session-info":"WgdKBWVuLVVT","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.103","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.802503,"type":"Font","response":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","server":"Vercel","x-vercel-id":"sfo1::w6s9b-1673652483745-cda98bf28e67","age":"3886004","x-vercel-cache":"HIT","etag":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","content-type":"font/woff2","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"danielbd.woff2\"","accept-ranges":"bytes","content-length":"35680"},"mimeType":"font/woff2","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":44,"timing":{"requestTime":183729.782687,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.088,"sendEnd":1.492,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.925},"responseTime":1673652483652.884,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.103","timestamp":183729.802571,"dataLength":35680,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.103","timestamp":183729.795659,"encodedDataLength":44,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.domContentEventFired","params":{"timestamp":183729.806067},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"DOMContentLoaded","timestamp":183729.806067},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.105","timestamp":183729.787139,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.115","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"704076","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"oscar-actually.jpg\"","content-length":"122114","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"8ab41efd51ec5c8bb4fd849ea025f526e5edd75a7fecd484609c47fcf0df4c2b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483760-a41a24b89445"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.113","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.808789,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483750-fbf6449869c2","age":"704076","etag":"W/\"c01d848a9c39b975b544438c32453febc4ead94358024112ff429c9444cc2ffb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"corrections-7a620a51252fe2c2f77b.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":147,"timing":{"requestTime":183729.78585,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.469,"sendEnd":2.762,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":15.565},"responseTime":1673652483659.756,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.113","timestamp":183729.808854,"dataLength":3328,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.104","timestamp":183729.786385,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.107","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.809234,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616","age":"3886004","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.784079,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.055,"sendEnd":0.055,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.512},"responseTime":1673652467074.245,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.107","timestamp":183729.809285,"dataLength":17656,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.108","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.809587,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4","age":"3886004","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.784298,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.054,"sendEnd":0.054,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.57},"responseTime":1673652467086.881,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.108","timestamp":183729.809653,"dataLength":2351,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.109","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.809911,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c","age":"3886004","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.784446,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.059,"sendEnd":0.059,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.912},"responseTime":1673652467075.567,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.109","timestamp":183729.809965,"dataLength":130277,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.110","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.810417,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f","age":"3886004","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.78483,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.038,"sendEnd":0.038,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.656},"responseTime":1673652467082.21,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.110","timestamp":183729.810516,"dataLength":44060,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.111","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.810828,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf","age":"3886004","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.785281,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.028,"sendEnd":0.028,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3.188},"responseTime":1673652467077.189,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.111","timestamp":183729.810882,"dataLength":1235,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.112","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.811109,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183729.785642,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.041,"sendEnd":0.041,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.978},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.112","timestamp":183729.811165,"dataLength":67673,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.126","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.811899,"type":"Stylesheet","response":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","status":200,"statusText":"","headers":{"x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32, FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","content-encoding":"gzip","x-google-gfe-service-trace":"apps-themes","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-frame-options":"SAMEORIGIN","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"private, max-age=86400, stale-while-revalidate=604800","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","link":"; rel=preconnect; crossorigin","x-google-dos-service-trace":"main:apps-themes","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-session-info":"WgdKBWVuLVVT","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","expires":"Fri, 13 Jan 2023 23:27:47 GMT","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","x-google-service":"apps-themes","x-xss-protection":"0","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-shellfish-status":"CA0gBEBG","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","server":"ESF","cross-origin-opener-policy":"same-origin-allow-popups","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-apps-framework-action":"Css2","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","timing-allow-origin":"*"},"mimeType":"text/css","connectionReused":false,"connectionId":0,"remoteIPAddress":"[2607:f8b0:4005:80f::200a]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.798573,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.033,"sendEnd":0.033,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3.574},"responseTime":1673652467202.03,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"upload.video.google.com","sanList":["upload.video.google.com","*.clients.google.com","*.docs.google.com","*.drive.google.com","*.gdata.youtube.com","*.googleapis.com","*.photos.google.com","*.youtube-3rd-party.com","upload.google.com","*.upload.google.com","upload.youtube.com","*.upload.youtube.com","uploads.stage.gdata.youtube.com","bg-call-donation.goog","bg-call-donation-alpha.goog","bg-call-donation-canary.goog","bg-call-donation-dev.goog"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.126","timestamp":183729.811963,"dataLength":3282,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.126","timestamp":183729.802967,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.123","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.812537,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760","age":"954887","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.79807,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.063,"sendEnd":0.063,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.702},"responseTime":1673652467091.398,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.123","timestamp":183729.812587,"dataLength":1545,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.124","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.812836,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7","age":"3886004","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","accept-ranges":"bytes","content-length":"76"},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.798338,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.033,"sendEnd":0.033,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.999},"responseTime":1673652467090.852,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.124","timestamp":183729.81289,"dataLength":76,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.115","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.813297,"type":"Image","response":{"url":"https://www.mikescerealshack.co/oscar-actually.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483760-a41a24b89445","age":"704076","etag":"W/\"8ab41efd51ec5c8bb4fd849ea025f526e5edd75a7fecd484609c47fcf0df4c2b\"","x-vercel-cache":"HIT","content-type":"image/jpeg","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"oscar-actually.jpg\"","accept-ranges":"bytes","content-length":"122114"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":150,"timing":{"requestTime":183729.797712,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.068,"sendEnd":1.649,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.013},"responseTime":1673652483667.161,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.115","timestamp":183729.813344,"dataLength":19956,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.114","blockedCookies":[],"headers":{"cache-control":"public, max-age=0, must-revalidate","date":"Fri, 13 Jan 2023 23:28:03 GMT","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1::kq2v8-1673652483760-6503f26a3851"},"resourceIPAddressSpace":"Public","statusCode":304},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.113","timestamp":183729.816488,"dataLength":0,"encodedDataLength":1503},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.113","timestamp":183729.801939,"encodedDataLength":1650,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.114","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.816773,"type":"Image","response":{"url":"https://www.mikescerealshack.co/logo-text.svg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1::kq2v8-1673652483760-6503f26a3851","age":"3886004","x-vercel-cache":"HIT","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","content-type":"image/svg+xml","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\""},"mimeType":"image/svg+xml","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":44,"timing":{"requestTime":183729.797243,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":2.017,"sendEnd":3.073,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.857},"responseTime":1673652483667.053,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.114","timestamp":183729.816831,"dataLength":53947,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.114","timestamp":183729.809731,"encodedDataLength":44,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.108","timestamp":183729.788336,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.107","timestamp":183729.788142,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.111","timestamp":183729.789875,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.110","timestamp":183729.789565,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.123","timestamp":183729.802502,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.157","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.824734},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.157","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7816","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075834023274","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Unknown","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.151","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.824943},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.151","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7884","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075620475600","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Unknown","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.157","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183729.824308,"wallTime":1673652483.682849,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.151","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183729.824542,"wallTime":1673652483.68307,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"32033.115","newPriority":"High","timestamp":183729.826603},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstPaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstContentfulPaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstImagePaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstMeaningfulPaintCandidate","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.124","timestamp":183729.802711,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.112","timestamp":183729.790457,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.109","timestamp":183729.791339,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.115","timestamp":183729.833214,"dataLength":102158,"encodedDataLength":122204},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.115","timestamp":183729.827082,"encodedDataLength":122354,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.157","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.836834,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075834023274","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7816","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":false,"connectionId":0,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.824734,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.03,"sendEnd":0.03,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.907},"responseTime":1673652467383.561,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.157","timestamp":183729.836892,"dataLength":7816,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.157","timestamp":183729.826251,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.151","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.852082,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075620475600","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7884","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":false,"connectionId":0,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.824943,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.021,"sendEnd":0.021,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.023},"responseTime":1673652467381.674,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.151","timestamp":183729.852152,"dataLength":7884,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.navigatedWithinDocument","params":{"frameId":"6B7B62084170FF8A201077D06215638B","url":"https://www.mikescerealshack.co/corrections"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.151","timestamp":183729.826392,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.loadEventFired","params":{"timestamp":183729.875973},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"load","timestamp":183729.875973},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.frameStoppedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.164","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.88122,"wallTime":1673652483.739797,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"107","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"12","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.165","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.881533,"wallTime":1673652483.74009,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"107","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"12","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.164","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.88181},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.164","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.165","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.882004},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.165","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.164","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.882819,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.88181,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.041,"sendEnd":0.041,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.424},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.165","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.883153,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.882004,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.028,"sendEnd":0.028,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.499},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.164","timestamp":183729.883052,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.165","timestamp":183729.883192,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSent","params":{"requestId":"32033.166","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.884658,"wallTime":1673652483.74325,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"99","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"99","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"107","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"12","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.166","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.885101},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.166","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.responseReceived","params":{"requestId":"32033.166","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.885796,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183729.885101,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.042,"sendEnd":0.042,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.307},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.dataReceived","params":{"requestId":"32033.166","timestamp":183729.885852,"dataLength":1856,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Network.loadingFinished","params":{"requestId":"32033.166","timestamp":183729.885672,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"networkAlmostIdle","timestamp":183729.833551},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstMeaningfulPaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D"}, - {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"networkIdle","timestamp":183729.886111},"sessionId":"864931A58C1B969F13A72A7A02D1118D"} + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"commit","timestamp":183713.167977},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"DOMContentLoaded","timestamp":183713.237485},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"load","timestamp":183713.869169},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkAlmostIdle","timestamp":183713.551617},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"E716C697D6D6E0BF07EA3A8300222B8B","name":"networkIdle","timestamp":183713.949932},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/corrections","method":"GET","headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.762259,"wallTime":1673652483.620813,"initiator":{"type":"other"},"redirectHasExtraInfo":false,"type":"Document","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/corrections",":scheme":"https","accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"document","sec-fetch-mode":"navigate","sec-fetch-site":"none","sec-fetch-user":"?1","upgrade-insecure-requests":"1","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.764766}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"704076","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"corrections\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"b47b254b4337db62fb6d80e188b73caa2dd7c63614667359e1787476cc9b0e6b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652483726-719e4afb5cf6"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.776574,"type":"Document","response":{"url":"https://www.mikescerealshack.co/corrections","status":200,"statusText":"","headers":{"access-control-allow-origin":"*","age":"704076","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"corrections\"","content-encoding":"br","content-type":"text/html; charset=utf-8","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"b47b254b4337db62fb6d80e188b73caa2dd7c63614667359e1787476cc9b0e6b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::kq2v8-1673652483726-719e4afb5cf6"},"mimeType":"text/html","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":224,"timing":{"requestTime":183729.764766,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.468,"sendEnd":0.731,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":10.994},"responseTime":1673652483634.155,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.frameStartedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"init","timestamp":183729.779418},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.103","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/fonts/danielbd.woff2",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","if-none-match":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","origin":"https://www.mikescerealshack.co","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"font","sec-fetch-mode":"cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.782687},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.104","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.783303},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.104","blockedCookies":[],"headers":{"Content-Encoding":"gzip","Content-Type":"application/javascript","Date":"Fri, 13 Jan 2023 23:27:47 GMT","Server":"nginx/1.18.0 (Ubuntu)","access-control-allow-origin":"*","application":"10.0.0.8","cache-control":"public, max-age=86400, must-revalidate","cross-origin-resource-policy":"cross-origin","permissions-policy":"interest-cohort=()","x-content-type-options":"nosniff"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nServer: nginx/1.18.0 (Ubuntu)\r\nDate: Fri, 13 Jan 2023 23:27:47 GMT\r\nContent-Type: application/javascript\r\naccess-control-allow-origin: *\r\napplication: 10.0.0.8\r\ncache-control: public, max-age=86400, must-revalidate\r\ncross-origin-resource-policy: cross-origin\r\npermissions-policy: interest-cohort=()\r\nx-content-type-options: nosniff\r\nContent-Encoding: gzip\r\n\r\n"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.105","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.783675},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.105","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\"","content-encoding":"br","content-type":"text/css; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.107","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.784079},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.107","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.108","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.784298},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.108","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.113","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"script","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.78585},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.109","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.784446},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.109","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.110","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.78483},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.110","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.111","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.785281},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.111","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.112","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.785642},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.112","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Runtime.executionContextsCleared","params":{},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.frameNavigated","params":{"frame":{"id":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","url":"https://www.mikescerealshack.co/corrections","domainAndRegistry":"mikescerealshack.co","securityOrigin":"https://www.mikescerealshack.co","mimeType":"text/html","adFrameStatus":{"adFrameType":"none"},"secureContextType":"Secure","crossOriginIsolatedContextType":"NotIsolated","gatedAPIFeatures":[]},"type":"Navigation"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":8,"origin":"https://www.mikescerealshack.co","name":"","uniqueId":"-104313651229622418.1544028665195226885","auxData":{"isDefault":true,"type":"default","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.781988,"dataLength":9492,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.103","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.782251,"wallTime":1673652483.640791,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":0,"columnNumber":545},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.104","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://events.mikescerealshack.co/js/index.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.78251,"wallTime":1673652483.641043,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":126},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.105","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783113,"wallTime":1673652483.641649,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1367},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.107","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783388,"wallTime":1673652483.641918,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1578},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.108","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783701,"wallTime":1673652483.642235,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1671},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.109","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.783891,"wallTime":1673652483.642416,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1766},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.110","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784093,"wallTime":1673652483.642624,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1859},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.111","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784398,"wallTime":1673652483.642925,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":1955},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.112","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784608,"wallTime":1673652483.643134,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":2081},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.113","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":183729.784787,"wallTime":1673652483.643311,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":2184},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.114","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/logo-text.svg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.784952,"wallTime":1673652483.643476,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":3419},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.115","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/oscar-actually.jpg","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.78504,"wallTime":1673652483.643561,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":5550},"redirectHasExtraInfo":false,"type":"Image","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.123","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.785259,"wallTime":1673652483.64378,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":8473},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.124","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.785333,"wallTime":1673652483.643853,"initiator":{"type":"parser","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":8557},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":9,"origin":"://","name":"__puppeteer_utility_world__","uniqueId":"4339459643211787851.7025459809305323433","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":10,"origin":"https://www.mikescerealshack.co","name":"lighthouse_isolated_context","uniqueId":"4732987172825122225.2598087000091621674","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":11,"origin":"https://www.mikescerealshack.co","name":"lighthouse_isolated_context","uniqueId":"6418786534197089440.-4447239351610692962","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Runtime.executionContextCreated","params":{"context":{"id":12,"origin":"https://www.mikescerealshack.co","name":"lighthouse_isolated_context","uniqueId":"8970596674113716809.627750559267878027","auxData":{"isDefault":false,"type":"isolated","frameId":"6B7B62084170FF8A201077D06215638B"}}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.103","blockedCookies":[],"headers":{"cache-control":"public, max-age=0, must-revalidate","date":"Fri, 13 Jan 2023 23:28:03 GMT","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1::w6s9b-1673652483745-cda98bf28e67"},"resourceIPAddressSpace":"Public","statusCode":304},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.115","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/oscar-actually.jpg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.797712},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.114","associatedCookies":[],"headers":{":authority":"www.mikescerealshack.co",":method":"GET",":path":"/logo-text.svg",":scheme":"https","accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","accept-encoding":"gzip, deflate, br","accept-language":"en-US,en;q=0.9","if-none-match":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","sec-ch-ua-mobile":"?1","sec-ch-ua-platform":"\"Android\"","sec-fetch-dest":"image","sec-fetch-mode":"no-cors","sec-fetch-site":"same-origin","user-agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":183729.797243},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.123","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.79807},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.123","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"954887","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.126","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183729.795872,"wallTime":1673652483.654436,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"loadCssAsync","scriptId":"101","url":"https://www.mikescerealshack.co/corrections","lineNumber":8,"columnNumber":16},{"functionName":"","scriptId":"101","url":"https://www.mikescerealshack.co/corrections","lineNumber":9,"columnNumber":2}]}},"redirectHasExtraInfo":false,"type":"Stylesheet","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.124","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.798338},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.124","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","content-length":"76","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.776853,"encodedDataLength":3596,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.113","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"704076","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"corrections-7a620a51252fe2c2f77b.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"c01d848a9c39b975b544438c32453febc4ead94358024112ff429c9444cc2ffb\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483750-fbf6449869c2"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.104","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.801123,"type":"Script","response":{"url":"https://events.mikescerealshack.co/js/index.js","status":200,"statusText":"OK","headers":{"Date":"Fri, 13 Jan 2023 23:27:47 GMT","Content-Encoding":"gzip","x-content-type-options":"nosniff","Server":"nginx/1.18.0 (Ubuntu)","Content-Type":"application/javascript","access-control-allow-origin":"*","cache-control":"public, max-age=86400, must-revalidate","permissions-policy":"interest-cohort=()","cross-origin-resource-policy":"cross-origin","application":"10.0.0.8"},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4e2f:830b]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.783303,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.039,"sendEnd":0.039,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.625},"responseTime":1673652467724.65,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"events.mikescerealshack.co","sanList":["events.mikescerealshack.co"],"issuer":"R3","validFrom":1668691921,"validTo":1676467920,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.104","timestamp":183729.801309,"dataLength":1321,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.105","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.801689,"type":"Stylesheet","response":{"url":"https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652467169-e2b8f92b6163","age":"3886004","etag":"W/\"84d04e63737a6f230fcdc24e0e7bc616fe9ac81f76bc8b86658341375da23396\"","x-vercel-cache":"HIT","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"08dcb440d7d83b488817.css\""},"mimeType":"text/css","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.783675,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.036,"sendEnd":0.036,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.692},"responseTime":1673652467096.503,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.105","timestamp":183729.801756,"dataLength":18126,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.126","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.798573},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.126","blockedCookies":[],"headers":{"access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"private, max-age=86400, stale-while-revalidate=604800","content-encoding":"gzip","content-type":"text/css; charset=utf-8","cross-origin-opener-policy":"same-origin-allow-popups","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Fri, 13 Jan 2023 23:27:47 GMT","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","link":"; rel=preconnect; crossorigin","server":"ESF","timing-allow-origin":"*","x-content-type-options":"nosniff","x-frame-options":"SAMEORIGIN","x-google-apps-framework-action":"Css2","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","x-google-dos-service-trace":"main:apps-themes","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"apps-themes","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32\nFRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","x-google-service":"apps-themes","x-google-session-info":"WgdKBWVuLVVT","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.103","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.802503,"type":"Font","response":{"url":"https://www.mikescerealshack.co/fonts/danielbd.woff2","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","server":"Vercel","x-vercel-id":"sfo1::w6s9b-1673652483745-cda98bf28e67","age":"3886004","x-vercel-cache":"HIT","etag":"W/\"06bcc898322e4216df7e431bf56ff8d115328273a40fe12c99e876a6201b429c\"","content-type":"font/woff2","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"danielbd.woff2\"","accept-ranges":"bytes","content-length":"35680"},"mimeType":"font/woff2","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":44,"timing":{"requestTime":183729.782687,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.088,"sendEnd":1.492,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.925},"responseTime":1673652483652.884,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.103","timestamp":183729.802571,"dataLength":35680,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.103","timestamp":183729.795659,"encodedDataLength":44,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.domContentEventFired","params":{"timestamp":183729.806067},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"DOMContentLoaded","timestamp":183729.806067},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.105","timestamp":183729.787139,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.115","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","age":"704076","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"oscar-actually.jpg\"","content-length":"122114","content-type":"image/jpeg","date":"Fri, 13 Jan 2023 23:28:03 GMT","etag":"W/\"8ab41efd51ec5c8bb4fd849ea025f526e5edd75a7fecd484609c47fcf0df4c2b\"","server":"Vercel","strict-transport-security":"max-age=63072000","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483760-a41a24b89445"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.113","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.808789,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","content-encoding":"br","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483750-fbf6449869c2","age":"704076","etag":"W/\"c01d848a9c39b975b544438c32453febc4ead94358024112ff429c9444cc2ffb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"corrections-7a620a51252fe2c2f77b.js\""},"mimeType":"application/javascript","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":147,"timing":{"requestTime":183729.78585,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.469,"sendEnd":2.762,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":15.565},"responseTime":1673652483659.756,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.113","timestamp":183729.808854,"dataLength":3328,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.104","timestamp":183729.786385,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.107","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.809234,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::dxcrq-1673652467162-e0864d2e2616","age":"3886004","etag":"W/\"a9581c07c831b6fce1af5e471c187e7094973af0ddd0ca13ff9ebe82c102ad90\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"main-1f8481d632114a408557.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.784079,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.055,"sendEnd":0.055,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.512},"responseTime":1673652467074.245,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.107","timestamp":183729.809285,"dataLength":17656,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.108","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.809587,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467164-bbcf9be4dac4","age":"3886004","etag":"W/\"0ac4a3d1cb0e60f551da7b3196efe4621671f6dc58653527d72f630798e49480\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"webpack-657a8433bac0aabd564e.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.784298,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.054,"sendEnd":0.054,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.57},"responseTime":1673652467086.881,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.108","timestamp":183729.809653,"dataLength":2351,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.109","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.809911,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467164-173fcbe3cc6c","age":"3886004","etag":"W/\"79d5b50ab14fa1af9ed2d0f4b7ae2f4f1b399372ff96d5a86052cb0e299f6a92\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"framework.9d524150d48315f49e80.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.784446,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.059,"sendEnd":0.059,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.912},"responseTime":1673652467075.567,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.109","timestamp":183729.809965,"dataLength":130277,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.110","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.810417,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467166-5877ea59f89f","age":"3886004","etag":"W/\"a7e314761795abe2ef7de0e9bedd8a4e88361d53aba48b9921bc84817e8304f5\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"commons.49455e4fa8cc3f51203f.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.78483,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.038,"sendEnd":0.038,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.656},"responseTime":1673652467082.21,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.110","timestamp":183729.810516,"dataLength":44060,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.111","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.810828,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::7v8pq-1673652467164-56bd73c4a5bf","age":"3886004","etag":"W/\"7f8a191dd3d04a3601037bd9e549fb33ca82ff67c2ee268dda8d47baffc8e24e\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_app-ef508c97234d1af96c47.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.785281,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.028,"sendEnd":0.028,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3.188},"responseTime":1673652467077.189,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.111","timestamp":183729.810882,"dataLength":1235,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.112","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.811109,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183729.785642,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.041,"sendEnd":0.041,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2.978},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.112","timestamp":183729.811165,"dataLength":67673,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.126","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.811899,"type":"Stylesheet","response":{"url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap","status":200,"statusText":"","headers":{"x-google-security-signals":"ACTION=AF,ACTION_DEBUG=actionName:Css2;class:com.google.fonts.server.css.Css2Action;path:/css2,BUILD=GOOGLE3,BUILD_DEBUG=cl:493228341,RESPONSE_TYPE=UNSAFE,RESPONSE_TYPE_DEBUG=ResponseClass:ByteSourceResponse;ResponseHandlerClass:ByteSourceResponseHandler,FRAMEWORK=APPS_FRAMEWORK,SEC_FETCH=FRAMING_ISOLATION,SEC_FETCH_DEBUG=block:false;exempt:false;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,SEC_FETCH=RESOURCE_ISOLATION_STRICT,SEC_FETCH_DEBUG=block:true;exempt:true;mode:REPORTING,HOSTNAME_VALIDATION=HOSTNAME_VALIDATION_ENFORCED,FRAMEWORK=APPS_FRAMEWORK,FRAMEWORK_DEBUG=af_config:com.google.fonts.server.common.CommonServerModule;af_config_hashed:bcfae741e379a885f2ab2cf83ebe6d32, FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:485838367","content-encoding":"gzip","x-google-gfe-service-trace":"apps-themes","x-google-gfe-response-body-transformations":"dechunked,chunked","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-frame-options":"SAMEORIGIN","content-type":"text/css; charset=utf-8","access-control-allow-origin":"*","cache-control":"private, max-age=86400, stale-while-revalidate=604800","x-google-gfe-backend-request-info":"eid=8-jBY_zCEdnJ2_APk8ybmAw","link":"; rel=preconnect; crossorigin","x-google-dos-service-trace":"main:apps-themes","x-google-backends":"[::1]:49379,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-session-info":"WgdKBWVuLVVT","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/px/borg/px/bns/apps-themes/themes-prod.server/15","expires":"Fri, 13 Jan 2023 23:27:47 GMT","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","x-google-service":"apps-themes","x-xss-protection":"0","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s42/25,Mentat oracle: [2002:a05:7308:7587::]:9880","x-google-shellfish-status":"CA0gBEBG","last-modified":"Fri, 13 Jan 2023 22:57:44 GMT","server":"ESF","cross-origin-opener-policy":"same-origin-allow-popups","x-google-esf-cloud-client-params":"backend_service_name: \"tech.frontend.HTTPService.appsframework.googleapis.com\" backend_fully_qualified_method: \"tech.frontend.HTTPService.Request\"","x-google-apps-framework-action":"Css2","x-google-gfe-request-trace":"acsfoj5:443,/bns/px/borg/px/bns/apps-themes/themes-prod.server/15,acsfoj5:443","timing-allow-origin":"*"},"mimeType":"text/css","connectionReused":false,"connectionId":0,"remoteIPAddress":"[2607:f8b0:4005:80f::200a]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.798573,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.033,"sendEnd":0.033,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3.574},"responseTime":1673652467202.03,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"upload.video.google.com","sanList":["upload.video.google.com","*.clients.google.com","*.docs.google.com","*.drive.google.com","*.gdata.youtube.com","*.googleapis.com","*.photos.google.com","*.youtube-3rd-party.com","upload.google.com","*.upload.google.com","upload.youtube.com","*.upload.youtube.com","uploads.stage.gdata.youtube.com","bg-call-donation.goog","bg-call-donation-alpha.goog","bg-call-donation-canary.goog","bg-call-donation-dev.goog"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.126","timestamp":183729.811963,"dataLength":3282,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.126","timestamp":183729.802967,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.123","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.812537,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::2nj9v-1673652467183-53ab8d075760","age":"954887","etag":"W/\"66fdf0af365e900e2bb5748554c4afcc76bfbb1d4698f26886d4b76017a394ad\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_buildManifest.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.79807,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.063,"sendEnd":0.063,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.702},"responseTime":1673652467091.398,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.123","timestamp":183729.812587,"dataLength":1545,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.124","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.812836,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","server":"Vercel","x-vercel-id":"sfo1:sfo1::f44nh-1673652467183-a0cce4f6ade7","age":"3886004","etag":"W/\"653f3e53e89b4f8548ff86c19e92bb3c6b84b6be7485a320b1e00893ed877479\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"_ssgManifest.js\"","accept-ranges":"bytes","content-length":"76"},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.798338,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.033,"sendEnd":0.033,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.999},"responseTime":1673652467090.852,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.124","timestamp":183729.81289,"dataLength":76,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.115","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.813297,"type":"Image","response":{"url":"https://www.mikescerealshack.co/oscar-actually.jpg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","strict-transport-security":"max-age=63072000","server":"Vercel","x-vercel-id":"sfo1:sfo1::w6s9b-1673652483760-a41a24b89445","age":"704076","etag":"W/\"8ab41efd51ec5c8bb4fd849ea025f526e5edd75a7fecd484609c47fcf0df4c2b\"","x-vercel-cache":"HIT","content-type":"image/jpeg","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"oscar-actually.jpg\"","accept-ranges":"bytes","content-length":"122114"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":150,"timing":{"requestTime":183729.797712,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1.068,"sendEnd":1.649,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.013},"responseTime":1673652483667.161,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.115","timestamp":183729.813344,"dataLength":19956,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.114","blockedCookies":[],"headers":{"cache-control":"public, max-age=0, must-revalidate","date":"Fri, 13 Jan 2023 23:28:03 GMT","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1::kq2v8-1673652483760-6503f26a3851"},"resourceIPAddressSpace":"Public","statusCode":304},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.113","timestamp":183729.816488,"dataLength":0,"encodedDataLength":1503},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.113","timestamp":183729.801939,"encodedDataLength":1650,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.114","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.816773,"type":"Image","response":{"url":"https://www.mikescerealshack.co/logo-text.svg","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:28:03 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1::kq2v8-1673652483760-6503f26a3851","age":"3886004","x-vercel-cache":"HIT","etag":"W/\"c97ed597d5b2d6ccd185ee7954fd0471c603baaf4086f34dccd10b7e7e0bf620\"","content-type":"image/svg+xml","access-control-allow-origin":"*","cache-control":"public, max-age=0, must-revalidate","content-disposition":"inline; filename=\"logo-text.svg\""},"mimeType":"image/svg+xml","connectionReused":true,"connectionId":65,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":44,"timing":{"requestTime":183729.797243,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":2.017,"sendEnd":3.073,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":11.857},"responseTime":1673652483667.053,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[{"status":"Verified","origin":"Embedded in certificate","logDescription":"Google 'Argon2023' log","logId":"E83ED0DA3EF5063532E75728BC896BC903D3CBD1116BECEB69E1777D6D06BD6E","timestamp":1672808002224,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"304502205C5502DEECF7BAC2C759203A6CB41D2F1A8A157D7F7F539FDE863EBEC7352E20022100A225A60434BF1C259CC9494FFC748C3C0EBE3ED9E468EBFB3C0CA0FB83C152F5"},{"status":"Verified","origin":"Embedded in certificate","logDescription":"Let's Encrypt 'Oak2023' log","logId":"B73EFB24DF9C4DBA75F239C5BA58F46C5DFC42CF7A9F35C49E1D098125EDB499","timestamp":1672808002731,"hashAlgorithm":"SHA-256","signatureAlgorithm":"ECDSA","signatureData":"3045022100FF06AD574FEB4C9ABE0C41DEC249D8F5F72524BC21BA4C632F16ECB6C84B6AC602201935D677BD399713C70EAB2436AE2E43704F07F4BFD95505E8BB53A82ADAA08B"}],"certificateTransparencyCompliance":"compliant","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.114","timestamp":183729.816831,"dataLength":53947,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.114","timestamp":183729.809731,"encodedDataLength":44,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.108","timestamp":183729.788336,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.107","timestamp":183729.788142,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.111","timestamp":183729.789875,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.110","timestamp":183729.789565,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.123","timestamp":183729.802502,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.157","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.824734},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.157","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7816","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075834023274","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Unknown","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.151","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.824943},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.151","blockedCookies":[],"headers":{"accept-ranges":"bytes","access-control-allow-origin":"*","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","cache-control":"public, max-age=31536000","content-length":"7884","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","content-type":"font/woff2","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","cross-origin-resource-policy":"cross-origin","date":"Fri, 13 Jan 2023 23:27:47 GMT","expires":"Sat, 13 Jan 2024 23:27:47 GMT","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","server":"sffe","timing-allow-origin":"*","x-content-type-options":"nosniff","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","x-google-data-version":"501947275","x-google-dos-service-trace":"main:static-content","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","x-google-gfe-service-trace":"static-content-hipri","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","x-google-scs-repo":"apps-themes/scs_shared","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","x-google-scs-row-timestamp":"1651075620475600","x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-service":"static-content-hipri","x-google-shellfish-status":"CA0gBEBG","x-xss-protection":"0"},"resourceIPAddressSpace":"Unknown","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.157","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183729.824308,"wallTime":1673652483.682849,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.151","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://fonts.googleapis.com/","Origin":"https://www.mikescerealshack.co","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":183729.824542,"wallTime":1673652483.68307,"initiator":{"type":"parser","url":"https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap"},"redirectHasExtraInfo":false,"type":"Font","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"32033.115","newPriority":"High","timestamp":183729.826603},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstPaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstContentfulPaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstImagePaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstMeaningfulPaintCandidate","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.124","timestamp":183729.802711,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.112","timestamp":183729.790457,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.109","timestamp":183729.791339,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.115","timestamp":183729.833214,"dataLength":102158,"encodedDataLength":122204},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.115","timestamp":183729.827082,"encodedDataLength":122354,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.157","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.836834,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075834023274","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY4PjHP6K6tkPuoCSuA8","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7816","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:10:34 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/452,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":false,"connectionId":0,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.824734,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.03,"sendEnd":0.03,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.907},"responseTime":1673652467383.561,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.157","timestamp":183729.836892,"dataLength":7816,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.157","timestamp":183729.826251,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.151","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.852082,"type":"Font","response":{"url":"https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2","status":200,"statusText":"","headers":{"x-google-security-signals":"FRAMEWORK=HTTPSERVER2,BUILD=GOOGLE3,BUILD_DEBUG=cl:500578372","x-google-gfe-service-trace":"static-content-hipri","content-security-policy-report-only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/apps-themes","x-google-scs-row-timestamp":"1651075620475600","x-google-gfe-response-code-details-trace":"response_code_set_by_backend","cross-origin-resource-policy":"cross-origin","x-google-scs-row-key":"/external_content/fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2:static-on-bigtable/base:scs_shared:0","content-type":"font/woff2","access-control-allow-origin":"*","x-google-data-version":"501947275","cache-control":"public, max-age=31536000","x-google-gfe-backend-request-info":"eid=8-jBY9PiHIKq6tkP_9uLkAI","expires":"Sat, 13 Jan 2024 23:27:47 GMT","x-google-backends":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,/bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64","date":"Fri, 13 Jan 2023 23:27:47 GMT","x-content-type-options":"nosniff","x-google-dos-service-trace":"main:static-content","x-google-gfe-version":"2.807.1","x-google-netmon-label":"/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532","alt-svc":"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"","content-length":"7884","x-xss-protection":"0","x-google-service":"static-content-hipri","x-google-gfe-handshake-trace":"GFE: /bns/ncsfoa/borg/ncsfoa/bns/gfe-prod/blue-layer1-gfe.nuq04s44/64,Mentat oracle: [2002:a05:7308:db::]:9819","x-google-shellfish-status":"CA0gBEBG","last-modified":"Wed, 27 Apr 2022 16:07:00 GMT","server":"sffe","cross-origin-opener-policy":"same-origin; report-to=\"apps-themes\"","report-to":"{\"group\":\"apps-themes\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/apps-themes\"}]}","x-google-gfe-request-trace":"acnuqb2:443,/bns/dy/borg/dy/bns/static-content-sffe-server/prod.sffe-server/532,acnuqb2:443","accept-ranges":"bytes","timing-allow-origin":"*","x-google-scs-repo":"apps-themes/scs_shared"},"mimeType":"font/woff2","connectionReused":false,"connectionId":0,"remoteIPAddress":"[2607:f8b0:4005:802::2003]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.824943,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.021,"sendEnd":0.021,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1.023},"responseTime":1673652467381.674,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"AES_128_GCM","certificateId":0,"subjectName":"*.gstatic.com","sanList":["*.gstatic.com","gstatic.com","*.metric.gstatic.com","kn.dev","*.kn.dev"],"issuer":"GTS CA 1C3","validFrom":1670833157,"validTo":1678090756,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":1027,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.151","timestamp":183729.852152,"dataLength":7884,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.navigatedWithinDocument","params":{"frameId":"6B7B62084170FF8A201077D06215638B","url":"https://www.mikescerealshack.co/corrections"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.151","timestamp":183729.826392,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.loadEventFired","params":{"timestamp":183729.875973},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"load","timestamp":183729.875973},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.164","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.88122,"wallTime":1673652483.739797,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"107","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"12","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.165","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.881533,"wallTime":1673652483.74009,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8186},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7946},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7907}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7858},{"functionName":"value","scriptId":"107","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"12","debuggerId":"3576047070098267201.7300265271152525584"}}}}},"redirectHasExtraInfo":false,"type":"Other","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.164","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.88181},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.164","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"3886004","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.165","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.882004},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.165","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.164","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.882819,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::glk7q-1673652467166-b61a85b677a9","age":"3886004","etag":"W/\"45fb84ee6c26a078862872dd2d86e5f1f4fa0a4e653c5a052ac1c2d9a1f68dbb\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.88181,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.041,"sendEnd":0.041,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.424},"responseTime":1673652467087.727,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.165","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.883153,"type":"Other","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":0,"timing":{"requestTime":183729.882004,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.028,"sendEnd":0.028,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.499},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.164","timestamp":183729.883052,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.165","timestamp":183729.883192,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"32033.166","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","documentURL":"https://www.mikescerealshack.co/corrections","request":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","method":"GET","headers":{"sec-ch-ua":"\"Chromium\";v=\"98\", \"Google Chrome\";v=\"98\", \"Lighthouse\";v=\"9.5.0\"","Referer":"https://www.mikescerealshack.co/corrections","sec-ch-ua-mobile":"?1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","sec-ch-ua-platform":"\"Android\""},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":183729.884658,"wallTime":1673652483.74325,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6471},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6273},{"functionName":"p","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":6489},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7320},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"u","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":5029},{"functionName":"loadRoute","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":7085},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8276},{"functionName":"cbWrap","scriptId":"99","url":"_lighthouse-eval.js","lineNumber":27,"columnNumber":6}],"parent":{"description":"requestIdleCallback","callFrames":[{"functionName":"window.requestIdleCallback","scriptId":"99","url":"_lighthouse-eval.js","lineNumber":29,"columnNumber":11},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8254}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"prefetch","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":8224},{"functionName":"value","scriptId":"107","url":"https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js","lineNumber":0,"columnNumber":17602},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27023},{"functionName":"l","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32437},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32225},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":32862},{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43771},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"r","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43842},{"functionName":"c","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43982},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":44041},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":43922},{"functionName":"","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":27106},{"functionName":"d.forEach.n.","scriptId":"110","url":"https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js","lineNumber":0,"columnNumber":39680},{"functionName":"l","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":53691},{"functionName":"","scriptId":"112","url":"https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js","lineNumber":0,"columnNumber":54577},{"functionName":"Ii","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":116312},{"functionName":"t.unstable_runWithPriority","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":3874},{"functionName":"$l","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":56483},{"functionName":"Oi","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115773},{"functionName":"","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":115684},{"functionName":"D","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":2933},{"functionName":"k.port1.onmessage","scriptId":"109","url":"https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js","lineNumber":0,"columnNumber":1655}],"parentId":{"id":"12","debuggerId":"3576047070098267201.7300265271152525584"}}}}}}},"redirectHasExtraInfo":false,"type":"Script","frameId":"6B7B62084170FF8A201077D06215638B","hasUserGesture":true},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"32033.166","associatedCookies":[],"headers":{},"connectTiming":{"requestTime":183729.885101},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Public","privateNetworkRequestPolicy":"PreflightWarn"}},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"32033.166","blockedCookies":[],"headers":{"access-control-allow-origin":"*","age":"747662","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\"","content-encoding":"br","content-type":"application/javascript; charset=utf-8","date":"Fri, 13 Jan 2023 23:27:47 GMT","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","server":"Vercel","x-vercel-cache":"HIT","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889"},"resourceIPAddressSpace":"Public","statusCode":200},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"32033.166","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","timestamp":183729.885796,"type":"Script","response":{"url":"https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js","status":200,"statusText":"","headers":{"date":"Fri, 13 Jan 2023 23:27:47 GMT","content-encoding":"br","server":"Vercel","x-vercel-id":"sfo1:sfo1::5kcpk-1673652467164-d858713cb889","age":"747662","etag":"W/\"1c9d472b9ba6fad25547783940443b6c8b2dc44ad6d51e3bee0e3f32aafbff66\"","x-vercel-cache":"HIT","content-type":"application/javascript; charset=utf-8","access-control-allow-origin":"*","cache-control":"public,max-age=31536000,immutable","content-disposition":"inline; filename=\"index-37980adf97404e76e41a.js\""},"mimeType":"application/javascript","connectionReused":false,"connectionId":0,"remoteIPAddress":"[64:ff9b::4c4c:15a4]","remotePort":443,"fromDiskCache":true,"fromServiceWorker":false,"fromPrefetchCache":true,"encodedDataLength":0,"timing":{"requestTime":183729.885101,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.042,"sendEnd":0.042,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":0.307},"responseTime":1673652467077.254,"protocol":"h2","alternateProtocolUsage":"unspecifiedReason","securityState":"secure","securityDetails":{"protocol":"TLS 1.3","keyExchange":"","keyExchangeGroup":"X25519","cipher":"CHACHA20_POLY1305","certificateId":0,"subjectName":"www.mikescerealshack.co","sanList":["www.mikescerealshack.co"],"issuer":"R3","validFrom":1672804402,"validTo":1680580401,"signedCertificateTimestampList":[],"certificateTransparencyCompliance":"unknown","serverSignatureAlgorithm":2052,"encryptedClientHello":false}},"hasExtraInfo":true,"frameId":"6B7B62084170FF8A201077D06215638B"},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"32033.166","timestamp":183729.885852,"dataLength":1856,"encodedDataLength":0},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"32033.166","timestamp":183729.885672,"encodedDataLength":0,"shouldReportCorbBlocking":false},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"networkAlmostIdle","timestamp":183729.833551},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"firstMeaningfulPaint","timestamp":183729.83243},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"6B7B62084170FF8A201077D06215638B","loaderId":"601E0E290BD0C9DA5B66BD8FAC1FA526","name":"networkIdle","timestamp":183729.886111},"sessionId":"864931A58C1B969F13A72A7A02D1118D","targetType":"page"} ] diff --git a/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json b/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json index 1cfa67510599..f9a4ababbc4e 100644 --- a/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json +++ b/core/test/fixtures/fraggle-rock/reports/sample-flow-result.json @@ -744,6 +744,7 @@ "items": [ { "url": "https://www.mikescerealshack.co/", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 0, "networkRequestTime": 1.3729999959468842, @@ -759,6 +760,7 @@ }, { "url": "https://www.mikescerealshack.co/fonts/danielbd.woff2", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 211.1089999973774, "networkRequestTime": 212.9370000064373, @@ -775,6 +777,7 @@ }, { "url": "https://events.mikescerealshack.co/js/index.js", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 212.625, "networkRequestTime": 213.18099999427795, @@ -790,6 +793,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 212.87900000810623, "networkRequestTime": 214.08300000429153, @@ -806,6 +810,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 213.7660000026226, "networkRequestTime": 214.3289999961853, @@ -822,6 +827,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 214.0290000140667, "networkRequestTime": 214.58300000429153, @@ -838,6 +844,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 214.24799999594688, "networkRequestTime": 214.9389999806881, @@ -854,6 +861,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 214.44100001454353, "networkRequestTime": 215.14599999785423, @@ -870,6 +878,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 214.69799998402596, "networkRequestTime": 215.4990000128746, @@ -886,6 +895,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 214.87099999189377, "networkRequestTime": 215.7180000245571, @@ -902,6 +912,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 215.05300000309944, "networkRequestTime": 215.88400000333786, @@ -918,6 +929,7 @@ }, { "url": "https://www.mikescerealshack.co/logo-text.svg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 215.23900002241135, "networkRequestTime": 232.64200001955032, @@ -933,6 +945,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 215.49300000071526, "networkRequestTime": 232.96400001645088, @@ -948,6 +961,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 215.58100000023842, "networkRequestTime": 233.22900000214577, @@ -963,6 +977,7 @@ }, { "url": "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 230.8730000257492, "networkRequestTime": 233.49599999189377, @@ -978,6 +993,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 388.6060000061989, "networkRequestTime": 389.19600000977516, @@ -993,6 +1009,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 388.89800000190735, "networkRequestTime": 389.40000000596046, @@ -1008,6 +1025,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 389.1260000169277, "networkRequestTime": 389.6380000114441, @@ -1023,6 +1041,7 @@ }, { "url": "https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 513.7750000059605, "networkRequestTime": 516.3720000088215, @@ -1038,6 +1057,7 @@ }, { "url": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 515.016999989748, "networkRequestTime": 516.6100000143051, @@ -1053,6 +1073,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/9ea7d3ba8dd80c65c50028121847762825088b49.dc477066508a83415fce.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 561.9870000183582, "networkRequestTime": 562.608000010252, @@ -1068,6 +1089,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/scenes/%5Bseason%5D/%5Bepisode%5D/%5Bscene%5D-526fe33be891a56314a3.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 562.5320000052452, "networkRequestTime": 563.0640000104904, @@ -1083,6 +1105,7 @@ }, { "url": "https://www.mikescerealshack.co/favicon.png", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 920.8770000040531, "networkRequestTime": 921.8449999988079, @@ -8044,6 +8067,7 @@ "items": [ { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/search-915c07eb7d90925bcf29.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 0, "networkRequestTime": 1.0349999964237213, @@ -8058,6 +8082,7 @@ }, { "url": "https://www.mikescerealshack.co/logo-text.svg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 628.4039999842644, "networkRequestTime": 629.9700000286102, @@ -8072,6 +8097,7 @@ }, { "url": "https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 662.1890000104904, "networkRequestTime": 662.136000007391, @@ -8086,6 +8112,7 @@ }, { "url": "https://mnl4bjjsnz-dsn.algolia.net/1/indexes/dev_OFFICE_SCENES/query", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 660.1769999861717, "networkRequestTime": 926.9200000166893, @@ -8100,6 +8127,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 676.0000000298023, "networkRequestTime": 677.0890000164509, @@ -8114,6 +8142,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 677.4530000090599, "networkRequestTime": 678.9580000042915, @@ -8128,6 +8157,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 686.1900000274181, "networkRequestTime": 686.6560000181198, @@ -8142,6 +8172,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/privacy-864d3895f3c3722acef2.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1276.261000007391, "networkRequestTime": 1277.975999981165, @@ -8156,6 +8187,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/terms-0236318e86139dd7d7f2.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1327.3969999849796, "networkRequestTime": 1328.5049999952316, @@ -8170,6 +8202,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s8/e13/128w/81d89db1bf3d43b5b21f813d2f2a9777.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1803.9340000152588, "networkRequestTime": 1804.8250000178814, @@ -8184,6 +8217,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s3/e3/128w/9b3031eb3988ba363fe946929a79e016.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1804.6439999938011, "networkRequestTime": 1805.761000007391, @@ -8198,6 +8232,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s3/e3/128w/793a408ca63a660b5d7aa1a41ac126ca.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1806.08599999547, "networkRequestTime": 1806.3939999938011, @@ -8212,6 +8247,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s7/e11/128w/5d1df07b1741f4c3e66ed20ef00265f5.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1806.6739999949932, "networkRequestTime": 1807.3720000088215, @@ -8226,6 +8262,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s8/e13/128w/b997cdb40263ff124e2a245c5e86a9a3.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1807.1290000081062, "networkRequestTime": 1808.3920000195503, @@ -8240,6 +8277,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s8/e3/128w/08b3049589ca7ae688b0f771f9730caf.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1808.511000007391, "networkRequestTime": 1808.972000002861, @@ -8254,6 +8292,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s8/e13/128w/f5c5012a2afa2ac6b190dcd68306dbac.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1809.1910000145435, "networkRequestTime": 2538.8779999911785, @@ -8268,6 +8307,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s9/e9/128w/5fbc916d0fffb01af1225d4ec2ab001d.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1809.32800000906, "networkRequestTime": 2539.0060000121593, @@ -8282,6 +8322,7 @@ }, { "url": "https://cdn.mikescerealshack.co/frames/s9/e9/128w/558dc2f7d9c947e5445fb3f1838cb62c.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 1810.6270000040531, "networkRequestTime": 2539.043000012636, @@ -16646,6 +16687,7 @@ "items": [ { "url": "https://www.mikescerealshack.co/corrections", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 0, "networkRequestTime": 2.5069999992847443, @@ -16661,6 +16703,7 @@ }, { "url": "https://www.mikescerealshack.co/fonts/danielbd.woff2", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 19.991999983787537, "networkRequestTime": 20.42800000309944, @@ -16677,6 +16720,7 @@ }, { "url": "https://events.mikescerealshack.co/js/index.js", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 20.250999987125397, "networkRequestTime": 21.04399999976158, @@ -16692,6 +16736,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/css/08dcb440d7d83b488817.css", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 20.854000002145767, "networkRequestTime": 21.41600000858307, @@ -16708,6 +16753,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/main-1f8481d632114a408557.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 21.12900000810623, "networkRequestTime": 21.819999992847443, @@ -16724,6 +16770,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/webpack-657a8433bac0aabd564e.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 21.44200000166893, "networkRequestTime": 22.039000004529953, @@ -16740,6 +16787,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/framework.9d524150d48315f49e80.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 21.631999999284744, "networkRequestTime": 22.1870000064373, @@ -16756,6 +16804,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/commons.49455e4fa8cc3f51203f.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 21.83399999141693, "networkRequestTime": 22.57099997997284, @@ -16772,6 +16821,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/_app-ef508c97234d1af96c47.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 22.13899999856949, "networkRequestTime": 23.02199998497963, @@ -16788,6 +16838,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 22.348999977111816, "networkRequestTime": 23.38299998641014, @@ -16804,6 +16855,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/corrections-7a620a51252fe2c2f77b.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 22.527999997138977, "networkRequestTime": 23.590999990701675, @@ -16820,6 +16872,7 @@ }, { "url": "https://www.mikescerealshack.co/logo-text.svg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 22.692999988794327, "networkRequestTime": 34.983999997377396, @@ -16835,6 +16888,7 @@ }, { "url": "https://www.mikescerealshack.co/oscar-actually.jpg", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 22.78099998831749, "networkRequestTime": 35.453000009059906, @@ -16850,6 +16904,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_buildManifest.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 23, "networkRequestTime": 35.81099998950958, @@ -16865,6 +16920,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/t5QnfQSErVZVsTAuFcBWI/_ssgManifest.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 23.074000000953674, "networkRequestTime": 36.0789999961853, @@ -16880,6 +16936,7 @@ }, { "url": "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 33.612999975681305, "networkRequestTime": 36.31400001049042, @@ -16895,6 +16952,7 @@ }, { "url": "https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 62.04899999499321, "networkRequestTime": 62.474999994039536, @@ -16910,6 +16968,7 @@ }, { "url": "https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 62.282999992370605, "networkRequestTime": 62.68400001525879, @@ -16925,6 +16984,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/1aeab0175d4c4d823d7a78205bceb5dd9cd36d32.a629f28ec97ae6e480bf.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 118.96099999547005, "networkRequestTime": 119.55099999904633, @@ -16940,6 +17000,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 119.27399998903275, "networkRequestTime": 119.74500000476837, @@ -16955,6 +17016,7 @@ }, { "url": "https://www.mikescerealshack.co/_next/static/chunks/pages/index-37980adf97404e76e41a.js", + "sessionTargetType": "page", "protocol": "h2", "rendererStartTime": 122.39899998903275, "networkRequestTime": 122.84199997782707, diff --git a/core/test/gather/driver/target-manager-test.js b/core/test/gather/driver/target-manager-test.js index 4ec3de42bd17..5a32714b2e0b 100644 --- a/core/test/gather/driver/target-manager-test.js +++ b/core/test/gather/driver/target-manager-test.js @@ -306,16 +306,19 @@ describe('TargetManager', () => { method: 'DOM.documentUpdated', params: undefined, sessionId: 'root', + targetType: 'page', }); expect(allListener).toHaveBeenCalledWith({ method: 'Debugger.scriptParsed', params: {script: 'details'}, sessionId: 'root', + targetType: 'page', }); expect(allListener).toHaveBeenCalledWith({ method: 'Animation.animationCreated', params: {id: 'animated'}, sessionId: 'iframe', + targetType: 'iframe', }); }); diff --git a/core/test/gather/gatherers/bf-cache-failures-test.js b/core/test/gather/gatherers/bf-cache-failures-test.js index 2b15107a0d47..52c6b97b6509 100644 --- a/core/test/gather/gatherers/bf-cache-failures-test.js +++ b/core/test/gather/gatherers/bf-cache-failures-test.js @@ -155,6 +155,7 @@ describe('BFCacheFailures', () => { context.dependencies.DevtoolsLog = [{ method: 'Page.backForwardCacheNotUsed', params: createMockBfCacheEvent(), + targetType: 'page', }]; const gatherer = new BFCacheFailures(); diff --git a/core/test/gather/gatherers/dobetterweb/optimized-images-test.js b/core/test/gather/gatherers/dobetterweb/optimized-images-test.js index b3f86f1192eb..1064ac6ac98e 100644 --- a/core/test/gather/gatherers/dobetterweb/optimized-images-test.js +++ b/core/test/gather/gatherers/dobetterweb/optimized-images-test.js @@ -5,6 +5,7 @@ */ import OptimizedImages from '../../../../gather/gatherers/dobetterweb/optimized-images.js'; +import {NetworkRequest} from '../../../../lib/network-request.js'; import {createMockContext} from '../../../gather/mock-driver.js'; let context = createMockContext(); @@ -68,13 +69,13 @@ const traceData = { }, { requestId: '1', - url: 'http://gmail.com/image.jpg', + url: 'http://gmail.com/image-oopif.jpg', mimeType: 'image/jpeg', resourceSize: 15000, transferSize: 20000, resourceType: 'Image', finished: true, - sessionId: 'oopif', // ignore for being an oopif + sessionTargetType: 'iframe', // ignore for being an oopif }, { requestId: '1', @@ -103,7 +104,7 @@ const traceData = { transferSize: 20000, finished: true, }, - ], + ].map((record) => Object.assign(new NetworkRequest(), record)), }; describe('Optimized images', () => { @@ -186,7 +187,7 @@ describe('Optimized images', () => { resourceType: 'Image', finished: true, }, - ], + ].map((record) => Object.assign(new NetworkRequest(), record)), }; const artifact = await optimizedImages.afterPass(context, traceData); @@ -205,7 +206,7 @@ describe('Optimized images', () => { resourceType: 'Image', finished: true, }, - ], + ].map((record) => Object.assign(new NetworkRequest(), record)), }; const artifact = await optimizedImages.afterPass(context, traceData); diff --git a/core/test/gather/gatherers/dobetterweb/response-compression-test.js b/core/test/gather/gatherers/dobetterweb/response-compression-test.js index 7c8145da060a..5d6dfd5908be 100644 --- a/core/test/gather/gatherers/dobetterweb/response-compression-test.js +++ b/core/test/gather/gatherers/dobetterweb/response-compression-test.js @@ -4,6 +4,7 @@ * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ +import {NetworkRequest} from '../../../../lib/network-request.js'; import {createMockContext, mockDriverSubmodules} from '../../../gather/mock-driver.js'; const mocks = await mockDriverSubmodules(); @@ -55,7 +56,7 @@ const networkRecords = [ finished: true, }, { - url: 'http://google.com/index.json', + url: 'http://google.com/index-oopif.json', statusCode: 200, mimeType: 'application/json', requestId: 27, @@ -65,7 +66,7 @@ const networkRecords = [ responseHeaders: [], content: '1234567', finished: true, - sessionId: 'oopif', // ignore for being from oopif + sessionTargetType: 'iframe', // ignore for being from oopif }, { url: 'http://google.com/index.json', @@ -115,7 +116,7 @@ const networkRecords = [ content: 'bbbbbbbb', finished: true, }, -]; +].map((record) => Object.assign(new NetworkRequest(), record)); describe('Optimized responses', () => { let context; diff --git a/core/test/gather/gatherers/dobetterweb/tags-blocking-first-paint-test.js b/core/test/gather/gatherers/dobetterweb/tags-blocking-first-paint-test.js index 627a1a47e7d2..4e0f12e514fa 100644 --- a/core/test/gather/gatherers/dobetterweb/tags-blocking-first-paint-test.js +++ b/core/test/gather/gatherers/dobetterweb/tags-blocking-first-paint-test.js @@ -6,6 +6,7 @@ import TagsBlockingFirstPaint from '../../../../gather/gatherers/dobetterweb/tags-blocking-first-paint.js'; +import {NetworkRequest} from '../../../../lib/network-request.js'; import {createMockContext} from '../../../gather/mock-driver.js'; let tagsBlockingFirstPaint; @@ -91,7 +92,7 @@ const traceData = { isLinkPreload: false, initiator: {type: 'parser'}, }, - ], + ].map((record) => Object.assign(new NetworkRequest(), record)), }; describe('First paint blocking tags', () => { diff --git a/core/test/gather/gatherers/script-elements-test.js b/core/test/gather/gatherers/script-elements-test.js index 6039f0b23795..022e41bbcdf4 100644 --- a/core/test/gather/gatherers/script-elements-test.js +++ b/core/test/gather/gatherers/script-elements-test.js @@ -84,7 +84,7 @@ describe('_getArtifact', () => { networkRecords = [ mainDocument, mockRecord({url: 'https://example.com/script.js', requestId: '1'}), - mockRecord({url: 'https://oopif.com/script.js', requestId: '2', sessionId: 'OOPIF'}), + mockRecord({url: 'https://oopif.com/script.js', requestId: '2', sessionTargetType: 'iframe'}), ]; // OOPIF would not produce script element scriptElements = [ diff --git a/core/test/lib/network-recorder-test.js b/core/test/lib/network-recorder-test.js index ad323c89884d..a09388ecb775 100644 --- a/core/test/lib/network-recorder-test.js +++ b/core/test/lib/network-recorder-test.js @@ -182,33 +182,16 @@ describe('network recorder', function() { }); }); - it('should set the source of network records', () => { + it('should set sessionId and sessionTargetType of network records', () => { const devtoolsLogs = networkRecordsToDevtoolsLog([ - {url: 'http://example.com'}, - {url: 'http://iframe.com'}, - {url: 'http://other-iframe.com'}, + {url: 'http://example.com', sessionId: undefined, sessionTargetType: 'page'}, + {url: 'http://iframe.com', sessionId: 'session2', sessionTargetType: 'iframe'}, ]); - const requestId1 = devtoolsLogs.find( - log => log.params.request && log.params.request.url === 'http://iframe.com' - ).params.requestId; - const requestId2 = devtoolsLogs.find( - log => log.params.request && log.params.request.url === 'http://other-iframe.com' - ).params.requestId; - - for (const log of devtoolsLogs) { - if (log.params.requestId === requestId1) log.sessionId = '1'; - - if (log.params.requestId === requestId2 && log.method === 'Network.loadingFinished') { - log.sessionId = '2'; - } - } - const records = NetworkRecorder.recordsFromLogs(devtoolsLogs); expect(records).toMatchObject([ - {url: 'http://example.com', sessionId: undefined}, - {url: 'http://iframe.com', sessionId: '1'}, - {url: 'http://other-iframe.com', sessionId: '2'}, + {url: 'http://example.com', sessionTargetType: 'page', sessionId: undefined}, + {url: 'http://iframe.com', sessionTargetType: 'iframe', sessionId: 'session2'}, ]); }); diff --git a/core/test/network-records-to-devtools-log.js b/core/test/network-records-to-devtools-log.js index 78c7b068d2dd..40654e667300 100644 --- a/core/test/network-records-to-devtools-log.js +++ b/core/test/network-records-to-devtools-log.js @@ -244,6 +244,8 @@ function getRequestWillBeSentEvent(networkRecord, index, normalizedTiming) { frameId: networkRecord.frameId || `${idBase}.1`, redirectResponse: networkRecord.redirectResponse, }, + targetType: 'sessionTargetType' in networkRecord ? networkRecord.sessionTargetType : 'page', + sessionId: networkRecord.sessionId, }; } @@ -257,6 +259,8 @@ function getRequestServedFromCacheEvent(networkRecord, index) { params: { requestId: getBaseRequestId(networkRecord) || `${idBase}.${index}`, }, + targetType: 'sessionTargetType' in networkRecord ? networkRecord.sessionTargetType : 'page', + sessionId: networkRecord.sessionId, }; } @@ -291,6 +295,8 @@ function getResponseReceivedEvent(networkRecord, index, normalizedTiming) { }, frameId: networkRecord.frameId || `${idBase}.1`, }, + targetType: 'sessionTargetType' in networkRecord ? networkRecord.sessionTargetType : 'page', + sessionId: networkRecord.sessionId, }; } @@ -307,6 +313,8 @@ function getDataReceivedEvent(networkRecord, index) { encodedDataLength: networkRecord.transferSize === undefined ? 0 : networkRecord.transferSize, }, + targetType: 'sessionTargetType' in networkRecord ? networkRecord.sessionTargetType : 'page', + sessionId: networkRecord.sessionId, }; } @@ -325,6 +333,8 @@ function getLoadingFinishedEvent(networkRecord, index, normalizedTiming) { encodedDataLength: networkRecord.transferSize === undefined ? 0 : networkRecord.transferSize, }, + targetType: 'sessionTargetType' in networkRecord ? networkRecord.sessionTargetType : 'page', + sessionId: networkRecord.sessionId, }; } @@ -343,6 +353,8 @@ function getLoadingFailedEvent(networkRecord, index, normalizedTiming) { type: networkRecord.resourceType || undefined, errorText: networkRecord.localizedFailDescription || 'Request failed', }, + targetType: 'sessionTargetType' in networkRecord ? networkRecord.sessionTargetType : 'page', + sessionId: networkRecord.sessionId, }; } diff --git a/core/test/results/artifacts/defaultPass.devtoolslog.json b/core/test/results/artifacts/defaultPass.devtoolslog.json index f07918606eb9..74c950aa4c8d 100644 --- a/core/test/results/artifacts/defaultPass.devtoolslog.json +++ b/core/test/results/artifacts/defaultPass.devtoolslog.json @@ -1,303 +1,303 @@ [ - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"commit","timestamp":8696.548037}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"DOMContentLoaded","timestamp":8696.548142}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"load","timestamp":8696.548385}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkAlmostIdle","timestamp":8696.548693}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkIdle","timestamp":8696.548693}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","method":"GET","headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8696.702394,"wallTime":1631045473.028791,"initiator":{"type":"other"},"type":"Document","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Sec-Fetch-Site":"none","Sec-Fetch-Mode":"navigate","Sec-Fetch-User":"?1","Sec-Fetch-Dest":"document","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8696.703416}}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkAlmostIdle","timestamp":8696.548693}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkIdle","timestamp":8696.548693}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/html; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/html; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.273542,"type":"Document","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/html; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"mimeType":"text/html","connectionReused":false,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":203,"timing":{"requestTime":8696.703416,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.357,"dnsEnd":0.364,"connectStart":0.364,"connectEnd":0.604,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.657,"sendEnd":0.706,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":569.174},"responseTime":1631045473034.745,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Page.frameStartedLoading","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"init","timestamp":8697.279009}}, - {"method":"Page.frameNavigated","params":{"frame":{"id":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","url":"http://localhost:10200/dobetterweb/dbw_tester.html","domainAndRegistry":"","securityOrigin":"http://localhost:10200","mimeType":"text/html","adFrameStatus":{"adFrameType":"none"},"secureContextType":"SecureLocalhost","crossOriginIsolatedContextType":"NotIsolated","gatedAPIFeatures":[]},"type":"Navigation"}}, - {"method":"Network.dataReceived","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.301518,"dataLength":3887,"encodedDataLength":0}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.2","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.305899},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.3","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.306911},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.4","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.307719},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.5","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.309169},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.6","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.310132},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.2","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=100","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.304738,"wallTime":1631045473.631137,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":33,"columnNumber":57},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.3","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/unknown404.css?delay=200","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.305797,"wallTime":1631045473.632189,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":34,"columnNumber":57},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.4","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2200","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.306837,"wallTime":1631045473.633762,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":35,"columnNumber":58},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.5","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_disabled.css?delay=200&isdisabled","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.308203,"wallTime":1631045473.634595,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":36,"columnNumber":79},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.6","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&capped","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.309518,"wallTime":1631045473.63591,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":39,"columnNumber":85},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.7","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":8697.310655,"wallTime":1631045473.637049,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":41,"columnNumber":110},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.8","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&async=true","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.311519,"wallTime":1631045473.638391,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":43,"columnNumber":109},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.9","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.js","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.312914,"wallTime":1631045473.639303,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":49,"columnNumber":53},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.10","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/empty_module.js?delay=500","method":"GET","headers":{"Origin":"http://localhost:10200","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.313844,"wallTime":1631045473.640245,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":52,"columnNumber":56},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.16","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/empty.css","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.323066,"wallTime":1631045473.649462,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":46,"columnNumber":52},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.7","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.311565},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.dataReceived","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.360492,"dataLength":13506,"encodedDataLength":0}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.18","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/fcp-delayer.js?delay=5000","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.36152,"wallTime":1631045473.687917,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":114,"columnNumber":42},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.19","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar1","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.363391,"wallTime":1631045473.689783,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":211,"columnNumber":63},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.20","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr1","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.364231,"wallTime":1631045473.69062,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":217,"columnNumber":92},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.21","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr2","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.364339,"wallTime":1631045473.690731,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":219,"columnNumber":91},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.22","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr3","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.36509,"wallTime":1631045473.691628,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":221,"columnNumber":120},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.23","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.365332,"wallTime":1631045473.692002,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":223,"columnNumber":127},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.24","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-rotating.gif","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.365707,"wallTime":1631045473.692093,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":226,"columnNumber":60},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.25","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/third_party/aggressive-promise-polyfill.js","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Medium","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.366467,"wallTime":1631045473.692855,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":459,"columnNumber":59},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.26","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js","method":"GET","headers":{"Referer":"http://localhost:10200/","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Medium","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":8697.36691,"wallTime":1631045473.693297,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":466,"columnNumber":78},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.loadingFinished","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.360243,"encodedDataLength":17609,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.2","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.8","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.312282},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.2","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.877748,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=100","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.305899,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.177,"sendEnd":0.217,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":570.792},"responseTime":1631045473734.171,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.2","timestamp":8697.878754,"dataLength":689,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.2","timestamp":8697.88057,"dataLength":0,"encodedDataLength":701}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.2","timestamp":8697.877161,"encodedDataLength":903,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.3","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":404,"headersText":"HTTP/1.1 404 Not Found\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.9","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.313513},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.3","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.886357,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/unknown404.css?delay=200","status":404,"statusText":"Not Found","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":209,"timing":{"requestTime":8697.306911,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.127,"dnsEnd":0.132,"connectStart":0.132,"connectEnd":0.378,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.413,"sendEnd":0.453,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.355},"responseTime":1631045473838.128,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.loadingFailed","params":{"requestId":"31161.3","timestamp":8697.887146,"type":"Stylesheet","errorText":"net::ERR_ABORTED","canceled":true}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.5","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.10","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","Origin":"http://localhost:10200","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.315116},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.5","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.893866,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_disabled.css?delay=200&isdisabled","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":52,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.309169,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.119,"dnsEnd":0.124,"connectStart":0.124,"connectEnd":0.353,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.392,"sendEnd":0.426,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":583.651},"responseTime":1631045473838.362,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.5","timestamp":8697.89426,"dataLength":976,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.5","timestamp":8697.89442,"dataLength":0,"encodedDataLength":988}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.5","timestamp":8697.893143,"encodedDataLength":1190,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.9","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.18","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.362422},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.9","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8698.458043,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.js","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":216,"timing":{"requestTime":8697.313513,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":572.518,"sendEnd":572.561,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1142.946},"responseTime":1631045474213.662,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.9","timestamp":8698.458871,"dataLength":824,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.9","timestamp":8698.460685,"dataLength":0,"encodedDataLength":836}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.9","timestamp":8698.45698,"encodedDataLength":1052,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.10","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.10","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8698.466681,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/empty_module.js?delay=500","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":52,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":216,"timing":{"requestTime":8697.315116,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":578.321,"sendEnd":578.364,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1150.46},"responseTime":1631045474724.704,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.10","timestamp":8698.465845,"encodedDataLength":221,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.7","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.7","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8699.363161,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.311565,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":49.037,"sendEnd":49.088,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2050.931},"responseTime":1631045475687.937,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.7","timestamp":8699.363271,"dataLength":689,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.7","timestamp":8699.364293,"dataLength":0,"encodedDataLength":701}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.7","timestamp":8699.362754,"encodedDataLength":903,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.4","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.4","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8699.513836,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2200","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":46,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.307719,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.117,"dnsEnd":0.122,"connectStart":0.122,"connectEnd":0.354,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.391,"sendEnd":0.424,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2205.732},"responseTime":1631045475836.688,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.4","timestamp":8699.514821,"dataLength":689,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.4","timestamp":8699.515348,"dataLength":0,"encodedDataLength":701}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.4","timestamp":8699.513723,"encodedDataLength":903,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.6","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.6","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8700.316867,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&capped","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":58,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.310132,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.132,"dnsEnd":0.138,"connectStart":0.138,"connectEnd":0.347,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.384,"sendEnd":0.422,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3005.936},"responseTime":1631045476640.822,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.6","timestamp":8700.316962,"dataLength":689,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.6","timestamp":8700.317965,"dataLength":0,"encodedDataLength":701}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.6","timestamp":8700.316334,"encodedDataLength":903,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.8","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.25","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8700.884093},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.8","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8700.88115,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&async=true","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.312282,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":565.164,"sendEnd":565.211,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3568.228},"responseTime":1631045477204.757,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.8","timestamp":8700.882103,"dataLength":689,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.8","timestamp":8700.884686,"dataLength":0,"encodedDataLength":701}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.8","timestamp":8700.880996,"encodedDataLength":903,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.25","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:17 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:17 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.25","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8701.454057,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/third_party/aggressive-promise-polyfill.js","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:17 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":216,"timing":{"requestTime":8700.884093,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.202,"sendEnd":0.246,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":569.09},"responseTime":1631045477212.204,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8701.469227,"dataLength":3873,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8701.818911,"dataLength":65536,"encodedDataLength":69416}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8702.168634,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8702.336041,"dataLength":31375,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8702.338551,"dataLength":0,"encodedDataLength":31382}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.25","timestamp":8702.335333,"encodedDataLength":166550,"shouldReportCorbBlocking":false}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.26","associatedCookies":[],"headers":{"Host":"ajax.googleapis.com","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Referer":"http://localhost:10200/","Accept-Encoding":"gzip, deflate","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8702.33829},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.26","blockedCookies":[],"headers":{"Accept-Ranges":"bytes","Vary":"Accept-Encoding","Content-Encoding":"gzip","Content-Type":"text/javascript; charset=UTF-8","Access-Control-Allow-Origin":"*","Content-Security-Policy-Report-Only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/hosted-libraries-pushers","Cross-Origin-Resource-Policy":"cross-origin","Timing-Allow-Origin":"*","Content-Length":"29671","Date":"Fri, 03 Sep 2021 13:50:35 GMT","Expires":"Sat, 03 Sep 2022 13:50:35 GMT","Last-Modified":"Tue, 03 Mar 2020 19:15:00 GMT","X-Content-Type-Options":"nosniff","Server":"sffe","X-XSS-Protection":"0","Age":"368443","Cache-Control":"public, max-age=31536000, stale-while-revalidate=2592000"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccept-Ranges: bytes\r\nVary: Accept-Encoding\r\nContent-Encoding: gzip\r\nContent-Type: text/javascript; charset=UTF-8\r\nAccess-Control-Allow-Origin: *\r\nContent-Security-Policy-Report-Only: require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/hosted-libraries-pushers\r\nCross-Origin-Resource-Policy: cross-origin\r\nTiming-Allow-Origin: *\r\nContent-Length: 29671\r\nDate: Fri, 03 Sep 2021 13:50:35 GMT\r\nExpires: Sat, 03 Sep 2022 13:50:35 GMT\r\nLast-Modified: Tue, 03 Mar 2020 19:15:00 GMT\r\nX-Content-Type-Options: nosniff\r\nServer: sffe\r\nX-XSS-Protection: 0\r\nAge: 368443\r\nCache-Control: public, max-age=31536000, stale-while-revalidate=2592000\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.26","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8702.933054,"type":"Script","response":{"url":"http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js","status":200,"statusText":"OK","headers":{"Date":"Fri, 03 Sep 2021 13:50:35 GMT","Content-Encoding":"gzip","X-Content-Type-Options":"nosniff","Age":"368443","Content-Security-Policy-Report-Only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/hosted-libraries-pushers","Cross-Origin-Resource-Policy":"cross-origin","Content-Length":"29671","X-XSS-Protection":"0","Last-Modified":"Tue, 03 Mar 2020 19:15:00 GMT","Server":"sffe","Vary":"Accept-Encoding","Content-Type":"text/javascript; charset=UTF-8","Access-Control-Allow-Origin":"*","Cache-Control":"public, max-age=31536000, stale-while-revalidate=2592000","Accept-Ranges":"bytes","Timing-Allow-Origin":"*","Expires":"Sat, 03 Sep 2022 13:50:35 GMT"},"mimeType":"text/javascript","connectionReused":false,"connectionId":104,"remoteIPAddress":"142.250.189.170","remotePort":80,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":675,"timing":{"requestTime":8702.33829,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.317,"dnsEnd":3.084,"connectStart":3.084,"connectEnd":15.746,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":15.808,"sendEnd":15.862,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":584.652},"responseTime":1631045478697.443,"protocol":"http/1.1","securityState":"insecure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.26","timestamp":8702.933549,"dataLength":4724,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.26","timestamp":8703.083578,"dataLength":79521,"encodedDataLength":29671}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.19","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.087769},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.26","timestamp":8703.08326,"encodedDataLength":30346,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.18","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":404,"headersText":"HTTP/1.1 404 Not Found\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.18","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8703.464937,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/fcp-delayer.js?delay=5000","status":404,"statusText":"Not Found","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":223,"timing":{"requestTime":8697.362422,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1094.997,"sendEnd":1095.064,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":6101.02},"responseTime":1631045479786.203,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.20","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.466602},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.loadingFailed","params":{"requestId":"31161.18","timestamp":8703.466927,"type":"Script","errorText":"net::ERR_ABORTED","canceled":true}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.21","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.468442},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.22","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.468823},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.23","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.469349},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.24","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.469809},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.23","newPriority":"High","timestamp":8703.537685}}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.20","newPriority":"High","timestamp":8703.537704}}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.22","newPriority":"High","timestamp":8703.537985}}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.21","newPriority":"High","timestamp":8703.537998}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.41","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar2","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.544262,"wallTime":1631045479.87061,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":242,"columnNumber":0},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Page.javascriptDialogOpening","params":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","message":"Is DBW Mega Tester the best site?","type":"confirm","hasBrowserHandler":true,"defaultPrompt":""}}, - {"method":"Page.javascriptDialogClosed","params":{"result":true,"userInput":"Lighthouse prompt response"}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.43","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?scriptActivated&delay=200","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.568711,"wallTime":1631045479.89507,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"stampTemplate","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":250,"columnNumber":11},{"functionName":"linksBlockingFirstPaintTest","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":360,"columnNumber":2},{"functionName":"","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":409,"columnNumber":2}]}},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.44","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.571317,"wallTime":1631045479.897673,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"deprecationsTest","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":381,"columnNumber":6},{"functionName":"","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":412,"columnNumber":2}]}},"type":"XHR","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.44","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"cors","Sec-Fetch-Dest":"empty","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.572964},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.19","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.43","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.56974},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.20","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.21","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.22","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.23","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.24","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/gif","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/gif\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.44","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/html; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/html; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.43","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:20 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:20 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.41","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8704.71159},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.44","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.71286,"type":"XHR","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/html; charset=utf-8"},"mimeType":"text/html","connectionReused":false,"connectionId":144,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":17609,"timing":{"requestTime":8703.572964,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.119,"dnsEnd":0.124,"connectStart":0.124,"connectEnd":0.396,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.436,"sendEnd":0.483,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":605.407},"responseTime":1631045479900.381,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.712919,"dataLength":3887,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713517,"dataLength":4096,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713546,"dataLength":4096,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713577,"dataLength":4096,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713602,"dataLength":1218,"encodedDataLength":0}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.44","timestamp":8704.713619,"encodedDataLength":17609,"shouldReportCorbBlocking":false}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.45","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"blob:http://localhost:10200/3f2bc9df-684b-4541-837c-1590152ef65d","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8704.719767,"wallTime":1631045481.04612,"initiator":{"type":"script","stack":{"callFrames":[],"parent":{"description":"Image","callFrames":[{"functionName":"isOnHttps","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":390,"columnNumber":10},{"functionName":"","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":414,"columnNumber":2}]}}},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.41","newPriority":"High","timestamp":8704.727158}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstPaint","timestamp":8703.544771}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstContentfulPaint","timestamp":8703.544772}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstMeaningfulPaintCandidate","timestamp":8703.544773}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.19","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.736115,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar1","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.087769,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.215,"sendEnd":0.263,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":566.131},"responseTime":1631045479415.577,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.19","timestamp":8704.736212,"dataLength":24620,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.19","timestamp":8704.73796,"dataLength":0,"encodedDataLength":24633}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.19","timestamp":8703.781112,"encodedDataLength":24822,"shouldReportCorbBlocking":false}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.20","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.738665,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr1","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.466602,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.243,"sendEnd":0.29,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":568.689},"responseTime":1631045479794.119,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.20","timestamp":8704.739437,"dataLength":3901,"encodedDataLength":0}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.21","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.740145,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr2","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":58,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.468442,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.175,"sendEnd":0.21,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":574.936},"responseTime":1631045479795.9,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.21","timestamp":8704.740519,"dataLength":3901,"encodedDataLength":0}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.22","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.741399,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr3","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":46,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.468823,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.213,"sendEnd":0.251,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":582.736},"responseTime":1631045479796.557,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.22","timestamp":8704.741465,"dataLength":3901,"encodedDataLength":0}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.23","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.742119,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.469349,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.154,"sendEnd":0.191,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":589.882},"responseTime":1631045479796.75,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.23","timestamp":8704.742182,"dataLength":3901,"encodedDataLength":0}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.24","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.743657,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-rotating.gif","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/gif"},"mimeType":"image/gif","connectionReused":false,"connectionId":131,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":188,"timing":{"requestTime":8703.469809,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.145,"dnsEnd":0.151,"connectStart":0.151,"connectEnd":0.641,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.686,"sendEnd":0.722,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":597.463},"responseTime":1631045479798.761,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8704.743749,"dataLength":3901,"encodedDataLength":0}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.16","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8704.775467},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Page.domContentEventFired","params":{"timestamp":8704.890015}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"DOMContentLoaded","timestamp":8704.890015}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.43","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.901491,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?scriptActivated&delay=200","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:20 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8703.56974,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":211.569,"sendEnd":211.613,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":823.307},"responseTime":1631045480312.443,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.45","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.902759,"type":"Image","response":{"url":"blob:http://localhost:10200/3f2bc9df-684b-4541-837c-1590152ef65d","status":200,"statusText":"OK","headers":{"Content-Length":"4"},"mimeType":"text/plain","connectionReused":false,"connectionId":0,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":-1,"protocol":"blob","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.20","timestamp":8704.903872,"dataLength":20719,"encodedDataLength":3907}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.20","timestamp":8704.905005,"dataLength":0,"encodedDataLength":20726}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.20","timestamp":8704.775349,"encodedDataLength":24822,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.21","timestamp":8704.905412,"dataLength":20719,"encodedDataLength":3907}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.21","timestamp":8704.906261,"dataLength":0,"encodedDataLength":20726}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.21","timestamp":8704.783027,"encodedDataLength":24822,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.22","timestamp":8704.90632,"dataLength":20719,"encodedDataLength":3907}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.22","timestamp":8704.90712,"dataLength":0,"encodedDataLength":20726}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.22","timestamp":8704.79062,"encodedDataLength":24822,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.23","timestamp":8704.907569,"dataLength":20719,"encodedDataLength":3907}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.23","timestamp":8704.908081,"dataLength":0,"encodedDataLength":20726}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.23","timestamp":8704.798589,"encodedDataLength":24822,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.43","timestamp":8704.918026,"dataLength":689,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.43","timestamp":8704.918235,"dataLength":0,"encodedDataLength":701}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.43","timestamp":8704.393508,"encodedDataLength":903,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.45","timestamp":8704.918335,"dataLength":4,"encodedDataLength":0}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.45","timestamp":8704.918398,"encodedDataLength":0,"shouldReportCorbBlocking":false}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstImagePaint","timestamp":8704.962436}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.48","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"filesystem:http://localhost:10200/temporary/empty-0.43448333410631723.png","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8705.042136,"wallTime":1631045481.368486,"initiator":{"type":"script","stack":{"callFrames":[],"parent":{"description":"Image","callFrames":[{"functionName":"","scriptId":"28","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":473,"columnNumber":14}]}}},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.48","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8705.043393,"type":"Image","response":{"url":"filesystem:http://localhost:10200/temporary/empty-0.43448333410631723.png","status":200,"statusText":"OK","headers":{"Cache-Control":"no-cache"},"mimeType":"text/html","connectionReused":false,"connectionId":0,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":-1,"protocol":"filesystem","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.48","timestamp":8705.044062,"encodedDataLength":0,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8705.049783,"dataLength":65536,"encodedDataLength":3908}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.41","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.41","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8705.29171,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar2","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":144,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8704.71159,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.52,"sendEnd":0.601,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":579.329},"responseTime":1631045481039.564,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.41","timestamp":8705.323318,"dataLength":3901,"encodedDataLength":0}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.16","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.16","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8705.356228,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/empty.css","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8704.775467,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.261,"sendEnd":0.322,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":579.734},"responseTime":1631045481102.872,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.16","timestamp":8705.355389,"encodedDataLength":207,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8705.516146,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.41","timestamp":8705.553407,"dataLength":20719,"encodedDataLength":3907}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.41","timestamp":8705.554995,"dataLength":0,"encodedDataLength":20726}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.41","timestamp":8705.553416,"encodedDataLength":24822,"shouldReportCorbBlocking":false}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8705.882448,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"networkAlmostIdle","timestamp":8705.357385}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstMeaningfulPaint","timestamp":8703.544773}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8706.231889,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8706.579831,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8706.920402,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8707.269819,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8707.599034,"dataLength":61635,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8707.945443,"dataLength":65536,"encodedDataLength":61635}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8708.295966,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8708.637808,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8708.987019,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.336281,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.678172,"dataLength":65536,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.766584,"dataLength":16781,"encodedDataLength":65536}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.768378,"dataLength":0,"encodedDataLength":16788}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.24","timestamp":8709.76619,"encodedDataLength":934487,"shouldReportCorbBlocking":false}}, - {"method":"Page.loadEventFired","params":{"timestamp":8709.771532}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"load","timestamp":8709.771532}}, - {"method":"Page.frameStoppedLoading","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.49","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/favicon.ico","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8709.807668,"wallTime":1631045486.134344,"initiator":{"type":"other"},"type":"Other","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.49","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8709.809016},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"InteractiveTime","timestamp":8710.356981}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.49","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/vnd.microsoft.icon","Date":"Tue, 07 Sep 2021 20:11:26 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":404,"headersText":"HTTP/1.1 404 Not Found\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/vnd.microsoft.icon\r\nDate: Tue, 07 Sep 2021 20:11:26 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.49","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8710.378742,"type":"Other","response":{"url":"http://localhost:10200/favicon.ico","status":404,"statusText":"Not Found","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:26 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/vnd.microsoft.icon"},"mimeType":"image/vnd.microsoft.icon","connectionReused":false,"connectionId":168,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":210,"timing":{"requestTime":8709.809016,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.328,"dnsEnd":0.337,"connectStart":0.337,"connectEnd":0.564,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.606,"sendEnd":0.643,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":568.162},"responseTime":1631045486136.381,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.49","timestamp":8710.379897,"dataLength":34,"encodedDataLength":0}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.49","timestamp":8710.380969,"dataLength":0,"encodedDataLength":45}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.49","timestamp":8710.377607,"encodedDataLength":255,"shouldReportCorbBlocking":false}}, - {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"networkIdle","timestamp":8710.380991}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.42","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?lcp&redirect=lighthouse-1024x680.jpg%3Fredirected-lcp","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.801006,"wallTime":1631045479.87061,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true"},"redirectHasExtraInfo":false,"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.42","newPriority":"High","timestamp":8703.815411}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.42","blockedCookies":[],"headers":{"Connection":"keep-alive","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Keep-Alive":"timeout=5","Location":"lighthouse-1024x680.jpg?redirected-lcp","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":302,"headersText":"HTTP/1.1 302 Found\r\nLocation: lighthouse-1024x680.jpg?redirected-lcp\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.requestWillBeSent","params":{"requestId":"31161.42","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?redirected-lcp","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8707.549529,"wallTime":1631045483.619228,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true"},"redirectHasExtraInfo":true,"redirectResponse":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?lcp&redirect=lighthouse-1024x680.jpg%3Fredirected-lcp","status":302,"statusText":"Found","headers":{"Location":"lighthouse-1024x680.jpg?redirected-lcp","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"mimeType":"","connectionReused":true,"connectionId":53,"remoteIPAddress":"[::1]","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":184,"timing":{"requestTime":8703.815525,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1849.553,"sendEnd":1849.592,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2448.7},"responseTime":1676577940980.408,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure"},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false}}, - {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.42","associatedCookies":[],"headers":{"Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Connection":"keep-alive","Host":"localhost:10200","Referer":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","Sec-Fetch-Dest":"image","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Site":"same-origin","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":8707.54969},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"PreflightWarn"}}}, - {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.42","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Connection":"keep-alive","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Keep-Alive":"timeout=5","Origin-Agent-Cluster":"?1","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nOrigin-Agent-Cluster: ?1\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"}}, - {"method":"Network.responseReceived","params":{"requestId":"31161.42","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8708.142874,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?redirected-lcp","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Origin-Agent-Cluster":"?1","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":181,"remoteIPAddress":"[::1]","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":215,"timing":{"requestTime":8707.54969,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.15,"sendEnd":0.191,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":587.512},"responseTime":1676577942863.665,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"unknown"},"hasExtraInfo":true,"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.173511,"dataLength":1493,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.207761,"dataLength":2381,"encodedDataLength":2381}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.243311,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.273843,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.307429,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.339481,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.373257,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.40703,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.439904,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.458746,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.473555,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.507255,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.524549,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.557361,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.574046,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.609606,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.62487,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.657154,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.674855,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.692253,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.724062,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.740678,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.774146,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.793684,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.80747,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.823435,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.842267,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.85683,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.873846,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.890187,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.907736,"dataLength":3000,"encodedDataLength":3000}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.925111,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.957411,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.974645,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.991725,"dataLength":3000,"encodedDataLength":3000}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.025795,"dataLength":3000,"encodedDataLength":3000}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.041701,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.058354,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.074614,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.09181,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.107291,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.124045,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.140391,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.157909,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.173624,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.190858,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.20907,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.225168,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.24141,"dataLength":3000,"encodedDataLength":3000}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.258841,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.27419,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.291609,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.308039,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.323808,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.341433,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.359145,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.389884,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.406718,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.423544,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.441361,"dataLength":3000,"encodedDataLength":3000}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.457721,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.474469,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.492274,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.5073,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.524584,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.541228,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.558657,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.574134,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.590662,"dataLength":1500,"encodedDataLength":1500}}, - {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.607094,"dataLength":836,"encodedDataLength":843}}, - {"method":"Network.loadingFinished","params":{"requestId":"31161.42","timestamp":8709.600339,"encodedDataLength":112939,"shouldReportCorbBlocking":false}} + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"commit","timestamp":8696.548037},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"DOMContentLoaded","timestamp":8696.548142},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"load","timestamp":8696.548385},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkAlmostIdle","timestamp":8696.548693},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkIdle","timestamp":8696.548693},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","method":"GET","headers":{"Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8696.702394,"wallTime":1631045473.028791,"initiator":{"type":"other"},"type":"Document","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","Upgrade-Insecure-Requests":"1","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9","Sec-Fetch-Site":"none","Sec-Fetch-Mode":"navigate","Sec-Fetch-User":"?1","Sec-Fetch-Dest":"document","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8696.703416}},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkAlmostIdle","timestamp":8696.548693},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"8F4DC30B66C3C9F7760D562C6C183204","name":"networkIdle","timestamp":8696.548693},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/html; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/html; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.273542,"type":"Document","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/html; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"mimeType":"text/html","connectionReused":false,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":203,"timing":{"requestTime":8696.703416,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.357,"dnsEnd":0.364,"connectStart":0.364,"connectEnd":0.604,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.657,"sendEnd":0.706,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":569.174},"responseTime":1631045473034.745,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Page.frameStartedLoading","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"init","timestamp":8697.279009},"targetType":"page"}, + {"method":"Page.frameNavigated","params":{"frame":{"id":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","url":"http://localhost:10200/dobetterweb/dbw_tester.html","domainAndRegistry":"","securityOrigin":"http://localhost:10200","mimeType":"text/html","adFrameStatus":{"adFrameType":"none"},"secureContextType":"SecureLocalhost","crossOriginIsolatedContextType":"NotIsolated","gatedAPIFeatures":[]},"type":"Navigation"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.301518,"dataLength":3887,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.2","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.305899},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.3","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.306911},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.4","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.307719},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.5","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.309169},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.6","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.310132},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.2","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=100","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.304738,"wallTime":1631045473.631137,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":33,"columnNumber":57},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.3","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/unknown404.css?delay=200","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.305797,"wallTime":1631045473.632189,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":34,"columnNumber":57},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.4","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2200","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.306837,"wallTime":1631045473.633762,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":35,"columnNumber":58},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.5","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_disabled.css?delay=200&isdisabled","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.308203,"wallTime":1631045473.634595,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":36,"columnNumber":79},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.6","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&capped","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.309518,"wallTime":1631045473.63591,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":39,"columnNumber":85},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.7","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isLinkPreload":true,"isSameSite":true},"timestamp":8697.310655,"wallTime":1631045473.637049,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":41,"columnNumber":110},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.8","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&async=true","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.311519,"wallTime":1631045473.638391,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":43,"columnNumber":109},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.9","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.js","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.312914,"wallTime":1631045473.639303,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":49,"columnNumber":53},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.10","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/empty_module.js?delay=500","method":"GET","headers":{"Origin":"http://localhost:10200","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.313844,"wallTime":1631045473.640245,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":52,"columnNumber":56},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.16","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/empty.css","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryLow","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.323066,"wallTime":1631045473.649462,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":46,"columnNumber":52},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.7","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.311565},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.360492,"dataLength":13506,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.18","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/fcp-delayer.js?delay=5000","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.36152,"wallTime":1631045473.687917,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":114,"columnNumber":42},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.19","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar1","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.363391,"wallTime":1631045473.689783,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":211,"columnNumber":63},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.20","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr1","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.364231,"wallTime":1631045473.69062,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":217,"columnNumber":92},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.21","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr2","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.364339,"wallTime":1631045473.690731,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":219,"columnNumber":91},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.22","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr3","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.36509,"wallTime":1631045473.691628,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":221,"columnNumber":120},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.23","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.365332,"wallTime":1631045473.692002,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":223,"columnNumber":127},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.24","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-rotating.gif","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.365707,"wallTime":1631045473.692093,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":226,"columnNumber":60},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.25","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/third_party/aggressive-promise-polyfill.js","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Medium","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8697.366467,"wallTime":1631045473.692855,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":459,"columnNumber":59},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.26","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js","method":"GET","headers":{"Referer":"http://localhost:10200/","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Medium","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":false},"timestamp":8697.36691,"wallTime":1631045473.693297,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":466,"columnNumber":78},"type":"Script","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.360243,"encodedDataLength":17609,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.2","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.8","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.312282},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.2","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.877748,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=100","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.305899,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.177,"sendEnd":0.217,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":570.792},"responseTime":1631045473734.171,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.2","timestamp":8697.878754,"dataLength":689,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.2","timestamp":8697.88057,"dataLength":0,"encodedDataLength":701},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.2","timestamp":8697.877161,"encodedDataLength":903,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.3","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":404,"headersText":"HTTP/1.1 404 Not Found\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.9","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.313513},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.3","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.886357,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/unknown404.css?delay=200","status":404,"statusText":"Not Found","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":209,"timing":{"requestTime":8697.306911,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.127,"dnsEnd":0.132,"connectStart":0.132,"connectEnd":0.378,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.413,"sendEnd":0.453,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":578.355},"responseTime":1631045473838.128,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.loadingFailed","params":{"requestId":"31161.3","timestamp":8697.887146,"type":"Stylesheet","errorText":"net::ERR_ABORTED","canceled":true},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.5","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.10","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","Origin":"http://localhost:10200","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.315116},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.5","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8697.893866,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_disabled.css?delay=200&isdisabled","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":52,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.309169,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.119,"dnsEnd":0.124,"connectStart":0.124,"connectEnd":0.353,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.392,"sendEnd":0.426,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":583.651},"responseTime":1631045473838.362,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.5","timestamp":8697.89426,"dataLength":976,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.5","timestamp":8697.89442,"dataLength":0,"encodedDataLength":988},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.5","timestamp":8697.893143,"encodedDataLength":1190,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.9","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.18","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8697.362422},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.9","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8698.458043,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.js","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":216,"timing":{"requestTime":8697.313513,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":572.518,"sendEnd":572.561,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1142.946},"responseTime":1631045474213.662,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.9","timestamp":8698.458871,"dataLength":824,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.9","timestamp":8698.460685,"dataLength":0,"encodedDataLength":836},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.9","timestamp":8698.45698,"encodedDataLength":1052,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.10","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.10","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8698.466681,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/empty_module.js?delay=500","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":52,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":216,"timing":{"requestTime":8697.315116,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":578.321,"sendEnd":578.364,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":1150.46},"responseTime":1631045474724.704,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.10","timestamp":8698.465845,"encodedDataLength":221,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.7","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.7","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8699.363161,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.311565,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":49.037,"sendEnd":49.088,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2050.931},"responseTime":1631045475687.937,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.7","timestamp":8699.363271,"dataLength":689,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.7","timestamp":8699.364293,"dataLength":0,"encodedDataLength":701},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.7","timestamp":8699.362754,"encodedDataLength":903,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.4","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.4","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8699.513836,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2200","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":46,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.307719,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.117,"dnsEnd":0.122,"connectStart":0.122,"connectEnd":0.354,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.391,"sendEnd":0.424,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2205.732},"responseTime":1631045475836.688,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.4","timestamp":8699.514821,"dataLength":689,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.4","timestamp":8699.515348,"dataLength":0,"encodedDataLength":701},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.4","timestamp":8699.513723,"encodedDataLength":903,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.6","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:13 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.6","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8700.316867,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&capped","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:13 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":false,"connectionId":58,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.310132,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.132,"dnsEnd":0.138,"connectStart":0.138,"connectEnd":0.347,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.384,"sendEnd":0.422,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3005.936},"responseTime":1631045476640.822,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.6","timestamp":8700.316962,"dataLength":689,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.6","timestamp":8700.317965,"dataLength":0,"encodedDataLength":701},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.6","timestamp":8700.316334,"encodedDataLength":903,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.8","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.25","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"script","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8700.884093},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.8","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8700.88115,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&async=true","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8697.312282,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":565.164,"sendEnd":565.211,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":3568.228},"responseTime":1631045477204.757,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.8","timestamp":8700.882103,"dataLength":689,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.8","timestamp":8700.884686,"dataLength":0,"encodedDataLength":701},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.8","timestamp":8700.880996,"encodedDataLength":903,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.25","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:17 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:17 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.25","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8701.454057,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/third_party/aggressive-promise-polyfill.js","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:17 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":216,"timing":{"requestTime":8700.884093,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.202,"sendEnd":0.246,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":569.09},"responseTime":1631045477212.204,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8701.469227,"dataLength":3873,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8701.818911,"dataLength":65536,"encodedDataLength":69416},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8702.168634,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8702.336041,"dataLength":31375,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.25","timestamp":8702.338551,"dataLength":0,"encodedDataLength":31382},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.25","timestamp":8702.335333,"encodedDataLength":166550,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.26","associatedCookies":[],"headers":{"Host":"ajax.googleapis.com","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Referer":"http://localhost:10200/","Accept-Encoding":"gzip, deflate","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8702.33829},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.26","blockedCookies":[],"headers":{"Accept-Ranges":"bytes","Vary":"Accept-Encoding","Content-Encoding":"gzip","Content-Type":"text/javascript; charset=UTF-8","Access-Control-Allow-Origin":"*","Content-Security-Policy-Report-Only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/hosted-libraries-pushers","Cross-Origin-Resource-Policy":"cross-origin","Timing-Allow-Origin":"*","Content-Length":"29671","Date":"Fri, 03 Sep 2021 13:50:35 GMT","Expires":"Sat, 03 Sep 2022 13:50:35 GMT","Last-Modified":"Tue, 03 Mar 2020 19:15:00 GMT","X-Content-Type-Options":"nosniff","Server":"sffe","X-XSS-Protection":"0","Age":"368443","Cache-Control":"public, max-age=31536000, stale-while-revalidate=2592000"},"resourceIPAddressSpace":"Public","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccept-Ranges: bytes\r\nVary: Accept-Encoding\r\nContent-Encoding: gzip\r\nContent-Type: text/javascript; charset=UTF-8\r\nAccess-Control-Allow-Origin: *\r\nContent-Security-Policy-Report-Only: require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/hosted-libraries-pushers\r\nCross-Origin-Resource-Policy: cross-origin\r\nTiming-Allow-Origin: *\r\nContent-Length: 29671\r\nDate: Fri, 03 Sep 2021 13:50:35 GMT\r\nExpires: Sat, 03 Sep 2022 13:50:35 GMT\r\nLast-Modified: Tue, 03 Mar 2020 19:15:00 GMT\r\nX-Content-Type-Options: nosniff\r\nServer: sffe\r\nX-XSS-Protection: 0\r\nAge: 368443\r\nCache-Control: public, max-age=31536000, stale-while-revalidate=2592000\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.26","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8702.933054,"type":"Script","response":{"url":"http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js","status":200,"statusText":"OK","headers":{"Date":"Fri, 03 Sep 2021 13:50:35 GMT","Content-Encoding":"gzip","X-Content-Type-Options":"nosniff","Age":"368443","Content-Security-Policy-Report-Only":"require-trusted-types-for 'script'; report-uri https://csp.withgoogle.com/csp/hosted-libraries-pushers","Cross-Origin-Resource-Policy":"cross-origin","Content-Length":"29671","X-XSS-Protection":"0","Last-Modified":"Tue, 03 Mar 2020 19:15:00 GMT","Server":"sffe","Vary":"Accept-Encoding","Content-Type":"text/javascript; charset=UTF-8","Access-Control-Allow-Origin":"*","Cache-Control":"public, max-age=31536000, stale-while-revalidate=2592000","Accept-Ranges":"bytes","Timing-Allow-Origin":"*","Expires":"Sat, 03 Sep 2022 13:50:35 GMT"},"mimeType":"text/javascript","connectionReused":false,"connectionId":104,"remoteIPAddress":"142.250.189.170","remotePort":80,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":675,"timing":{"requestTime":8702.33829,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.317,"dnsEnd":3.084,"connectStart":3.084,"connectEnd":15.746,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":15.808,"sendEnd":15.862,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":584.652},"responseTime":1631045478697.443,"protocol":"http/1.1","securityState":"insecure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.26","timestamp":8702.933549,"dataLength":4724,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.26","timestamp":8703.083578,"dataLength":79521,"encodedDataLength":29671},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.19","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.087769},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.26","timestamp":8703.08326,"encodedDataLength":30346,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.18","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"application/javascript; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":404,"headersText":"HTTP/1.1 404 Not Found\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: application/javascript; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:14 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.18","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8703.464937,"type":"Script","response":{"url":"http://localhost:10200/dobetterweb/fcp-delayer.js?delay=5000","status":404,"statusText":"Not Found","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:14 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"application/javascript; charset=utf-8"},"mimeType":"application/javascript","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":223,"timing":{"requestTime":8697.362422,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1094.997,"sendEnd":1095.064,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":6101.02},"responseTime":1631045479786.203,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.20","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.466602},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.loadingFailed","params":{"requestId":"31161.18","timestamp":8703.466927,"type":"Script","errorText":"net::ERR_ABORTED","canceled":true},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.21","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.468442},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.22","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.468823},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.23","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.469349},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.24","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.469809},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.23","newPriority":"High","timestamp":8703.537685},"targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.20","newPriority":"High","timestamp":8703.537704},"targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.22","newPriority":"High","timestamp":8703.537985},"targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.21","newPriority":"High","timestamp":8703.537998},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.41","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar2","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.544262,"wallTime":1631045479.87061,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":242,"columnNumber":0},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Page.javascriptDialogOpening","params":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","message":"Is DBW Mega Tester the best site?","type":"confirm","hasBrowserHandler":true,"defaultPrompt":""},"targetType":"page"}, + {"method":"Page.javascriptDialogClosed","params":{"result":true,"userInput":"Lighthouse prompt response"},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.43","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?scriptActivated&delay=200","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.568711,"wallTime":1631045479.89507,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"stampTemplate","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":250,"columnNumber":11},{"functionName":"linksBlockingFirstPaintTest","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":360,"columnNumber":2},{"functionName":"","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":409,"columnNumber":2}]}},"type":"Stylesheet","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.44","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"VeryHigh","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.571317,"wallTime":1631045479.897673,"initiator":{"type":"script","stack":{"callFrames":[{"functionName":"deprecationsTest","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":381,"columnNumber":6},{"functionName":"","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":412,"columnNumber":2}]}},"type":"XHR","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.44","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"*/*","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"cors","Sec-Fetch-Dest":"empty","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.572964},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.19","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.43","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8703.56974},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.20","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.21","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.22","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.23","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.24","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/gif","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/gif\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.44","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/html; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/html; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:19 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.43","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:20 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:20 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.41","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8704.71159},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.44","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.71286,"type":"XHR","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.html","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/html; charset=utf-8"},"mimeType":"text/html","connectionReused":false,"connectionId":144,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":17609,"timing":{"requestTime":8703.572964,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.119,"dnsEnd":0.124,"connectStart":0.124,"connectEnd":0.396,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.436,"sendEnd":0.483,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":605.407},"responseTime":1631045479900.381,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.712919,"dataLength":3887,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713517,"dataLength":4096,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713546,"dataLength":4096,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713577,"dataLength":4096,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.44","timestamp":8704.713602,"dataLength":1218,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.44","timestamp":8704.713619,"encodedDataLength":17609,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.45","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"blob:http://localhost:10200/3f2bc9df-684b-4541-837c-1590152ef65d","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8704.719767,"wallTime":1631045481.04612,"initiator":{"type":"script","stack":{"callFrames":[],"parent":{"description":"Image","callFrames":[{"functionName":"isOnHttps","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":390,"columnNumber":10},{"functionName":"","scriptId":"23","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":414,"columnNumber":2}]}}},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.41","newPriority":"High","timestamp":8704.727158},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstPaint","timestamp":8703.544771},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstContentfulPaint","timestamp":8703.544772},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstMeaningfulPaintCandidate","timestamp":8703.544773},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.19","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.736115,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar1","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.087769,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.215,"sendEnd":0.263,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":566.131},"responseTime":1631045479415.577,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.19","timestamp":8704.736212,"dataLength":24620,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.19","timestamp":8704.73796,"dataLength":0,"encodedDataLength":24633},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.19","timestamp":8703.781112,"encodedDataLength":24822,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.20","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.738665,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr1","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.466602,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.243,"sendEnd":0.29,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":568.689},"responseTime":1631045479794.119,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.20","timestamp":8704.739437,"dataLength":3901,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.21","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.740145,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr2","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":58,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.468442,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.175,"sendEnd":0.21,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":574.936},"responseTime":1631045479795.9,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.21","timestamp":8704.740519,"dataLength":3901,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.22","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.741399,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr3","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":46,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.468823,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.213,"sendEnd":0.251,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":582.736},"responseTime":1631045479796.557,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.22","timestamp":8704.741465,"dataLength":3901,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.23","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.742119,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":26,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8703.469349,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.154,"sendEnd":0.191,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":589.882},"responseTime":1631045479796.75,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.23","timestamp":8704.742182,"dataLength":3901,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.24","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.743657,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-rotating.gif","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:19 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/gif"},"mimeType":"image/gif","connectionReused":false,"connectionId":131,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":188,"timing":{"requestTime":8703.469809,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.145,"dnsEnd":0.151,"connectStart":0.151,"connectEnd":0.641,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.686,"sendEnd":0.722,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":597.463},"responseTime":1631045479798.761,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8704.743749,"dataLength":3901,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.16","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"text/css,*/*;q=0.1","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"style","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8704.775467},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Page.domContentEventFired","params":{"timestamp":8704.890015},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"DOMContentLoaded","timestamp":8704.890015},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.43","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.901491,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/dbw_tester.css?scriptActivated&delay=200","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:20 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":30,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8703.56974,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":211.569,"sendEnd":211.613,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":823.307},"responseTime":1631045480312.443,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.45","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8704.902759,"type":"Image","response":{"url":"blob:http://localhost:10200/3f2bc9df-684b-4541-837c-1590152ef65d","status":200,"statusText":"OK","headers":{"Content-Length":"4"},"mimeType":"text/plain","connectionReused":false,"connectionId":0,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":-1,"protocol":"blob","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.20","timestamp":8704.903872,"dataLength":20719,"encodedDataLength":3907},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.20","timestamp":8704.905005,"dataLength":0,"encodedDataLength":20726},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.20","timestamp":8704.775349,"encodedDataLength":24822,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.21","timestamp":8704.905412,"dataLength":20719,"encodedDataLength":3907},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.21","timestamp":8704.906261,"dataLength":0,"encodedDataLength":20726},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.21","timestamp":8704.783027,"encodedDataLength":24822,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.22","timestamp":8704.90632,"dataLength":20719,"encodedDataLength":3907},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.22","timestamp":8704.90712,"dataLength":0,"encodedDataLength":20726},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.22","timestamp":8704.79062,"encodedDataLength":24822,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.23","timestamp":8704.907569,"dataLength":20719,"encodedDataLength":3907},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.23","timestamp":8704.908081,"dataLength":0,"encodedDataLength":20726},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.23","timestamp":8704.798589,"encodedDataLength":24822,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.43","timestamp":8704.918026,"dataLength":689,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.43","timestamp":8704.918235,"dataLength":0,"encodedDataLength":701},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.43","timestamp":8704.393508,"encodedDataLength":903,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.45","timestamp":8704.918335,"dataLength":4,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.45","timestamp":8704.918398,"encodedDataLength":0,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstImagePaint","timestamp":8704.962436},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.48","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"filesystem:http://localhost:10200/temporary/empty-0.43448333410631723.png","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8705.042136,"wallTime":1631045481.368486,"initiator":{"type":"script","stack":{"callFrames":[],"parent":{"description":"Image","callFrames":[{"functionName":"","scriptId":"28","url":"http://localhost:10200/dobetterweb/dbw_tester.html","lineNumber":473,"columnNumber":14}]}}},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.48","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8705.043393,"type":"Image","response":{"url":"filesystem:http://localhost:10200/temporary/empty-0.43448333410631723.png","status":200,"statusText":"OK","headers":{"Cache-Control":"no-cache"},"mimeType":"text/html","connectionReused":false,"connectionId":0,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":-1,"protocol":"filesystem","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.48","timestamp":8705.044062,"encodedDataLength":0,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8705.049783,"dataLength":65536,"encodedDataLength":3908},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.41","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.41","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8705.29171,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar2","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":144,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":189,"timing":{"requestTime":8704.71159,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.52,"sendEnd":0.601,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":579.329},"responseTime":1631045481039.564,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.41","timestamp":8705.323318,"dataLength":3901,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.16","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"text/css; charset=utf-8","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: text/css; charset=utf-8\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.16","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8705.356228,"type":"Stylesheet","response":{"url":"http://localhost:10200/dobetterweb/empty.css","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"text/css; charset=utf-8"},"mimeType":"text/css","connectionReused":true,"connectionId":40,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":202,"timing":{"requestTime":8704.775467,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.261,"sendEnd":0.322,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":579.734},"responseTime":1631045481102.872,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.16","timestamp":8705.355389,"encodedDataLength":207,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8705.516146,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.41","timestamp":8705.553407,"dataLength":20719,"encodedDataLength":3907},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.41","timestamp":8705.554995,"dataLength":0,"encodedDataLength":20726},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.41","timestamp":8705.553416,"encodedDataLength":24822,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8705.882448,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"networkAlmostIdle","timestamp":8705.357385},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"firstMeaningfulPaint","timestamp":8703.544773},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8706.231889,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8706.579831,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8706.920402,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8707.269819,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8707.599034,"dataLength":61635,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8707.945443,"dataLength":65536,"encodedDataLength":61635},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8708.295966,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8708.637808,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8708.987019,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.336281,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.678172,"dataLength":65536,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.766584,"dataLength":16781,"encodedDataLength":65536},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.24","timestamp":8709.768378,"dataLength":0,"encodedDataLength":16788},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.24","timestamp":8709.76619,"encodedDataLength":934487,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Page.loadEventFired","params":{"timestamp":8709.771532},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"load","timestamp":8709.771532},"targetType":"page"}, + {"method":"Page.frameStoppedLoading","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.49","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/favicon.ico","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8709.807668,"wallTime":1631045486.134344,"initiator":{"type":"other"},"type":"Other","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.49","associatedCookies":[],"headers":{"Host":"localhost:10200","Connection":"keep-alive","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse","Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Sec-Fetch-Site":"same-origin","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Dest":"image","Referer":"http://localhost:10200/dobetterweb/dbw_tester.html","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9"},"connectTiming":{"requestTime":8709.809016},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"Allow"}},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"InteractiveTime","timestamp":8710.356981},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.49","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Content-Type":"image/vnd.microsoft.icon","Date":"Tue, 07 Sep 2021 20:11:26 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":404,"headersText":"HTTP/1.1 404 Not Found\r\nAccess-Control-Allow-Origin: *\r\nContent-Type: image/vnd.microsoft.icon\r\nDate: Tue, 07 Sep 2021 20:11:26 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.49","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8710.378742,"type":"Other","response":{"url":"http://localhost:10200/favicon.ico","status":404,"statusText":"Not Found","headers":{"Access-Control-Allow-Origin":"*","Date":"Tue, 07 Sep 2021 20:11:26 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/vnd.microsoft.icon"},"mimeType":"image/vnd.microsoft.icon","connectionReused":false,"connectionId":168,"remoteIPAddress":"127.0.0.1","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":210,"timing":{"requestTime":8709.809016,"proxyStart":-1,"proxyEnd":-1,"dnsStart":0.328,"dnsEnd":0.337,"connectStart":0.337,"connectEnd":0.564,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.606,"sendEnd":0.643,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":568.162},"responseTime":1631045486136.381,"protocol":"http/1.1","securityState":"secure"},"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.49","timestamp":8710.379897,"dataLength":34,"encodedDataLength":0},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.49","timestamp":8710.380969,"dataLength":0,"encodedDataLength":45},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.49","timestamp":8710.377607,"encodedDataLength":255,"shouldReportCorbBlocking":false},"targetType":"page"}, + {"method":"Page.lifecycleEvent","params":{"frameId":"537BC44B4EE044D67F9FFE7A76173AB1","loaderId":"6913DB840A4B952A23AAEB21C42F130A","name":"networkIdle","timestamp":8710.380991},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.42","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?lcp&redirect=lighthouse-1024x680.jpg%3Fredirected-lcp","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"Low","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8703.801006,"wallTime":1631045479.87061,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true"},"redirectHasExtraInfo":false,"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.resourceChangedPriority","params":{"requestId":"31161.42","newPriority":"High","timestamp":8703.815411},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.42","blockedCookies":[],"headers":{"Connection":"keep-alive","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Keep-Alive":"timeout=5","Location":"lighthouse-1024x680.jpg?redirected-lcp","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":302,"headersText":"HTTP/1.1 302 Found\r\nLocation: lighthouse-1024x680.jpg?redirected-lcp\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.requestWillBeSent","params":{"requestId":"31161.42","loaderId":"6913DB840A4B952A23AAEB21C42F130A","documentURL":"http://localhost:10200/dobetterweb/dbw_tester.html","request":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?redirected-lcp","method":"GET","headers":{"Referer":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"mixedContentType":"none","initialPriority":"High","referrerPolicy":"strict-origin-when-cross-origin","isSameSite":true},"timestamp":8707.549529,"wallTime":1631045483.619228,"initiator":{"type":"parser","url":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true"},"redirectHasExtraInfo":true,"redirectResponse":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?lcp&redirect=lighthouse-1024x680.jpg%3Fredirected-lcp","status":302,"statusText":"Found","headers":{"Location":"lighthouse-1024x680.jpg?redirected-lcp","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked"},"mimeType":"","connectionReused":true,"connectionId":53,"remoteIPAddress":"[::1]","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":184,"timing":{"requestTime":8703.815525,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":1849.553,"sendEnd":1849.592,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":2448.7},"responseTime":1676577940980.408,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"secure"},"type":"Image","frameId":"537BC44B4EE044D67F9FFE7A76173AB1","hasUserGesture":false},"targetType":"page"}, + {"method":"Network.requestWillBeSentExtraInfo","params":{"requestId":"31161.42","associatedCookies":[],"headers":{"Accept":"image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8","Accept-Encoding":"gzip, deflate, br","Accept-Language":"en-US,en;q=0.9","Connection":"keep-alive","Host":"localhost:10200","Referer":"http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true","Sec-Fetch-Dest":"image","Sec-Fetch-Mode":"no-cors","Sec-Fetch-Site":"same-origin","User-Agent":"Mozilla/5.0 (Linux; Android 11; moto g power (2022)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4695.0 Mobile Safari/537.36 Chrome-Lighthouse"},"connectTiming":{"requestTime":8707.54969},"clientSecurityState":{"initiatorIsSecureContext":true,"initiatorIPAddressSpace":"Local","privateNetworkRequestPolicy":"PreflightWarn"}},"targetType":"page"}, + {"method":"Network.responseReceivedExtraInfo","params":{"requestId":"31161.42","blockedCookies":[],"headers":{"Access-Control-Allow-Origin":"*","Connection":"keep-alive","Content-Type":"image/jpeg","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Keep-Alive":"timeout=5","Origin-Agent-Cluster":"?1","Transfer-Encoding":"chunked"},"resourceIPAddressSpace":"Local","statusCode":200,"headersText":"HTTP/1.1 200 OK\r\nAccess-Control-Allow-Origin: *\r\nOrigin-Agent-Cluster: ?1\r\nContent-Type: image/jpeg\r\nDate: Tue, 07 Sep 2021 20:11:21 GMT\r\nConnection: keep-alive\r\nKeep-Alive: timeout=5\r\nTransfer-Encoding: chunked\r\n\r\n"},"targetType":"page"}, + {"method":"Network.responseReceived","params":{"requestId":"31161.42","loaderId":"6913DB840A4B952A23AAEB21C42F130A","timestamp":8708.142874,"type":"Image","response":{"url":"http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?redirected-lcp","status":200,"statusText":"OK","headers":{"Access-Control-Allow-Origin":"*","Origin-Agent-Cluster":"?1","Date":"Tue, 07 Sep 2021 20:11:21 GMT","Connection":"keep-alive","Keep-Alive":"timeout=5","Transfer-Encoding":"chunked","Content-Type":"image/jpeg"},"mimeType":"image/jpeg","connectionReused":true,"connectionId":181,"remoteIPAddress":"[::1]","remotePort":10200,"fromDiskCache":false,"fromServiceWorker":false,"fromPrefetchCache":false,"encodedDataLength":215,"timing":{"requestTime":8707.54969,"proxyStart":-1,"proxyEnd":-1,"dnsStart":-1,"dnsEnd":-1,"connectStart":-1,"connectEnd":-1,"sslStart":-1,"sslEnd":-1,"workerStart":-1,"workerReady":-1,"workerFetchStart":-1,"workerRespondWithSettled":-1,"sendStart":0.15,"sendEnd":0.191,"pushStart":0,"pushEnd":0,"receiveHeadersEnd":587.512},"responseTime":1676577942863.665,"protocol":"http/1.1","alternateProtocolUsage":"unspecifiedReason","securityState":"unknown"},"hasExtraInfo":true,"frameId":"537BC44B4EE044D67F9FFE7A76173AB1"},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.173511,"dataLength":1493,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.207761,"dataLength":2381,"encodedDataLength":2381},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.243311,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.273843,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.307429,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.339481,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.373257,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.40703,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.439904,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.458746,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.473555,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.507255,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.524549,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.557361,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.574046,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.609606,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.62487,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.657154,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.674855,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.692253,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.724062,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.740678,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.774146,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.793684,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.80747,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.823435,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.842267,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.85683,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.873846,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.890187,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.907736,"dataLength":3000,"encodedDataLength":3000},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.925111,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.957411,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.974645,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8708.991725,"dataLength":3000,"encodedDataLength":3000},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.025795,"dataLength":3000,"encodedDataLength":3000},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.041701,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.058354,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.074614,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.09181,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.107291,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.124045,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.140391,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.157909,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.173624,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.190858,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.20907,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.225168,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.24141,"dataLength":3000,"encodedDataLength":3000},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.258841,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.27419,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.291609,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.308039,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.323808,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.341433,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.359145,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.389884,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.406718,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.423544,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.441361,"dataLength":3000,"encodedDataLength":3000},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.457721,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.474469,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.492274,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.5073,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.524584,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.541228,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.558657,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.574134,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.590662,"dataLength":1500,"encodedDataLength":1500},"targetType":"page"}, + {"method":"Network.dataReceived","params":{"requestId":"31161.42","timestamp":8709.607094,"dataLength":836,"encodedDataLength":843},"targetType":"page"}, + {"method":"Network.loadingFinished","params":{"requestId":"31161.42","timestamp":8709.600339,"encodedDataLength":112939,"shouldReportCorbBlocking":false},"targetType":"page"} ] diff --git a/core/test/results/sample_v2.json b/core/test/results/sample_v2.json index 14a5fa547071..adb2e4f085b0 100644 --- a/core/test/results/sample_v2.json +++ b/core/test/results/sample_v2.json @@ -1265,6 +1265,7 @@ "items": [ { "url": "http://localhost:10200/dobetterweb/dbw_tester.html", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 0, "networkRequestTime": 1.0220000017434359, @@ -1280,6 +1281,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.css?delay=100", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 602.3440000005066, "networkRequestTime": 603.5050000008196, @@ -1295,6 +1297,7 @@ }, { "url": "http://localhost:10200/dobetterweb/unknown404.css?delay=200", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 603.4030000008643, "networkRequestTime": 604.5170000009239, @@ -1310,6 +1313,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.css?delay=2200", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 604.4429999999702, "networkRequestTime": 605.3250000011176, @@ -1325,6 +1329,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_disabled.css?delay=200&isdisabled", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 605.8090000003576, "networkRequestTime": 606.7750000003725, @@ -1340,6 +1345,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&capped", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 607.1239999998361, "networkRequestTime": 607.7380000017583, @@ -1355,6 +1361,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.css?delay=2000&async=true", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 608.2609999999404, "networkRequestTime": 609.1710000000894, @@ -1371,6 +1378,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.css?delay=3000&async=true", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 609.1250000018626, "networkRequestTime": 609.8880000021309, @@ -1386,6 +1394,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.js", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 610.5200000014156, "networkRequestTime": 611.1189999990165, @@ -1401,6 +1410,7 @@ }, { "url": "http://localhost:10200/dobetterweb/empty_module.js?delay=500", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 611.4500000011176, "networkRequestTime": 612.7220000009984, @@ -1416,6 +1426,7 @@ }, { "url": "http://localhost:10200/dobetterweb/empty.css", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 620.672000002116, "networkRequestTime": 8073.07300000079, @@ -1431,6 +1442,7 @@ }, { "url": "http://localhost:10200/dobetterweb/fcp-delayer.js?delay=5000", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 659.1260000001639, "networkRequestTime": 660.0280000008643, @@ -1446,6 +1458,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar1", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 660.9970000013709, "networkRequestTime": 6385.375, @@ -1461,6 +1474,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr1", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 661.8369999993593, "networkRequestTime": 6764.208000000566, @@ -1476,6 +1490,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr2", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 661.945000000298, "networkRequestTime": 6766.048000000417, @@ -1491,6 +1506,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?isr3", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 662.6960000004619, "networkRequestTime": 6766.428999999538, @@ -1506,6 +1522,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-480x318.jpg", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 662.9379999991506, "networkRequestTime": 6766.955000001937, @@ -1521,6 +1538,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-rotating.gif", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 663.3130000010133, "networkRequestTime": 6767.415000000969, @@ -1536,6 +1554,7 @@ }, { "url": "http://localhost:10200/dobetterweb/third_party/aggressive-promise-polyfill.js", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 664.0730000007898, "networkRequestTime": 4181.699000000954, @@ -1551,6 +1570,7 @@ }, { "url": "http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 664.51600000076, "networkRequestTime": 5635.895999999717, @@ -1566,6 +1586,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-480x318.jpg?iar2", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 6841.868000000715, "networkRequestTime": 8009.196000002325, @@ -1581,6 +1602,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.css?scriptActivated&delay=200", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 6866.316999999806, "networkRequestTime": 6867.3460000008345, @@ -1596,6 +1618,7 @@ }, { "url": "http://localhost:10200/dobetterweb/dbw_tester.html", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 6868.923000000417, "networkRequestTime": 6870.570000002161, @@ -1611,6 +1634,7 @@ }, { "url": "blob:http://localhost:10200/3f2bc9df-684b-4541-837c-1590152ef65d", + "sessionTargetType": "page", "protocol": "blob", "rendererStartTime": 8017.373000001535, "networkRequestTime": 8017.373000001535, @@ -1626,6 +1650,7 @@ }, { "url": "filesystem:http://localhost:10200/temporary/empty-0.43448333410631723.png", + "sessionTargetType": "page", "protocol": "filesystem", "rendererStartTime": 8339.742000000551, "networkRequestTime": 8339.742000000551, @@ -1641,6 +1666,7 @@ }, { "url": "http://localhost:10200/favicon.ico", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 13105.274000000209, "networkRequestTime": 13106.621999999508, @@ -1656,6 +1682,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?lcp&redirect=lighthouse-1024x680.jpg%3Fredirected-lcp", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 7098.611999999732, "networkRequestTime": 7113.1310000009835, @@ -1670,6 +1697,7 @@ }, { "url": "http://localhost:10200/dobetterweb/lighthouse-1024x680.jpg?redirected-lcp", + "sessionTargetType": "page", "protocol": "http/1.1", "rendererStartTime": 10847.134999999776, "networkRequestTime": 10847.29600000009, diff --git a/core/test/scenarios/api-test-pptr.js b/core/test/scenarios/api-test-pptr.js index 76bc994db243..992fb56084b5 100644 --- a/core/test/scenarios/api-test-pptr.js +++ b/core/test/scenarios/api-test-pptr.js @@ -144,6 +144,55 @@ describe('Fraggle Rock API', function() { expect(erroredAudits).toHaveLength(0); }); + + // eslint-disable-next-line max-len + it('should know target type of network requests from frames created before timespan', async () => { + state.server.baseDir = `${LH_ROOT}/cli/test/fixtures`; + const {page, serverBaseUrl} = state; + + await page.goto(`${serverBaseUrl}/oopif-scripts-timespan.html`); + + const run = await api.startTimespan(state.page); + for (const iframe of page.frames()) { + if (iframe.url().includes('/oopif-simple-page.html')) { + iframe.click('button'); + } + } + await page.waitForNetworkIdle(); + const result = await run.endTimespan(); + + if (!result) throw new Error('Lighthouse failed to produce a result'); + + const networkRequestsDetails = /** @type {LH.Audit.Details.Table} */ ( + result.lhr.audits['network-requests'].details); + const networkRequests = networkRequestsDetails?.items + .map((r) => ({url: r.url, sessionTargetType: r.sessionTargetType})) + // @ts-expect-error + .sort((a, b) => a.url.localeCompare(b.url)); + expect(networkRequests).toHaveLength(4); + expect(networkRequests.filter(r => r.sessionTargetType === 'page')).toHaveLength(2); + expect(networkRequests.filter(r => r.sessionTargetType === 'iframe')).toHaveLength(2); + expect(networkRequests).toMatchInlineSnapshot(` +Array [ + Object { + "sessionTargetType": "page", + "url": "http://localhost:10200/simple-script.js", + }, + Object { + "sessionTargetType": "page", + "url": "http://localhost:10200/simple-worker.js", + }, + Object { + "sessionTargetType": "iframe", + "url": "http://localhost:10503/simple-script.js", + }, + Object { + "sessionTargetType": "iframe", + "url": "http://localhost:10503/simple-worker.js", + }, +] +`); + }); }); describe('navigation', () => { diff --git a/core/test/scenarios/pptr-test-utils.js b/core/test/scenarios/pptr-test-utils.js index 3992dca827bb..5bfe6e681653 100644 --- a/core/test/scenarios/pptr-test-utils.js +++ b/core/test/scenarios/pptr-test-utils.js @@ -40,7 +40,7 @@ function createTestState() { * @param {number=} port * @param {number=} secondaryPort */ - installServerHooks(port = 0, secondaryPort = 0) { + installServerHooks(port = 10200, secondaryPort = 10503) { before(async () => { this.server = new Server(port); this.secondaryServer = new Server(secondaryPort); diff --git a/types/protocol.d.ts b/types/protocol.d.ts index b957976ea27e..ea4f6f129bec 100644 --- a/types/protocol.d.ts +++ b/types/protocol.d.ts @@ -10,6 +10,8 @@ type CrdpEvents = CrdpMappings.Events; type CrdpCommands = CrdpMappings.Commands; declare module Protocol { + type TargetType = 'page' | 'iframe' | 'worker'; + /** * An intermediate type, used to create a record of all possible Crdp raw event * messages, keyed on method. e.g. { @@ -22,6 +24,7 @@ declare module Protocol { method: K, // Drop [] for `undefined` (so a JS value is valid). params: CrdpEvents[K] extends [] ? undefined: CrdpEvents[K][number] + targetType: TargetType; // If sessionId is not set, it means the event was from the root target. sessionId?: string; };