diff -Nru firefox-100.0+build2/browser/base/content/test/protectionsUI/browser_protectionsUI_dfpi_rollout.js firefox-100.0.1+build1/browser/base/content/test/protectionsUI/browser_protectionsUI_dfpi_rollout.js --- firefox-100.0+build2/browser/base/content/test/protectionsUI/browser_protectionsUI_dfpi_rollout.js 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/base/content/test/protectionsUI/browser_protectionsUI_dfpi_rollout.js 2022-05-15 18:23:12.000000000 +0000 @@ -18,23 +18,7 @@ const defaultPrefs = Services.prefs.getDefaultBranch(""); const previousDefaultCB = defaultPrefs.getIntPref(COOKIE_BEHAVIOR_PREF); -const SEARCH_PREFS_OPT_IN = [ - ["browser.search.param.google_channel_us", "tus7"], - ["browser.search.param.google_channel_row", "trow7"], - ["browser.search.param.bing_ptag", "MOZZ0000000031"], -]; - -const SEARCH_PREFS_OPT_OUT = [ - ["browser.search.param.google_channel_us", "tus7"], - ["browser.search.param.google_channel_row", "trow7"], - ["browser.search.param.bing_ptag", "MOZZ0000000031"], -]; - function cleanup() { - [...SEARCH_PREFS_OPT_IN, ...SEARCH_PREFS_OPT_OUT].forEach(([key]) => - Services.prefs.clearUserPref(key) - ); - [COOKIE_BEHAVIOR_PREF, PREF_DFPI_ENABLED_BY_DEFAULT].forEach( Services.prefs.clearUserPref ); @@ -47,22 +31,6 @@ Services.telemetry.scalarSet("privacy.dfpi_rollout_enabledByDefault", 2); } -function testSearchPrefState(optIn) { - let expectedPrefs = optIn ? SEARCH_PREFS_OPT_IN : SEARCH_PREFS_OPT_OUT; - - expectedPrefs.forEach(([key, value]) => { - ok( - Services.prefs.prefHasUserValue(key), - `Pref '${key}' should have user value.'` - ); - is( - Services.prefs.getStringPref(key), - value, - `Pref '${key}' should have correct value.` - ); - }); -} - function testTelemetryState(optIn) { let expectedValue; if (optIn == null) { @@ -100,7 +68,6 @@ defaultPrefs.getIntPref(COOKIE_BEHAVIOR_PREF), Ci.nsICookieService.BEHAVIOR_REJECT_TRACKER ); - testSearchPrefState(false); testTelemetryState(false); Services.prefs.setBoolPref(PREF_DFPI_ENABLED_BY_DEFAULT, true); @@ -108,7 +75,6 @@ defaultPrefs.getIntPref(COOKIE_BEHAVIOR_PREF), Ci.nsICookieService.BEHAVIOR_REJECT_TRACKER_AND_PARTITION_FOREIGN ); - testSearchPrefState(true); testTelemetryState(true); Services.prefs.setBoolPref(PREF_DFPI_ENABLED_BY_DEFAULT, false); @@ -116,7 +82,6 @@ defaultPrefs.getIntPref(COOKIE_BEHAVIOR_PREF), Ci.nsICookieService.BEHAVIOR_REJECT_TRACKER ); - testSearchPrefState(false); testTelemetryState(false); Services.prefs.setBoolPref(PREF_DFPI_ENABLED_BY_DEFAULT, true); @@ -124,7 +89,6 @@ defaultPrefs.getIntPref(COOKIE_BEHAVIOR_PREF), Ci.nsICookieService.BEHAVIOR_REJECT_TRACKER_AND_PARTITION_FOREIGN ); - testSearchPrefState(true); testTelemetryState(true); cleanup(); diff -Nru firefox-100.0+build2/browser/components/BrowserGlue.jsm firefox-100.0.1+build1/browser/components/BrowserGlue.jsm --- firefox-100.0+build2/browser/components/BrowserGlue.jsm 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/components/BrowserGlue.jsm 2022-05-15 18:23:12.000000000 +0000 @@ -1773,34 +1773,6 @@ "privacy.dfpi_rollout_enabledByDefault", dFPIEnabled ? 1 : 0 ); - - if (dFPIEnabled) { - Services.prefs.setStringPref( - "browser.search.param.google_channel_us", - "tus7" - ); - Services.prefs.setStringPref( - "browser.search.param.google_channel_row", - "trow7" - ); - Services.prefs.setStringPref( - "browser.search.param.bing_ptag", - "MOZZ0000000031" - ); - } else { - Services.prefs.setStringPref( - "browser.search.param.google_channel_us", - "tus7" - ); - Services.prefs.setStringPref( - "browser.search.param.google_channel_row", - "trow7" - ); - Services.prefs.setStringPref( - "browser.search.param.bing_ptag", - "MOZZ0000000031" - ); - } }, _setPrefExpectations() { diff -Nru firefox-100.0+build2/browser/components/newtab/content-src/asrouter/templates/CFR/templates/ExtensionDoorhanger.schema.json firefox-100.0.1+build1/browser/components/newtab/content-src/asrouter/templates/CFR/templates/ExtensionDoorhanger.schema.json --- firefox-100.0+build2/browser/components/newtab/content-src/asrouter/templates/CFR/templates/ExtensionDoorhanger.schema.json 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/components/newtab/content-src/asrouter/templates/CFR/templates/ExtensionDoorhanger.schema.json 2022-05-15 18:23:12.000000000 +0000 @@ -387,7 +387,7 @@ } } }, - "additionalProperties": false, + "additionalProperties": true, "required": [ "layout", "category", @@ -427,5 +427,6 @@ "required": ["id"] } }, + "additionalProperties": true, "required": ["id", "groups", "content", "targeting", "template", "trigger"] } diff -Nru firefox-100.0+build2/browser/components/newtab/test/xpcshell/test_PanelTestProvider.js firefox-100.0.1+build1/browser/components/newtab/test/xpcshell/test_PanelTestProvider.js --- firefox-100.0+build2/browser/components/newtab/test/xpcshell/test_PanelTestProvider.js 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/components/newtab/test/xpcshell/test_PanelTestProvider.js 2022-05-15 18:23:12.000000000 +0000 @@ -10,6 +10,7 @@ Cu.importGlobalProperties(["fetch"]); +let CFR_SCHEMA; let UPDATE_ACTION_SCHEMA; let WHATS_NEW_SCHEMA; let SPOTLIGHT_SCHEMA; @@ -20,6 +21,9 @@ return fetch(uri, { credentials: "omit" }).then(rsp => rsp.json()); } + CFR_SCHEMA = await fetchSchema( + "resource://activity-stream/schemas/CFR/ExtensionDoorhanger.schema.json" + ); UPDATE_ACTION_SCHEMA = await fetchSchema( "resource://activity-stream/schemas/OnboardingMessage/UpdateAction.schema.json" ); @@ -99,3 +103,35 @@ "There is one pb_newtab message" ); }); + +add_task(async function test_SpotlightAsCFR() { + let message = await PanelTestProvider.getMessages().then(msgs => + msgs.find(msg => msg.id === "TCP_SPOTLIGHT_MESSAGE_95") + ); + + message = { + ...message, + content: { + ...message.content, + category: "", + layout: "icon_and_message", + bucket_id: "", + notification_text: "", + heading_text: "", + text: "", + buttons: {}, + }, + }; + + assertSchema( + message, + CFR_SCHEMA, + "Munged spotlight message validates with CFR ExtensionDoorhanger schema" + ); + + assertSchema( + message, + SPOTLIGHT_SCHEMA, + "Munged Spotlight message validates with Spotlight schema" + ); +}); diff -Nru firefox-100.0+build2/browser/components/uitour/test/browser_UITour_colorway.js firefox-100.0.1+build1/browser/components/uitour/test/browser_UITour_colorway.js --- firefox-100.0+build2/browser/components/uitour/test/browser_UITour_colorway.js 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/components/uitour/test/browser_UITour_colorway.js 2022-05-15 18:23:12.000000000 +0000 @@ -40,6 +40,11 @@ add_UITour_task(async function test_setColorway() { const id = COLORWAY_IDS.at(0); + if (!id) { + info("No colorways to test"); + return; + } + await gContentAPI.setConfiguration("colorway", id); ok( @@ -50,6 +55,11 @@ add_UITour_task(async function test_anotherColorway() { const id = COLORWAY_IDS.at(-1); + if (!id) { + info("No colorways to test"); + return; + } + await gContentAPI.setConfiguration("colorway", id); ok( diff -Nru firefox-100.0+build2/browser/config/version_display.txt firefox-100.0.1+build1/browser/config/version_display.txt --- firefox-100.0+build2/browser/config/version_display.txt 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/config/version_display.txt 2022-05-15 18:23:12.000000000 +0000 @@ -1 +1 @@ -100.0 +100.0.1 diff -Nru firefox-100.0+build2/browser/config/version.txt firefox-100.0.1+build1/browser/config/version.txt --- firefox-100.0+build2/browser/config/version.txt 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/config/version.txt 2022-05-15 18:23:12.000000000 +0000 @@ -1 +1 @@ -100.0 +100.0.1 diff -Nru firefox-100.0+build2/browser/extensions/pictureinpicture/data/picture_in_picture_overrides.js firefox-100.0.1+build1/browser/extensions/pictureinpicture/data/picture_in_picture_overrides.js --- firefox-100.0+build2/browser/extensions/pictureinpicture/data/picture_in_picture_overrides.js 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/extensions/pictureinpicture/data/picture_in_picture_overrides.js 2022-05-15 18:23:12.000000000 +0000 @@ -12,13 +12,14 @@ // See PictureInPictureControls.jsm for these values. // eslint-disable-next-line no-unused-vars const TOGGLE_POLICIES = browser.pictureInPictureChild.getPolicies(); - const KEYBOARD_CONTROLS = browser.pictureInPictureChild.getKeyboardControls(); AVAILABLE_PIP_OVERRIDES = { // The keys of this object are match patterns for URLs, as documented in // https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns // // Example: + // const KEYBOARD_CONTROLS = browser.pictureInPictureChild.getKeyboardControls(); + // // // "https://*.youtube.com/*": { // policy: TOGGLE_POLICIES.THREE_QUARTERS, @@ -46,7 +47,6 @@ netflix: { "https://*.netflix.com/*": { - keyboardControls: ~KEYBOARD_CONTROLS.SEEK, videoWrapperScriptPath: "video-wrappers/netflix.js", }, "https://*.netflix.com/browse*": { policy: TOGGLE_POLICIES.HIDDEN }, diff -Nru firefox-100.0+build2/browser/extensions/pictureinpicture/video-wrappers/netflix.js firefox-100.0.1+build1/browser/extensions/pictureinpicture/video-wrappers/netflix.js --- firefox-100.0+build2/browser/extensions/pictureinpicture/video-wrappers/netflix.js 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/extensions/pictureinpicture/video-wrappers/netflix.js 2022-05-15 18:23:12.000000000 +0000 @@ -8,9 +8,21 @@ constructor() { let netflixPlayerAPI = window.wrappedJSObject.netflix.appContext.state.playerApp.getAPI() .videoPlayer; - let sessionId = netflixPlayerAPI.getAllPlayerSessionIds()[0]; + let sessionId = null; + for (let id of netflixPlayerAPI.getAllPlayerSessionIds()) { + if (id.startsWith("watch-")) { + sessionId = id; + break; + } + } this.player = netflixPlayerAPI.getVideoPlayerBySessionId(sessionId); } + getCurrentTime(video) { + return this.player.getCurrentTime(); + } + getDuration(video) { + return this.player.getDuration(); + } play() { this.player.play(); } @@ -24,17 +36,8 @@ if (container) { updateCaptionsFunction(""); const callback = function(mutationsList, observer) { - let textNodeList = container - .querySelector(".player-timedtext") - ?.querySelectorAll("span"); - if (!textNodeList || textNodeList.length < 1) { - updateCaptionsFunction(""); - return; - } - - updateCaptionsFunction( - Array.from(textNodeList, x => x.textContent).join("\n") - ); + let text = container.querySelector(".player-timedtext").innerText; + updateCaptionsFunction(text); }; // immediately invoke the callback function to add subtitles to the PiP window @@ -49,6 +52,31 @@ }); } } + + setCurrentTime(video, position) { + let oldTime = this.player.getCurrentTime(); + let duration = this.player.getDuration(); + let isHome = position == 0; + let isEnd = position >= duration; + // Read pipChild's expected seek result to determine if we want + // to move forward/backwards, or go to the start/end + let seekDirection = position - oldTime; + // But ignore pipChild's proposed seek forward/backward time for a better viewing + // experience. 10 seconds (10000ms) seems to be the best value for compatibility. + // The new currentTime will not always be 10 seconds forward/backward though, since Netflix + // adjusts the new currentTime when seek() is called, according to the current timestamp. + let seekTimeMS = 10000; + let newTime = 0; + + if (isHome || isEnd) { + newTime = position; + } else if (seekDirection < 0) { + newTime = Math.max(oldTime - seekTimeMS, 0); + } else if (seekDirection > 0) { + newTime = Math.min(oldTime + seekTimeMS, duration); + } + this.player.seek(newTime); + } } this.PictureInPictureVideoWrapper = PictureInPictureVideoWrapper; diff -Nru firefox-100.0+build2/browser/extensions/webcompat/data/ua_overrides.js firefox-100.0.1+build1/browser/extensions/webcompat/data/ua_overrides.js --- firefox-100.0+build2/browser/extensions/webcompat/data/ua_overrides.js 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/extensions/webcompat/data/ua_overrides.js 2022-05-15 18:23:12.000000000 +0000 @@ -714,11 +714,14 @@ bug: "1743429", config: { matches: [ + "*://*.commerzbank.de/*", // Bug 1767630 "*://*.edf.com/*", // Bug 1764786 "*://*.wordpress.org/*", // Bug 1743431 "*://bethesda.net/*", // #94607 "*://cdn-vzn.yottaa.net/*", // Bug 1764795 "*://citoyens.telerecours.fr/*", // #101066 + "*://www.connexus.com/*", // Bug 1765925 + "*://dsae.co.za/*", // Bug 1765925 "*://genehmigung.ahs-vwa.at/*", // #100063 "*://moje.pzu.pl/*", // #99772 "*://mon.allianzbanque.fr/*", // #101074 @@ -809,9 +812,9 @@ "*://www.southportvisiter.co.uk/*", // Bug 1762928 (Reach Plc) "*://www.staffordshire-live.co.uk/*", // Bug 1762928 (Reach Plc) "*://www.stokesentinel.co.uk/*", // Bug 1762928 (Reach Plc) + "*://survey.sogosurvey.com/*", // Bug 1765925 "*://www.sussexlive.co.uk/*", // Bug 1762928 (Reach Plc) "*://www.tm-awx.com/*", // Bug 1762928 (Reach Plc) - "*://www.twitch.tv/*", // Bug 1764591 "*://www.walesonline.co.uk/*", // Bug 1762928 (Reach Plc) "*://www.wharf.co.uk/*", // Bug 1762928 (Reach Plc) ], diff -Nru firefox-100.0+build2/browser/extensions/webcompat/manifest.json firefox-100.0.1+build1/browser/extensions/webcompat/manifest.json --- firefox-100.0+build2/browser/extensions/webcompat/manifest.json 2022-04-29 06:34:38.000000000 +0000 +++ firefox-100.0.1+build1/browser/extensions/webcompat/manifest.json 2022-05-15 18:23:12.000000000 +0000 @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Web Compatibility Interventions", "description": "Urgent post-release fixes for web compatibility.", - "version": "100.2.0", + "version": "100.2.1", "applications": { "gecko": { "id": "webcompat@mozilla.org", diff -Nru firefox-100.0+build2/browser/themes/shared/spotlight.css firefox-100.0.1+build1/browser/themes/shared/spotlight.css --- firefox-100.0+build2/browser/themes/shared/spotlight.css 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/browser/themes/shared/spotlight.css 2022-05-15 18:23:12.000000000 +0000 @@ -10,7 +10,7 @@ * scrollbar. This should be okay as we wrap content for this fixed width * dialog unless the window is actually narrow and really does need * horizontal scrollbars. */ -@media (min-width: 604px) { +@media (min-width: 544px) { body { overflow-x: hidden; } @@ -18,7 +18,8 @@ body { padding: 20px 40px; - width: 465px; + /* Keep as multiple of 4px. Match min-width media query above + padding. */ + width: 464px; } #dialog-content { diff -Nru firefox-100.0+build2/BUILDID firefox-100.0.1+build1/BUILDID --- firefox-100.0+build2/BUILDID 2022-04-29 06:45:27.000000000 +0000 +++ firefox-100.0.1+build1/BUILDID 2022-05-15 18:34:17.000000000 +0000 @@ -1 +1 @@ -20220428192727 \ No newline at end of file +20220513165813 \ No newline at end of file diff -Nru firefox-100.0+build2/config/milestone.txt firefox-100.0.1+build1/config/milestone.txt --- firefox-100.0+build2/config/milestone.txt 2022-04-29 06:34:37.000000000 +0000 +++ firefox-100.0.1+build1/config/milestone.txt 2022-05-15 18:23:12.000000000 +0000 @@ -10,4 +10,4 @@ # hardcoded milestones in the tree from these two files. #-------------------------------------------------------- -100.0 +100.0.1 diff -Nru firefox-100.0+build2/debian/changelog firefox-100.0.1+build1/debian/changelog --- firefox-100.0+build2/debian/changelog 2022-04-29 11:30:01.000000000 +0000 +++ firefox-100.0.1+build1/debian/changelog 2022-05-15 18:01:38.000000000 +0000 @@ -1,3 +1,9 @@ +firefox (100.0.1+build1-0ubuntu0.21.10.1) impish; urgency=medium + + * New upstream release (100.0.1+build1) + + -- Olivier Tilloy Sun, 15 May 2022 20:01:38 +0200 + firefox (100.0+build2-0ubuntu0.21.10.1) impish; urgency=medium * New upstream release (100.0+build2) diff -Nru firefox-100.0+build2/dom/media/ipc/MediaIPCUtils.h firefox-100.0.1+build1/dom/media/ipc/MediaIPCUtils.h --- firefox-100.0+build2/dom/media/ipc/MediaIPCUtils.h 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/ipc/MediaIPCUtils.h 2022-05-15 18:23:15.000000000 +0000 @@ -33,6 +33,7 @@ WriteParam(aWriter, aParam.mRotation); WriteParam(aWriter, aParam.mColorDepth); WriteParam(aWriter, aParam.mColorSpace); + WriteParam(aWriter, aParam.mTransferFunction); WriteParam(aWriter, aParam.mColorRange); WriteParam(aWriter, aParam.HasAlpha()); } @@ -50,6 +51,7 @@ ReadParam(aReader, &aResult->mRotation) && ReadParam(aReader, &aResult->mColorDepth) && ReadParam(aReader, &aResult->mColorSpace) && + ReadParam(aReader, &aResult->mTransferFunction) && ReadParam(aReader, &aResult->mColorRange) && ReadParam(aReader, &alphaPresent)) { aResult->SetAlpha(alphaPresent); diff -Nru firefox-100.0+build2/dom/media/MediaData.cpp firefox-100.0.1+build1/dom/media/MediaData.cpp --- firefox-100.0+build2/dom/media/MediaData.cpp 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/MediaData.cpp 2022-05-15 18:23:16.000000000 +0000 @@ -273,6 +273,9 @@ data.mStereoMode = aInfo.mStereoMode; data.mYUVColorSpace = aBuffer.mYUVColorSpace; data.mColorDepth = aBuffer.mColorDepth; + if (aInfo.mTransferFunction) { + data.mTransferFunction = *aInfo.mTransferFunction; + } data.mColorRange = aBuffer.mColorRange; data.mChromaSubsampling = aBuffer.mChromaSubsampling; return data; diff -Nru firefox-100.0+build2/dom/media/MediaInfo.h firefox-100.0.1+build1/dom/media/MediaInfo.h --- firefox-100.0+build2/dom/media/MediaInfo.h 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/MediaInfo.h 2022-05-15 18:23:15.000000000 +0000 @@ -244,8 +244,16 @@ // Should be 8, 10 or 12. Default value is 8. gfx::ColorDepth mColorDepth = gfx::ColorDepth::COLOR_8; + // Matrix coefficients (if specified by the video) imply a colorspace. Maybe mColorSpace; + // Color primaries are assumed to match the colorspace. + + // Transfer functions get their own member, since we support different + // values for the BT2020 primaries. For other colorspaces, this member + // is ignored. + Maybe mTransferFunction; + // True indicates no restriction on Y, U, V values (otherwise 16-235 for 8 // bits etc) gfx::ColorRange mColorRange = gfx::ColorRange::LIMITED; diff -Nru firefox-100.0+build2/dom/media/platforms/apple/AppleVTDecoder.cpp firefox-100.0.1+build1/dom/media/platforms/apple/AppleVTDecoder.cpp --- firefox-100.0+build2/dom/media/platforms/apple/AppleVTDecoder.cpp 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/platforms/apple/AppleVTDecoder.cpp 2022-05-15 18:23:15.000000000 +0000 @@ -44,6 +44,8 @@ mColorSpace(aConfig.mColorSpace ? *aConfig.mColorSpace : DefaultColorSpace({mPictureWidth, mPictureHeight})), + mTransferFunction(aConfig.mTransferFunction ? *aConfig.mTransferFunction + : gfx::TransferFunction::PQ), mColorRange(aConfig.mColorRange), mColorDepth(aConfig.mColorDepth), mStreamType(MP4Decoder::IsH264(aConfig.mMimeType) ? StreamType::H264 @@ -429,6 +431,8 @@ } else { #if !defined(MAC_OS_VERSION_10_13) || \ MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_VERSION_10_13 + CFStringRef kCVImageBufferTransferFunction_ITU_R_2100_HLG = + CFSTR("ITU_R_2100_HLG"); CFStringRef kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ = CFSTR("SMPTE_ST_2084_PQ"); #endif @@ -458,9 +462,12 @@ CVBufferSetAttachment(aImage, kCVImageBufferColorPrimariesKey, kCVImageBufferColorPrimaries_ITU_R_2020, kCVAttachmentMode_ShouldPropagate); - CVBufferSetAttachment(aImage, kCVImageBufferTransferFunctionKey, - kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ, - kCVAttachmentMode_ShouldPropagate); + CVBufferSetAttachment( + aImage, kCVImageBufferTransferFunctionKey, + (mTransferFunction == gfx::TransferFunction::HLG) + ? kCVImageBufferTransferFunction_ITU_R_2100_HLG + : kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ, + kCVAttachmentMode_ShouldPropagate); } CFTypeRefPtr surface = diff -Nru firefox-100.0+build2/dom/media/platforms/apple/AppleVTDecoder.h firefox-100.0.1+build1/dom/media/platforms/apple/AppleVTDecoder.h --- firefox-100.0+build2/dom/media/platforms/apple/AppleVTDecoder.h 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/platforms/apple/AppleVTDecoder.h 2022-05-15 18:23:16.000000000 +0000 @@ -91,6 +91,7 @@ const uint32_t mDisplayWidth; const uint32_t mDisplayHeight; const gfx::YUVColorSpace mColorSpace; + const gfx::TransferFunction mTransferFunction; const gfx::ColorRange mColorRange; const gfx::ColorDepth mColorDepth; diff -Nru firefox-100.0+build2/dom/media/platforms/wrappers/MediaChangeMonitor.cpp firefox-100.0.1+build1/dom/media/platforms/wrappers/MediaChangeMonitor.cpp --- firefox-100.0+build2/dom/media/platforms/wrappers/MediaChangeMonitor.cpp 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/platforms/wrappers/MediaChangeMonitor.cpp 2022-05-15 18:23:15.000000000 +0000 @@ -14,6 +14,7 @@ #include "MediaInfo.h" #include "PDMFactory.h" #include "VPXDecoder.h" +#include "gfxUtils.h" #include "mozilla/ProfilerMarkers.h" #include "mozilla/StaticPrefs_media.h" #include "mozilla/TaskQueue.h" @@ -138,6 +139,11 @@ mCurrentConfig.mDisplay.height = spsdata.display_height; mCurrentConfig.mColorDepth = spsdata.ColorDepth(); mCurrentConfig.mColorSpace = Some(spsdata.ColorSpace()); + // spsdata.transfer_characteristics has the same values as + // gfx::CICP::TransferCharacteristics. + mCurrentConfig.mTransferFunction = gfxUtils::CicpToTransferFunction( + static_cast( + spsdata.transfer_characteristics)); mCurrentConfig.mColorRange = spsdata.video_full_range_flag ? gfx::ColorRange::FULL : gfx::ColorRange::LIMITED; @@ -246,6 +252,14 @@ } mCurrentConfig.mColorDepth = gfx::ColorDepthForBitDepth(info.mBitDepth); mCurrentConfig.mColorSpace = Some(info.ColorSpace()); + + // We don't update the transfer function here, because VPX bitstream + // doesn't specify the transfer function. Instead, we keep the transfer + // function (if any) that was set in mCurrentConfig when we were created. + // If a video changes colorspaces away from BT2020, we won't clear + // mTransferFunction, in case the video changes back to BT2020 and we + // need the value again. + mCurrentConfig.mColorRange = info.ColorRange(); if (mCodec == VPXDecoder::Codec::VP9) { VPXDecoder::GetVPCCBox(mCurrentConfig.mExtraData, info); diff -Nru firefox-100.0+build2/dom/media/webm/WebMDemuxer.cpp firefox-100.0.1+build1/dom/media/webm/WebMDemuxer.cpp --- firefox-100.0+build2/dom/media/webm/WebMDemuxer.cpp 2022-04-29 06:34:40.000000000 +0000 +++ firefox-100.0.1+build1/dom/media/webm/WebMDemuxer.cpp 2022-05-15 18:23:16.000000000 +0000 @@ -14,6 +14,7 @@ #include "WebMDemuxer.h" #include "WebMBufferedParser.h" #include "gfx2DGlue.h" +#include "gfxUtils.h" #include "mozilla/EndianUtils.h" #include "mozilla/SharedThreadPool.h" #include "MediaDataDemuxer.h" @@ -305,6 +306,15 @@ NS_WARNING("Unknown WebM video codec"); return NS_ERROR_FAILURE; } + + // For VPX, this is our only chance to capture the transfer + // characteristics, which we can't get from a VPX bitstream later. + // We only need this value if the video is using the BT2020 + // colorspace, which will be determined on a per-frame basis later. + mInfo.mVideo.mTransferFunction = gfxUtils::CicpToTransferFunction( + static_cast( + params.transfer_characteristics)); + // Picture region, taking into account cropping, before scaling // to the display size. unsigned int cropH = params.crop_right + params.crop_left; diff -Nru firefox-100.0+build2/gfx/2d/MacIOSurface.cpp firefox-100.0.1+build1/gfx/2d/MacIOSurface.cpp --- firefox-100.0+build2/gfx/2d/MacIOSurface.cpp 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/2d/MacIOSurface.cpp 2022-05-15 18:23:17.000000000 +0000 @@ -122,7 +122,8 @@ /* static */ already_AddRefed MacIOSurface::CreateNV12OrP010Surface( const IntSize& aYSize, const IntSize& aCbCrSize, YUVColorSpace aColorSpace, - ColorRange aColorRange, ColorDepth aColorDepth) { + TransferFunction aTransferFunction, ColorRange aColorRange, + ColorDepth aColorDepth) { MOZ_ASSERT(aColorSpace == YUVColorSpace::BT601 || aColorSpace == YUVColorSpace::BT709 || aColorSpace == YUVColorSpace::BT2020); @@ -209,12 +210,10 @@ // the same. Since we are creating the IOSurface directly, we use hard-coded // keys derived from inspecting the extracted IOSurfaces in the copying case, // but we use the API-defined values from CVImageBuffer. - - // TODO: Check the actual color primaries and transfer functions of the source - // data and use the corresponding values, instead of just guessing good-enough - // values based on the color space. #if !defined(MAC_OS_VERSION_10_13) || \ MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_VERSION_10_13 + CFStringRef kCVImageBufferTransferFunction_ITU_R_2100_HLG = + CFSTR("ITU_R_2100_HLG"); CFStringRef kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ = CFSTR("SMPTE_ST_2084_PQ"); #endif @@ -230,16 +229,14 @@ IOSurfaceSetValue(surfaceRef.get(), CFSTR("IOSurfaceTransferFunction"), kCVImageBufferTransferFunction_ITU_R_709_2); } else { - // TODO Bug 1764618: we shouldn't guess these color primaries and transfer - // functions -- we should respect what the video specifies. IOSurfaceSetValue(surfaceRef.get(), CFSTR("IOSurfaceYCbCrMatrix"), kCVImageBufferYCbCrMatrix_ITU_R_2020); IOSurfaceSetValue(surfaceRef.get(), CFSTR("IOSurfaceColorPrimaries"), kCVImageBufferColorPrimaries_ITU_R_2020); IOSurfaceSetValue(surfaceRef.get(), CFSTR("IOSurfaceTransferFunction"), - kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ); - NS_WARNING( - "Rec2020 transfer function is ambiguous, guessing PQ instead of HLG."); + (aTransferFunction == TransferFunction::HLG) + ? kCVImageBufferTransferFunction_ITU_R_2100_HLG + : kCVImageBufferTransferFunction_SMPTE_ST_2084_PQ); } // Override the color space to be the same as the main display, so that // CoreAnimation won't try to do any color correction (from the IOSurface diff -Nru firefox-100.0+build2/gfx/2d/MacIOSurface.h firefox-100.0.1+build1/gfx/2d/MacIOSurface.h --- firefox-100.0+build2/gfx/2d/MacIOSurface.h 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/2d/MacIOSurface.h 2022-05-15 18:23:17.000000000 +0000 @@ -50,6 +50,7 @@ typedef mozilla::gfx::BackendType BackendType; typedef mozilla::gfx::IntSize IntSize; typedef mozilla::gfx::YUVColorSpace YUVColorSpace; + typedef mozilla::gfx::TransferFunction TransferFunction; typedef mozilla::gfx::ColorRange ColorRange; typedef mozilla::gfx::ColorDepth ColorDepth; @@ -61,8 +62,8 @@ bool aHasAlpha = true); static already_AddRefed CreateNV12OrP010Surface( const IntSize& aYSize, const IntSize& aCbCrSize, - YUVColorSpace aColorSpace, ColorRange aColorRange, - ColorDepth aColorDepth); + YUVColorSpace aColorSpace, TransferFunction aTransferFunction, + ColorRange aColorRange, ColorDepth aColorDepth); static already_AddRefed CreateYUV422Surface( const IntSize& aSize, YUVColorSpace aColorSpace, ColorRange aColorRange); static void ReleaseIOSurface(MacIOSurface* aIOSurface); diff -Nru firefox-100.0+build2/gfx/2d/Types.h firefox-100.0.1+build1/gfx/2d/Types.h --- firefox-100.0+build2/gfx/2d/Types.h 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/2d/Types.h 2022-05-15 18:23:17.000000000 +0000 @@ -349,6 +349,15 @@ _Last = COLOR_16, }; +enum class TransferFunction : uint8_t { + SRGB, + PQ, + HLG, + _First = SRGB, + _Last = HLG, + Default = SRGB, +}; + enum class ColorRange : uint8_t { LIMITED, FULL, diff -Nru firefox-100.0+build2/gfx/ipc/GfxMessageUtils.h firefox-100.0.1+build1/gfx/ipc/GfxMessageUtils.h --- firefox-100.0+build2/gfx/ipc/GfxMessageUtils.h 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/ipc/GfxMessageUtils.h 2022-05-15 18:23:17.000000000 +0000 @@ -687,6 +687,13 @@ mozilla::gfx::ColorDepth::_Last> {}; template <> +struct ParamTraits + : public ContiguousEnumSerializerInclusive< + mozilla::gfx::TransferFunction, + mozilla::gfx::TransferFunction::_First, + mozilla::gfx::TransferFunction::_Last> {}; + +template <> struct ParamTraits : public ContiguousEnumSerializerInclusive< mozilla::gfx::ColorRange, mozilla::gfx::ColorRange::_First, diff -Nru firefox-100.0+build2/gfx/layers/ImageContainer.h firefox-100.0.1+build1/gfx/layers/ImageContainer.h --- firefox-100.0+build2/gfx/layers/ImageContainer.h 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/layers/ImageContainer.h 2022-05-15 18:23:17.000000000 +0000 @@ -649,6 +649,7 @@ StereoMode mStereoMode = StereoMode::MONO; gfx::ColorDepth mColorDepth = gfx::ColorDepth::COLOR_8; gfx::YUVColorSpace mYUVColorSpace = gfx::YUVColorSpace::Default; + gfx::TransferFunction mTransferFunction = gfx::TransferFunction::SRGB; gfx::ColorRange mColorRange = gfx::ColorRange::LIMITED; gfx::ChromaSubsampling mChromaSubsampling = gfx::ChromaSubsampling::FULL; diff -Nru firefox-100.0+build2/gfx/layers/MacIOSurfaceImage.cpp firefox-100.0.1+build1/gfx/layers/MacIOSurfaceImage.cpp --- firefox-100.0+build2/gfx/layers/MacIOSurfaceImage.cpp 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/layers/MacIOSurfaceImage.cpp 2022-05-15 18:23:17.000000000 +0000 @@ -71,9 +71,9 @@ auto ySize = aData.YDataSize(); auto cbcrSize = aData.CbCrDataSize(); - RefPtr surf = - allocator->Allocate(ySize, cbcrSize, aData.mYUVColorSpace, - aData.mColorRange, aData.mColorDepth); + RefPtr surf = allocator->Allocate( + ySize, cbcrSize, aData.mYUVColorSpace, aData.mTransferFunction, + aData.mColorRange, aData.mColorDepth); surf->Lock(false); @@ -200,8 +200,8 @@ already_AddRefed MacIOSurfaceRecycleAllocator::Allocate( const gfx::IntSize aYSize, const gfx::IntSize& aCbCrSize, - gfx::YUVColorSpace aYUVColorSpace, gfx::ColorRange aColorRange, - gfx::ColorDepth aColorDepth) { + gfx::YUVColorSpace aYUVColorSpace, gfx::TransferFunction aTransferFunction, + gfx::ColorRange aColorRange, gfx::ColorDepth aColorDepth) { nsTArray> surfaces = std::move(mSurfaces); RefPtr result; for (auto& surf : surfaces) { @@ -224,7 +224,8 @@ if (!result) { if (StaticPrefs::layers_iosurfaceimage_use_nv12_AtStartup()) { result = MacIOSurface::CreateNV12OrP010Surface( - aYSize, aCbCrSize, aYUVColorSpace, aColorRange, aColorDepth); + aYSize, aCbCrSize, aYUVColorSpace, aTransferFunction, aColorRange, + aColorDepth); } else { result = MacIOSurface::CreateYUV422Surface(aYSize, aYUVColorSpace, aColorRange); diff -Nru firefox-100.0+build2/gfx/layers/MacIOSurfaceImage.h firefox-100.0.1+build1/gfx/layers/MacIOSurfaceImage.h --- firefox-100.0+build2/gfx/layers/MacIOSurfaceImage.h 2022-04-29 06:34:41.000000000 +0000 +++ firefox-100.0.1+build1/gfx/layers/MacIOSurfaceImage.h 2022-05-15 18:23:17.000000000 +0000 @@ -54,11 +54,11 @@ public: NS_INLINE_DECL_THREADSAFE_REFCOUNTING(MacIOSurfaceRecycleAllocator) - already_AddRefed Allocate(const gfx::IntSize aYSize, - const gfx::IntSize& aCbCrSize, - gfx::YUVColorSpace aYUVColorSpace, - gfx::ColorRange aColorRange, - gfx::ColorDepth aColorDepth); + already_AddRefed Allocate( + const gfx::IntSize aYSize, const gfx::IntSize& aCbCrSize, + gfx::YUVColorSpace aYUVColorSpace, + gfx::TransferFunction aTransferFunction, gfx::ColorRange aColorRange, + gfx::ColorDepth aColorDepth); private: ~MacIOSurfaceRecycleAllocator() = default; diff -Nru firefox-100.0+build2/gfx/thebes/gfxUtils.cpp firefox-100.0.1+build1/gfx/thebes/gfxUtils.cpp --- firefox-100.0+build2/gfx/thebes/gfxUtils.cpp 2022-04-29 06:34:42.000000000 +0000 +++ firefox-100.0.1+build1/gfx/thebes/gfxUtils.cpp 2022-05-15 18:23:18.000000000 +0000 @@ -1381,6 +1381,26 @@ } } +// Translate from CICP values to the transfer functions we support, or return +// Nothing() if there is no appropriate match. +// +/* static */ Maybe gfxUtils::CicpToTransferFunction( + const CICP::TransferCharacteristics aTransferCharacteristics) { + switch (aTransferCharacteristics) { + case CICP::TransferCharacteristics::TC_SRGB: + return Some(gfx::TransferFunction::SRGB); + + case CICP::TransferCharacteristics::TC_SMPTE2084: + return Some(gfx::TransferFunction::PQ); + + case CICP::TransferCharacteristics::TC_HLG: + return Some(gfx::TransferFunction::HLG); + + default: + return {}; + } +} + /* static */ void gfxUtils::WriteAsPNG(SourceSurface* aSurface, const nsAString& aFile) { WriteAsPNG(aSurface, NS_ConvertUTF16toUTF8(aFile).get()); diff -Nru firefox-100.0+build2/gfx/thebes/gfxUtils.h firefox-100.0.1+build1/gfx/thebes/gfxUtils.h --- firefox-100.0+build2/gfx/thebes/gfxUtils.h 2022-04-29 06:34:42.000000000 +0000 +++ firefox-100.0.1+build1/gfx/thebes/gfxUtils.h 2022-05-15 18:23:18.000000000 +0000 @@ -232,6 +232,9 @@ const mozilla::gfx::CICP::ColourPrimaries, mozilla::LazyLogModule& aLogger); + static mozilla::Maybe CicpToTransferFunction( + const mozilla::gfx::CICP::TransferCharacteristics); + /** * Creates a copy of aSurface, but having the SurfaceFormat aFormat. * diff -Nru firefox-100.0+build2/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/SessionAccessibility.java firefox-100.0.1+build1/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/SessionAccessibility.java --- firefox-100.0+build2/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/SessionAccessibility.java 2022-04-29 06:34:51.000000000 +0000 +++ firefox-100.0.1+build1/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/SessionAccessibility.java 2022-05-15 18:23:30.000000000 +0000 @@ -176,7 +176,7 @@ AccessibilityNodeInfo node = null; if (mAttached) { node = - mSession.getSettings().getFullAccessibilityTree() || nativeProvider.isCacheEnabled() + mSession.getSettings().getFullAccessibilityTree() || isCacheEnabled() ? getNodeFromGecko(virtualDescendantId) : getNodeFromCache(virtualDescendantId); } @@ -824,7 +824,7 @@ } final GeckoBundle cachedBundle = getMostRecentBundle(sourceId); - if (cachedBundle == null && sourceId != View.NO_ID && !nativeProvider.isCacheEnabled()) { + if (cachedBundle == null && sourceId != View.NO_ID && !isCacheEnabled()) { // Suppress events from non cached nodes. return; } @@ -838,7 +838,7 @@ if (eventClassName == CLASSNAME_UNKNOWN) { if (cachedBundle != null) { eventClassName = cachedBundle.getInt("className"); - } else if (nativeProvider.isCacheEnabled()) { + } else if (isCacheEnabled()) { final GeckoBundle bundle = nativeProvider.getNodeInfo(sourceId); if (bundle != null) { eventClassName = bundle.getInt("className"); @@ -968,7 +968,7 @@ return false; } - if (nativeProvider.isCacheEnabled()) { + if (isCacheEnabled()) { return cachedPivot(id, granularity, forward, inclusive); } @@ -1006,6 +1006,10 @@ return success; } + private boolean isCacheEnabled() { + return mAttached && nativeProvider.isCacheEnabled(); + } + /* package */ final class NativeProvider extends JNIObject { @WrapForJNI(calledFrom = "ui") private void setAttached(final boolean attached) { diff -Nru firefox-100.0+build2/modules/libpref/init/all.js firefox-100.0.1+build1/modules/libpref/init/all.js --- firefox-100.0+build2/modules/libpref/init/all.js 2022-04-29 06:34:51.000000000 +0000 +++ firefox-100.0.1+build1/modules/libpref/init/all.js 2022-05-15 18:23:30.000000000 +0000 @@ -410,11 +410,7 @@ pref("media.decoder-doctor.new-issue-endpoint", "https://webcompat.com/issues/new"); pref("media.videocontrols.picture-in-picture.enabled", false); -#ifdef NIGHTLY_BUILD pref("media.videocontrols.picture-in-picture.display-text-tracks.enabled", true); -#else -pref("media.videocontrols.picture-in-picture.display-text-tracks.enabled", false); -#endif pref("media.videocontrols.picture-in-picture.video-toggle.enabled", false); pref("media.videocontrols.picture-in-picture.video-toggle.always-show", false); pref("media.videocontrols.picture-in-picture.video-toggle.min-video-secs", 45); diff -Nru firefox-100.0+build2/modules/libpref/init/StaticPrefList.yaml firefox-100.0.1+build1/modules/libpref/init/StaticPrefList.yaml --- firefox-100.0+build2/modules/libpref/init/StaticPrefList.yaml 2022-04-29 06:34:51.000000000 +0000 +++ firefox-100.0.1+build1/modules/libpref/init/StaticPrefList.yaml 2022-05-15 18:23:30.000000000 +0000 @@ -10767,7 +10767,7 @@ - name: network.http.http2.websockets type: RelaxedAtomicBool - value: true + value: false mirror: always - name: network.http.http2.enable-hpack-dump @@ -11795,7 +11795,7 @@ # true means win32k system calls are not permitted. - name: security.sandbox.content.win32k-disable type: RelaxedAtomicBool - value: @IS_EARLY_BETA_OR_EARLIER@ + value: true mirror: always # Note: win32k is currently _not_ disabled for GMP due to intermittent test diff -Nru firefox-100.0+build2/python/mozboot/mozboot/android-packages.txt firefox-100.0.1+build1/python/mozboot/mozboot/android-packages.txt --- firefox-100.0+build2/python/mozboot/mozboot/android-packages.txt 2022-04-29 06:34:51.000000000 +0000 +++ firefox-100.0.1+build1/python/mozboot/mozboot/android-packages.txt 2022-05-15 18:23:30.000000000 +0000 @@ -1,3 +1,4 @@ +emulator platform-tools build-tools;31.0.0 platforms;android-31 diff -Nru firefox-100.0+build2/services/settings/dumps/blocklists/addons-bloomfilters.json firefox-100.0.1+build1/services/settings/dumps/blocklists/addons-bloomfilters.json --- firefox-100.0+build2/services/settings/dumps/blocklists/addons-bloomfilters.json 2022-04-29 06:34:53.000000000 +0000 +++ firefox-100.0.1+build1/services/settings/dumps/blocklists/addons-bloomfilters.json 2022-05-15 18:23:32.000000000 +0000 @@ -3,6 +3,134 @@ { "stash": { "blocked": [ + "{f37a3632-0bcc-46e6-aae9-a41c18420d56}:1.0.1" + ], + "unblocked": [] + }, + "schema": 1652099875037, + "key_format": "{guid}:{version}", + "stash_time": 1652294108214, + "id": "7e175be8-6713-4fe1-828b-aff57f6651c0", + "last_modified": 1652294280350 + }, + { + "stash": { + "blocked": [ + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.2.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.22.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.1.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.19.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.6.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.25.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.6", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.9.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.3", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.4", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.6.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.18.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.15.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.14.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.21.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.12.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.17.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.9.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.12.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.7.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.15.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.5", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.10.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.11.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.12.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.19.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.8.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.8", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.20.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:1.8.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.2.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.15.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.13.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.10.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.0.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.13.3", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.24.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.12.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.9.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.1.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.24.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.9.3", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.11.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.6.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.9.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.6.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.10.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.13.4", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.5.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.24.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.13.2", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.8.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.3.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.13.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.12.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.15.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.5.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.23.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.4.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.17.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.16.9", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.21.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.26.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.7.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.14.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.1.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.13.1", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.3.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.4.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.16.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:3.2.0", + "{82135e8f-86d7-4cca-b1cd-a0d8f8396d06}:2.2.0" + ], + "unblocked": [] + }, + "schema": 1651775874861, + "key_format": "{guid}:{version}", + "stash_time": 1652099707040, + "id": "8e2781f1-4410-47c4-b37e-0941341c00bf", + "last_modified": 1652099874990 + }, + { + "stash": { + "blocked": [ + "{dffc3097-6798-4e76-afb6-dcecd91c77cc}:1.0" + ], + "unblocked": [] + }, + "schema": 1651497331023, + "key_format": "{guid}:{version}", + "stash_time": 1651775707909, + "id": "19c83adb-4509-4a36-a8c4-27ac01bad22f", + "last_modified": 1651775874807 + }, + { + "stash": { + "blocked": [ + "{06c64973-abc7-4bfe-a569-3ce2ca77d3be}:5.1.0", + "{86a2b09b-f6b0-4eec-a0c3-2ea5d0414c46}:1.0.2", + "{567f2fd5-3d33-4ee6-b1d4-b6c4dfaec43a}:1.0" + ], + "unblocked": [] + }, + "schema": 1651084687010, + "key_format": "{guid}:{version}", + "stash_time": 1651170906940, + "id": "131b9bf7-9abf-4aa3-9a8a-08ec8c21e489", + "last_modified": 1651171060377 + }, + { + "stash": { + "blocked": [ "{7b68c521-bec3-431b-9d81-7a09b44aafba}:1.0" ], "unblocked": [] diff -Nru firefox-100.0+build2/services/settings/dumps/main/devtools-compatibility-browsers.json firefox-100.0.1+build1/services/settings/dumps/main/devtools-compatibility-browsers.json --- firefox-100.0+build2/services/settings/dumps/main/devtools-compatibility-browsers.json 2022-04-29 06:34:53.000000000 +0000 +++ firefox-100.0.1+build1/services/settings/dumps/main/devtools-compatibility-browsers.json 2022-05-15 18:23:32.000000000 +0000 @@ -2,237 +2,318 @@ "data": [ { "name": "Chrome", - "schema": 1648568861836, + "schema": 1651151565765, "status": "nightly", - "version": "101", + "version": "102", "browserid": "chrome", - "id": "eef07db5-7d8f-4d31-aa2a-71b5d0bb0554", - "last_modified": 1648570256624 + "id": "aa24fd15-49da-4fe8-aae4-25236d574612", + "last_modified": 1651179345959 + }, + { + "name": "Chrome", + "schema": 1651151566603, + "status": "planned", + "version": "103", + "browserid": "chrome", + "id": "98226134-72f5-4e8b-9fe1-91c6f0a73db8", + "last_modified": 1651179345956 }, { "name": "Chrome Android", - "schema": 1648568865018, + "schema": 1651151569951, "status": "nightly", - "version": "101", + "version": "102", "browserid": "chrome_android", - "id": "c4f461a1-e339-4b5d-a365-f9d68e60f57f", - "last_modified": 1648570256619 + "id": "681ca4e6-2d0f-439d-9b06-e039eb9f2481", + "last_modified": 1651179345953 + }, + { + "name": "Chrome Android", + "schema": 1651151570787, + "status": "planned", + "version": "103", + "browserid": "chrome_android", + "id": "38e7422e-9f31-44d4-81f8-8f273d675d1b", + "last_modified": 1651179345950 + }, + { + "name": "Deno", + "schema": 1651151575830, + "status": "nightly", + "version": "1.21", + "browserid": "deno", + "id": "24332717-5d03-4758-bb21-e0289482ca57", + "last_modified": 1651179345947 }, { "name": "Edge", - "schema": 1648568868092, + "schema": 1651151579223, "status": "nightly", - "version": "101", + "version": "102", "browserid": "edge", - "id": "4df63f83-28b4-429d-a395-f448cc22a35f", - "last_modified": 1648570256615 + "id": "a0b9fe57-1667-4824-9f33-59b28047dbcd", + "last_modified": 1651179345944 + }, + { + "name": "Edge", + "schema": 1651151580081, + "status": "planned", + "version": "103", + "browserid": "edge", + "id": "4afba52a-82ff-43e3-974b-3a00dd9def94", + "last_modified": 1651179345942 }, { "name": "Firefox", - "schema": 1648568871139, + "schema": 1651151583440, "status": "nightly", - "version": "100", + "version": "101", "browserid": "firefox", - "id": "34614896-26ad-4518-bde5-6b01ced257b2", - "last_modified": 1648570256610 + "id": "9e175d7d-1109-497b-b384-f14976d7ebe3", + "last_modified": 1651179345939 }, { "name": "Firefox for Android", - "schema": 1648568874646, + "schema": 1651151586791, "status": "nightly", - "version": "100", + "version": "101", "browserid": "firefox_android", - "id": "cc6e84d0-fc13-4054-a136-4fe1fd63bb77", - "last_modified": 1648570256605 + "id": "935febef-4d7f-4c06-be1c-d957cbe79b71", + "last_modified": 1651179345936 }, { - "name": "WebView Android", - "schema": 1648568880910, - "status": "nightly", - "version": "101", - "browserid": "webview_android", - "id": "ce15215f-213e-48f2-97f1-829e6a7c9b92", - "last_modified": 1648570256601 + "name": "Node.js", + "schema": 1651151590287, + "status": "current", + "version": "17.3.0", + "browserid": "nodejs", + "id": "790f107f-8b26-49d0-9caf-6f90cb5b127b", + "last_modified": 1651179345933 }, { - "name": "Firefox for Android", - "schema": 1648568873804, + "name": "Opera", + "schema": 1651151593683, "status": "beta", - "version": "99", - "browserid": "firefox_android", - "id": "f31e3a1b-2af3-4a7f-b77d-e7734c6be47e", - "last_modified": 1648570256596 + "version": "87", + "browserid": "opera", + "id": "aeb7f795-0d90-49ec-8484-d1fef2bef61c", + "last_modified": 1651179345930 }, { - "name": "Firefox for Android", - "schema": 1648568872901, - "status": "current", - "version": "98", - "browserid": "firefox_android", - "id": "1f7048ea-af49-4f72-8b86-c1156a3439b7", - "last_modified": 1648570256592 + "name": "Opera", + "schema": 1651151594520, + "status": "nightly", + "version": "88", + "browserid": "opera", + "id": "d93c936e-7b34-4f00-8715-d78b0851613c", + "last_modified": 1651179345927 }, { - "name": "Firefox", - "schema": 1648568870430, - "status": "beta", - "version": "99", - "browserid": "firefox", - "id": "8be3e7b3-f3fd-4bd0-9e88-c1c2ea93bd62", - "last_modified": 1648570256585 + "name": "Opera Android", + "schema": 1651151596201, + "status": "current", + "version": "68", + "browserid": "opera_android", + "id": "5daf9d70-05c3-4c13-b6a2-00a9f5034ea8", + "last_modified": 1651179345924 }, { - "name": "Firefox", - "schema": 1648568869718, - "status": "current", - "version": "98", - "browserid": "firefox", - "id": "c112510f-d9cc-41f3-a14a-c6660b719cc3", - "last_modified": 1648570256582 + "name": "Safari", + "schema": 1651151597052, + "status": "beta", + "version": "15.5", + "browserid": "safari", + "id": "d18a11fc-76c1-4a25-b40c-16b6834ad3e3", + "last_modified": 1651179345921 }, { "name": "Safari on iOS", - "schema": 1648568877762, - "status": "current", - "version": "15.4", + "schema": 1651151598745, + "status": "beta", + "version": "15.5", "browserid": "safari_ios", - "id": "6d71d3c6-a98d-4acf-846c-11a10b8d8af6", - "last_modified": 1648570256575 + "id": "880d9032-1db7-4989-936a-d935fd344b36", + "last_modified": 1651179345919 }, { - "name": "WebView Android", - "schema": 1648568880169, + "name": "Samsung Internet", + "schema": 1651151599588, "status": "beta", - "version": "100", + "version": "17.0", + "browserid": "samsunginternet_android", + "id": "33853107-4475-46de-a22b-84972be87dfd", + "last_modified": 1651179345916 + }, + { + "name": "WebView Android", + "schema": 1651151602949, + "status": "nightly", + "version": "102", "browserid": "webview_android", - "id": "be6227cb-2414-4ac2-8134-6d80c37cb1a4", - "last_modified": 1648570256568 + "id": "4b9c29d7-4560-4aa0-b5da-6f741e68465b", + "last_modified": 1651179345913 }, { "name": "WebView Android", - "schema": 1648568879457, - "status": "current", - "version": "99", + "schema": 1651151603791, + "status": "planned", + "version": "103", "browserid": "webview_android", - "id": "21bcaf3c-ccc6-4d3a-a330-a67ed37b650a", - "last_modified": 1648570256565 + "id": "a07ea66a-9e79-4dae-937f-0b5c42b961bb", + "last_modified": 1651179345910 }, { - "name": "Safari", - "schema": 1648568876276, + "name": "Deno", + "schema": 1651151574995, "status": "current", - "version": "15.4", - "browserid": "safari", - "id": "94f97615-86ab-4e62-b229-1f0256175e9a", - "last_modified": 1648570256555 + "version": "1.20", + "browserid": "deno", + "id": "12eda7ab-d1f2-4d6d-8fbb-4d3d55778543", + "last_modified": 1651179345905 }, { - "name": "Edge", - "schema": 1648568867371, - "status": "beta", - "version": "100", - "browserid": "edge", - "id": "874c95fb-afd2-48a1-81c4-83fd54c5b237", - "last_modified": 1648570256552 + "name": "Node.js", + "schema": 1651151588509, + "status": "esr", + "version": "16.11.0", + "browserid": "nodejs", + "id": "4d3d7ec6-7211-437e-aa6b-8439d719f1e1", + "last_modified": 1651179345896 }, { - "name": "Edge", - "schema": 1648568866503, + "name": "Opera", + "schema": 1651151592837, "status": "current", - "version": "99", - "browserid": "edge", - "id": "0c0a8c3a-f4c0-4983-a584-9d909e7813ec", - "last_modified": 1648570256548 + "version": "86", + "browserid": "opera", + "id": "5a4e3909-1ac1-4a78-a10d-70a59240f673", + "last_modified": 1651179345881 + }, + { + "name": "Chrome", + "schema": 1651151564042, + "status": "current", + "version": "100", + "browserid": "chrome", + "id": "2a76cc10-7765-4a3e-b558-d73ff18b5db5", + "last_modified": 1651179345877 }, { "name": "Chrome Android", - "schema": 1648568864091, - "status": "beta", + "schema": 1651151568284, + "status": "current", "version": "100", "browserid": "chrome_android", "id": "b282f95f-b994-4b35-9a62-e47d3ea6ec6f", - "last_modified": 1648570256541 + "last_modified": 1651179345873 }, { - "name": "Chrome Android", - "schema": 1648568863279, + "name": "Edge", + "schema": 1651151577537, "status": "current", - "version": "99", - "browserid": "chrome_android", - "id": "26c276ee-05c6-4430-a98d-18fd3559260a", - "last_modified": 1648570256538 + "version": "100", + "browserid": "edge", + "id": "874c95fb-afd2-48a1-81c4-83fd54c5b237", + "last_modified": 1651179345868 }, { - "name": "Chrome", - "schema": 1648568861054, - "status": "beta", + "name": "WebView Android", + "schema": 1651151601269, + "status": "current", "version": "100", - "browserid": "chrome", - "id": "2a76cc10-7765-4a3e-b558-d73ff18b5db5", - "last_modified": 1648570256531 + "browserid": "webview_android", + "id": "be6227cb-2414-4ac2-8134-6d80c37cb1a4", + "last_modified": 1651179345864 }, { - "name": "Chrome", - "schema": 1648568860308, + "name": "Firefox", + "schema": 1651151581743, "status": "current", "version": "99", - "browserid": "chrome", - "id": "371d2018-13b0-4523-8b0d-cdc5b02981af", - "last_modified": 1648570256528 + "browserid": "firefox", + "id": "8be3e7b3-f3fd-4bd0-9e88-c1c2ea93bd62", + "last_modified": 1651179345859 }, { - "name": "Opera", - "schema": 1646381478384, - "status": "nightly", - "version": "86", - "browserid": "opera", - "id": "5a4e3909-1ac1-4a78-a10d-70a59240f673", - "last_modified": 1646392425340 + "name": "Firefox for Android", + "schema": 1651151585101, + "status": "current", + "version": "99", + "browserid": "firefox_android", + "id": "f31e3a1b-2af3-4a7f-b77d-e7734c6be47e", + "last_modified": 1651179345855 }, { - "name": "Opera", - "schema": 1646381477291, + "name": "WebView Android", + "schema": 1651151602115, "status": "beta", - "version": "85", - "browserid": "opera", - "id": "1997a792-cfa4-44ac-bd48-3865034530c7", - "last_modified": 1646392425335 + "version": "101", + "browserid": "webview_android", + "id": "ce15215f-213e-48f2-97f1-829e6a7c9b92", + "last_modified": 1651179345853 }, { - "name": "Opera", - "schema": 1646381476206, - "status": "current", - "version": "84", - "browserid": "opera", - "id": "f7b88440-7a99-434c-a265-de4fde85e787", - "last_modified": 1646392425332 + "name": "Firefox for Android", + "schema": 1651151585954, + "status": "beta", + "version": "100", + "browserid": "firefox_android", + "id": "cc6e84d0-fc13-4054-a136-4fe1fd63bb77", + "last_modified": 1651179345850 }, { - "name": "Deno", - "schema": 1645203727939, - "status": "current", - "version": "1.16", - "browserid": "deno", - "id": "a7d0618e-3d5e-4568-b5da-6aa7686e246c", - "last_modified": 1645448267610 + "name": "Firefox", + "schema": 1651151582589, + "status": "beta", + "version": "100", + "browserid": "firefox", + "id": "34614896-26ad-4518-bde5-6b01ced257b2", + "last_modified": 1651179345848 }, { - "name": "Deno", - "schema": 1645203728980, + "name": "Edge", + "schema": 1651151578377, + "status": "beta", + "version": "101", + "browserid": "edge", + "id": "4df63f83-28b4-429d-a395-f448cc22a35f", + "last_modified": 1651179345846 + }, + { + "name": "Chrome Android", + "schema": 1651151569117, + "status": "beta", + "version": "101", + "browserid": "chrome_android", + "id": "c4f461a1-e339-4b5d-a365-f9d68e60f57f", + "last_modified": 1651179345843 + }, + { + "name": "Chrome", + "schema": 1651151564906, + "status": "beta", + "version": "101", + "browserid": "chrome", + "id": "eef07db5-7d8f-4d31-aa2a-71b5d0bb0554", + "last_modified": 1651179345841 + }, + { + "name": "Safari on iOS", + "schema": 1648568877762, "status": "current", - "version": "1.17", - "browserid": "deno", - "id": "5e981c57-284f-4a45-878f-34345a077416", - "last_modified": 1645448267605 + "version": "15.4", + "browserid": "safari_ios", + "id": "6d71d3c6-a98d-4acf-846c-11a10b8d8af6", + "last_modified": 1648570256575 }, { - "name": "Deno", - "schema": 1645203729978, + "name": "Safari", + "schema": 1648568876276, "status": "current", - "version": "1.18", - "browserid": "deno", - "id": "40d2eb08-3ef6-49ce-9f6f-61e76e6109bc", - "last_modified": 1645448267600 + "version": "15.4", + "browserid": "safari", + "id": "94f97615-86ab-4e62-b229-1f0256175e9a", + "last_modified": 1648570256555 }, { "name": "Firefox", @@ -262,42 +343,6 @@ "last_modified": 1645448267570 }, { - "name": "Node.js", - "schema": 1645203747348, - "status": "current", - "version": "16.9.0", - "browserid": "nodejs", - "id": "509820e6-0a62-423a-b159-2bb16db842d3", - "last_modified": 1645448267565 - }, - { - "name": "Node.js", - "schema": 1645203748401, - "status": "current", - "version": "16.11.0", - "browserid": "nodejs", - "id": "4d3d7ec6-7211-437e-aa6b-8439d719f1e1", - "last_modified": 1645448267560 - }, - { - "name": "Node.js", - "schema": 1645203749482, - "status": "current", - "version": "17.0.0", - "browserid": "nodejs", - "id": "59d45343-21f4-4fb9-9103-4d8fbc04aed3", - "last_modified": 1645448267555 - }, - { - "name": "Safari on iOS", - "schema": 1645203756942, - "status": "current", - "version": "15.2", - "browserid": "safari_ios", - "id": "3bd6dc9d-0d84-4881-a14a-f3319885911c", - "last_modified": 1645448267530 - }, - { "name": "Samsung Internet", "schema": 1645203760081, "status": "current", @@ -314,33 +359,6 @@ "browserid": "nodejs", "id": "4436cf1f-e30d-401a-893f-306dfd0b1e4e", "last_modified": 1645448267500 - }, - { - "name": "Deno", - "schema": 1645426860619, - "status": "current", - "version": "1.19", - "browserid": "deno", - "id": "1e64b9e3-bf42-48cc-90eb-1fe792ba5662", - "last_modified": 1645448267485 - }, - { - "name": "Deno", - "schema": 1645426897808, - "status": "nightly", - "version": "1.20", - "browserid": "deno", - "id": "12eda7ab-d1f2-4d6d-8fbb-4d3d55778543", - "last_modified": 1645448267481 - }, - { - "name": "Opera Android", - "schema": 1645426908452, - "status": "current", - "version": "67", - "browserid": "opera_android", - "id": "0299f77d-0498-481a-9896-498095a7e301", - "last_modified": 1645448267445 } ] } diff -Nru firefox-100.0+build2/services/settings/dumps/security-state/intermediates.json firefox-100.0.1+build1/services/settings/dumps/security-state/intermediates.json --- firefox-100.0+build2/services/settings/dumps/security-state/intermediates.json 2022-04-29 06:34:53.000000000 +0000 +++ firefox-100.0.1+build1/services/settings/dumps/security-state/intermediates.json 2022-05-15 18:23:32.000000000 +0000 @@ -1,6 +1,834 @@ { "data": [ { + "schema": 1652367450587, + "derHash": "lzpBJ2/9AeAnoqrUnjTDeEbT6Xb/amILZxLjODIEGqY=", + "subject": "CN=Go Daddy Secure Certificate Authority - G2,OU=http://certs.godaddy.com/repository/,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US", + "subjectDN": "MIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy", + "whitelist": false, + "attachment": { + "hash": "a111efc20329e87b541cfc3e7f526fc54bb24624fddf210f4347b9fadfb1ab6b", + "size": 1727, + "filename": "8Rw90Ej3Ttt8RRkrg-WYDS9n7IS03bk5bjP_UXPtaY8=.pem", + "location": "security-state-staging/intermediates/a2a04dfe-6201-4d0a-b8cf-80d2975bfb51.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "8Rw90Ej3Ttt8RRkrg+WYDS9n7IS03bk5bjP/UXPtaY8=", + "crlite_enrolled": true, + "id": "549c92e2-3738-4c8c-ae37-407e4e6158ce", + "last_modified": 1652389030230 + }, + { + "schema": 1651899431911, + "derHash": "MTH/29ln180dd3Qq+XcvEFH/TJrkE3WfQ0/h6BERngM=", + "subject": "CN=TrustOcean EV SSL CA - RSA - 2019,OU=Controlled by Sectigo exclusively for TrustOcean Ltd.+OU=RSA Extended Validation Secure Server - 2019,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US", + "subjectDN": "MIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFRydXN0T2NlYW4gTHRkLjE1MDMGA1UECxMsUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTkxKjAoBgNVBAMTIVRydXN0T2NlYW4gRVYgU1NMIENBIC0gUlNBIC0gMjAxOQ==", + "whitelist": false, + "attachment": { + "hash": "bb57de69afc6d6f5f59b1c80758edf0ef1791b7a08530fed8903ef18cd25188e", + "size": 2324, + "filename": "uG18SfTnbrT8g2zCkpa7kWClIcTyqEW_1iPtChk9nTQ=.pem", + "location": "security-state-staging/intermediates/6020590f-b065-482b-9549-d56eb98c4b60.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "uG18SfTnbrT8g2zCkpa7kWClIcTyqEW/1iPtChk9nTQ=", + "crlite_enrolled": false, + "id": "12413a5f-6a98-4669-8438-f936d9b86ea3", + "last_modified": 1652065037366 + }, + { + "schema": 1651719453215, + "derHash": "DWMgSDbsyonvv0d2uOvDKACBMbldcKknr+bw4emu1Ig=", + "subject": "CN=ZoTrus ECC OV SSL CA,O=ZoTrus Technology Limited,C=CN", + "subjectDN": "MFAxCzAJBgNVBAYTAkNOMSIwIAYDVQQKExlab1RydXMgVGVjaG5vbG9neSBMaW1pdGVkMR0wGwYDVQQDExRab1RydXMgRUNDIE9WIFNTTCBDQQ==", + "whitelist": false, + "attachment": { + "hash": "a2284106a606bc666bf93756cf85c68302222a8b5b3cc118f7ab3a57bcba9ea8", + "size": 1240, + "filename": "kMFHAfR4b2U_8eFzUzC98IWCVy6jfhYT7KhWmUMfFZc=.pem", + "location": "security-state-staging/intermediates/f12b578e-b704-425f-a0d8-d08080a40762.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "kMFHAfR4b2U/8eFzUzC98IWCVy6jfhYT7KhWmUMfFZc=", + "crlite_enrolled": true, + "id": "da380fd2-3da8-422f-9f3e-70dae67eb537", + "last_modified": 1651899431461 + }, + { + "schema": 1651898965291, + "derHash": "9dTK1Ts/LvOYENptPNX/dmP0q7h3OIJ8zsr/b8w+r8Q=", + "subject": "CN=MSFT RS256 CA-1,O=Microsoft Corporation,C=US", + "subjectDN": "MEcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xGDAWBgNVBAMTD01TRlQgUlMyNTYgQ0EtMQ==", + "whitelist": false, + "attachment": { + "hash": "a023fc76ccc16c88e584716119317138d7bdceaf8896157e4bb9aa525e227e9b", + "size": 1695, + "filename": "4dcjodQDXb57s8lG7TLWD3Xe9ytnPSATT61TJbQtAwI=.pem", + "location": "security-state-staging/intermediates/dbe4ae7c-598c-423b-a4f2-aa6674a8ec18.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "4dcjodQDXb57s8lG7TLWD3Xe9ytnPSATT61TJbQtAwI=", + "crlite_enrolled": true, + "id": "50064930-2d6a-442e-8edb-9151ed42396b", + "last_modified": 1651899431450 + }, + { + "schema": 1651718923725, + "derHash": "kqX1Fa0106J8SQ7bE13nBEseOZ1gisGr6IP8gvtLFr4=", + "subject": "CN=RapidSSL Global TLS RSA4096 SHA256 2022 CA1,O=DigiCert\\, Inc.,C=US", + "subjectDN": "MFwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE0MDIGA1UEAxMrUmFwaWRTU0wgR2xvYmFsIFRMUyBSU0E0MDk2IFNIQTI1NiAyMDIyIENBMQ==", + "whitelist": false, + "attachment": { + "hash": "92ad0528387f762c0d47a1b2aef3a70165915785e79a7440136f35f50719e121", + "size": 2068, + "filename": "lPraBjD-VHks5_sVEDOczhg00z9TGoGMAjndDyYGUNU=.pem", + "location": "security-state-staging/intermediates/9feab4a5-669f-46c9-9f31-2d561a1fc8de.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "lPraBjD+VHks5/sVEDOczhg00z9TGoGMAjndDyYGUNU=", + "crlite_enrolled": false, + "id": "5fb2df13-ba06-48c8-b568-679d6edd2144", + "last_modified": 1651719452752 + }, + { + "schema": 1651718922829, + "derHash": "p5cQigWtkyhYX8DLhC+9gk+sZRC41+tP9HmR7uWKqSQ=", + "subject": "CN=GeoTrust Global TLS RSA4096 SHA256 2022 CA1,O=DigiCert\\, Inc.,C=US", + "subjectDN": "MFwxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE0MDIGA1UEAxMrR2VvVHJ1c3QgR2xvYmFsIFRMUyBSU0E0MDk2IFNIQTI1NiAyMDIyIENBMQ==", + "whitelist": false, + "attachment": { + "hash": "7debe4651a89d772bd8a304272699c20eda3b8d40eee9e84a3ccd55f8c63f444", + "size": 2068, + "filename": "aZeR2aS2g2bguhPzWzTQqUq9OCf4tXk7VWrF6R_zJkM=.pem", + "location": "security-state-staging/intermediates/d15529f9-49a2-467b-aaff-3eba01eb9996.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "aZeR2aS2g2bguhPzWzTQqUq9OCf4tXk7VWrF6R/zJkM=", + "crlite_enrolled": false, + "id": "93e60034-59ff-49c4-a646-358a9907c217", + "last_modified": 1651719452744 + }, + { + "schema": 1651244234473, + "derHash": "bVWNIt3W7UyhPucS/UKvIpTyycbXATwyRxD/uNjzb6k=", + "subject": "CN=Quantum Secure Site OV TLS RSA R1,O=Quantum CA Limited,C=GB", + "subjectDN": "MFYxCzAJBgNVBAYTAkdCMRswGQYDVQQKDBJRdWFudHVtIENBIExpbWl0ZWQxKjAoBgNVBAMMIVF1YW50dW0gU2VjdXJlIFNpdGUgT1YgVExTIFJTQSBSMQ==", + "whitelist": false, + "attachment": { + "hash": "4b736d8bf2429327ac547ed2eb1ddf79a0caa2ace478f955e02127eec63d403b", + "size": 2389, + "filename": "hLf9YhON-ykf9-ab3rrdyhkLe63PWjIvsvghrHEnILA=.pem", + "location": "security-state-staging/intermediates/0f82d056-d837-49b4-9cdd-d5d76a9b1a35.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "hLf9YhON+ykf9+ab3rrdyhkLe63PWjIvsvghrHEnILA=", + "crlite_enrolled": false, + "id": "1fba5287-1ee9-49bb-8756-3e120f3f4896", + "last_modified": 1651352246094 + }, + { + "schema": 1651243731947, + "derHash": "UscwCUvRr5jslRBbbVjwm78ICoZh/vA8Xn4xwccao54=", + "subject": "CN=TrustAsia ECC DV TLS CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", + "subjectDN": "MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRUNDIERWIFRMUyBDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "478efe9c3c15d76a274b7b94340eb3b4a5aa70c20a0d5cbaac979c3993097d60", + "size": 1256, + "filename": "8U_3Q2XOjlBspygbt3HFvzxWcbklTeiwjAtB025Rr1I=.pem", + "location": "security-state-staging/intermediates/e18b71a8-f92d-4225-816e-66e332620f39.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "8U/3Q2XOjlBspygbt3HFvzxWcbklTeiwjAtB025Rr1I=", + "crlite_enrolled": false, + "id": "1228f9f3-de33-42cc-9741-c4a0535147ed", + "last_modified": 1651244234008 + }, + { + "schema": 1651243731025, + "derHash": "RVgDgOS8DZcoyfMJite2CrJyEtD/FCAgxSMIkauEcb4=", + "subject": "CN=DNSPod RSA EV,O=DNSPod\\, Inc.,C=CN", + "subjectDN": "MDwxCzAJBgNVBAYTAkNOMRUwEwYDVQQKEwxETlNQb2QsIEluYy4xFjAUBgNVBAMTDUROU1BvZCBSU0EgRVY=", + "whitelist": false, + "attachment": { + "hash": "2fbf8fa0a58d0aee7cbc48f7c55c2f85f115b12aadcfb15a24a9f64c1c6805f5", + "size": 2219, + "filename": "7tlcAe1zc6UEu0ycBSzrKSHgelMORRz0zuoxf5grv3A=.pem", + "location": "security-state-staging/intermediates/61082769-e7e7-4c7a-a611-2dfbde36eeae.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "7tlcAe1zc6UEu0ycBSzrKSHgelMORRz0zuoxf5grv3A=", + "crlite_enrolled": false, + "id": "308cdddb-bce6-4c09-93bd-f689f76af0fe", + "last_modified": 1651244234001 + }, + { + "schema": 1651243728381, + "derHash": "Ju073hkw2MU87NGz1QsNe/0vRDnJ7cjXCHYe1v5doKs=", + "subject": "CN=DNSPod RSA DV,O=DNSPod\\, Inc.,C=CN", + "subjectDN": "MDwxCzAJBgNVBAYTAkNOMRUwEwYDVQQKEwxETlNQb2QsIEluYy4xFjAUBgNVBAMTDUROU1BvZCBSU0EgRFY=", + "whitelist": false, + "attachment": { + "hash": "7642f6824be11258ea3f0461090541db4e35b54673ba2828a4a659aeb6a708c4", + "size": 2231, + "filename": "v6XUDOez9KzX6ugG6Y6NOWiaa_DRl8DzRlXbI58Od9k=.pem", + "location": "security-state-staging/intermediates/5f0a95c5-9d8e-4c78-9d1f-196ef8cc6902.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "v6XUDOez9KzX6ugG6Y6NOWiaa/DRl8DzRlXbI58Od9k=", + "crlite_enrolled": false, + "id": "6ffb2ec9-df2d-4929-b852-b0a2baf9dbfb", + "last_modified": 1651244233993 + }, + { + "schema": 1651243730119, + "derHash": "UmbXFlEZYo+VWaFWUGDiz78hNU4ctyrGbHVbnunxkC0=", + "subject": "CN=DNSPod RSA OV,O=DNSPod\\, Inc.,C=CN", + "subjectDN": "MDwxCzAJBgNVBAYTAkNOMRUwEwYDVQQKEwxETlNQb2QsIEluYy4xFjAUBgNVBAMTDUROU1BvZCBSU0EgT1Y=", + "whitelist": false, + "attachment": { + "hash": "94a4db0a847ed1705af8b348555d54f2571d4dc67b870acf3622e4db1a41a1e5", + "size": 2231, + "filename": "xTgRLpThRByRVHJot49FqWpbMVYiv8384ejqkJOJbFc=.pem", + "location": "security-state-staging/intermediates/fefa5d10-d98f-4287-9506-4f85b5b19311.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "xTgRLpThRByRVHJot49FqWpbMVYiv8384ejqkJOJbFc=", + "crlite_enrolled": false, + "id": "5e15deb4-1340-4b98-b021-7c82087df0ad", + "last_modified": 1651244233986 + }, + { + "schema": 1651243727502, + "derHash": "DlsAchtjwEpX4EE1pKkELElltPUMUF/ibTTg5xhV7kc=", + "subject": "CN=TrustAsia RSA DV TLS CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", + "subjectDN": "MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgUlNBIERWIFRMUyBDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "ba644b4e970b564e35c343bd85c1f55b3a02c97618ea03227095daab7a78cf6c", + "size": 2268, + "filename": "B_N1Dbk37d8gadFssO90DgDkAmm6ZJJMG8xYPOwEHLM=.pem", + "location": "security-state-staging/intermediates/1e17e390-a9ef-44c1-a97e-33f792ea06ef.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "B/N1Dbk37d8gadFssO90DgDkAmm6ZJJMG8xYPOwEHLM=", + "crlite_enrolled": false, + "id": "754fd284-0877-48e4-8334-dfea0d1ba2bf", + "last_modified": 1651244233979 + }, + { + "schema": 1651243729229, + "derHash": "u69UbyjDANkG+qdhQV2XEpsddy5Jixfq1n46rUQ54/0=", + "subject": "CN=DNSPod ECC OV,O=DNSPod\\, Inc.,C=CN", + "subjectDN": "MDwxCzAJBgNVBAYTAkNOMRUwEwYDVQQKEwxETlNQb2QsIEluYy4xFjAUBgNVBAMTDUROU1BvZCBFQ0MgT1Y=", + "whitelist": false, + "attachment": { + "hash": "f51de2adcd277d82212f7ba2b81c3469c008db61ce0f650977b8fb5d867e8855", + "size": 1215, + "filename": "7ds1KNk3gHiDZE-zHMhKH0wvOfldhHNVm9yiuC-lHLA=.pem", + "location": "security-state-staging/intermediates/d4cbe4a7-1afd-48a6-b8fe-14515748caf4.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "7ds1KNk3gHiDZE+zHMhKH0wvOfldhHNVm9yiuC+lHLA=", + "crlite_enrolled": false, + "id": "123a831f-1176-4d05-92b0-f531ca3e2ebe", + "last_modified": 1651244233972 + }, + { + "schema": 1651243725752, + "derHash": "FlqkMjFqqCbL6x56E+XpbrknevAQVYCnzuUhDwQl4FY=", + "subject": "CN=DNSPod ECC DV,O=DNSPod\\, Inc.,C=CN", + "subjectDN": "MDwxCzAJBgNVBAYTAkNOMRUwEwYDVQQKEwxETlNQb2QsIEluYy4xFjAUBgNVBAMTDUROU1BvZCBFQ0MgRFY=", + "whitelist": false, + "attachment": { + "hash": "917484046b08ddb16e5f4891f59d516b8db7d3d30f21cbf4cde560fd7c41912e", + "size": 1219, + "filename": "27O4Zhd_18oAKoYHojx2N40ZdxUC7hSU_D7DEzfjNJA=.pem", + "location": "security-state-staging/intermediates/e50dec77-38ef-4168-9577-b0585e2309c2.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "27O4Zhd/18oAKoYHojx2N40ZdxUC7hSU/D7DEzfjNJA=", + "crlite_enrolled": false, + "id": "b909a7ce-f134-4f57-b1b8-9e3782185240", + "last_modified": 1651244233965 + }, + { + "schema": 1651243726636, + "derHash": "Gh1Zs8/bhCOm4md+8V2fw9Dancz6Y39g6ubpt8iHyP0=", + "subject": "CN=DNSPod ECC EV,O=DNSPod\\, Inc.,C=CN", + "subjectDN": "MDwxCzAJBgNVBAYTAkNOMRUwEwYDVQQKEwxETlNQb2QsIEluYy4xFjAUBgNVBAMTDUROU1BvZCBFQ0MgRVY=", + "whitelist": false, + "attachment": { + "hash": "2692ec914eee66f4e17bda0de59e931b3877a19e3726280a0f501ee2295374bd", + "size": 1207, + "filename": "O0m5yObV4fYLRVw9HYDQAt0LFs94XlBp0zKzD8rjXHQ=.pem", + "location": "security-state-staging/intermediates/56484c21-741c-45b4-b5f5-fb671af7ce51.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "O0m5yObV4fYLRVw9HYDQAt0LFs94XlBp0zKzD8rjXHQ=", + "crlite_enrolled": false, + "id": "90b19d80-2f05-483d-8d8c-cbd9e378f8f6", + "last_modified": 1651244233958 + }, + { + "schema": 1651243724871, + "derHash": "3p0HVlZ2OucIY3PrkBJuwkDk4ICJthw8mhsCXLb0EcM=", + "subject": "CN=TrustAsia RSA EV TLS CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", + "subjectDN": "MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgUlNBIEVWIFRMUyBDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "03503c28535cc81c9a010e5b081c743ffedf5cce0b9284e04ed6f51593305461", + "size": 2259, + "filename": "M-84feL1t2OKDBjPZhzIU3INxh8ASlHmFLa9vdUs-us=.pem", + "location": "security-state-staging/intermediates/02401f12-2384-4285-955f-52310dc955c7.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "M+84feL1t2OKDBjPZhzIU3INxh8ASlHmFLa9vdUs+us=", + "crlite_enrolled": false, + "id": "0ef219bc-fbe7-42d4-9137-8110f437ca67", + "last_modified": 1651244233951 + }, + { + "schema": 1651243723987, + "derHash": "p8CB4fjWyAxPPa5X3vlNEastamQ5+Yd14BACKpDW0eY=", + "subject": "CN=TrustAsia ECC EV TLS CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", + "subjectDN": "MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRUNDIEVWIFRMUyBDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "99502d77687be7445ef67afc31ea03c048c1846f96cd5dd63db403a76482e5ec", + "size": 1244, + "filename": "rV9R8mlMRJRagxoykbSDDNA73L2G7T4llh3vYjKsx60=.pem", + "location": "security-state-staging/intermediates/3a640792-8333-4d08-aac9-9484e165ae78.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "rV9R8mlMRJRagxoykbSDDNA73L2G7T4llh3vYjKsx60=", + "crlite_enrolled": false, + "id": "4a6491aa-4966-43ff-a10a-46acbc77c021", + "last_modified": 1651244233943 + }, + { + "schema": 1651243722147, + "derHash": "OXgI2rB2Wy0iSDH800v+VqQJPxTEinAHJ7sxp61CDLQ=", + "subject": "CN=TrustAsia ECC OV TLS CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", + "subjectDN": "MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgRUNDIE9WIFRMUyBDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "0628e7fb6abad65d30b851eea91243cff7f96f162f6e9e99a8f2e14319f87de0", + "size": 1252, + "filename": "kVjrK6V1JscLjPoduH7ECVQLKek-gB3MuQ9evhN9eNI=.pem", + "location": "security-state-staging/intermediates/851b1982-bad1-48c9-8ad3-2ebdf8db6940.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "kVjrK6V1JscLjPoduH7ECVQLKek+gB3MuQ9evhN9eNI=", + "crlite_enrolled": false, + "id": "12dc1ddf-21cf-48f3-a951-66c500745442", + "last_modified": 1651244233936 + }, + { + "schema": 1651243723059, + "derHash": "5Iksmktuk5Pr3+3LwvoHt8a0gKKRXGb0cJnm8v/pocU=", + "subject": "CN=TrustAsia RSA OV TLS CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", + "subjectDN": "MFkxCzAJBgNVBAYTAkNOMSUwIwYDVQQKExxUcnVzdEFzaWEgVGVjaG5vbG9naWVzLCBJbmMuMSMwIQYDVQQDExpUcnVzdEFzaWEgUlNBIE9WIFRMUyBDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "cb6dac2259c0487b1043568b04bbf032ce9be308e3815c4480a31d3c435b5f70", + "size": 2268, + "filename": "AjHoEUjfOt4P9CmQ3Tl9YEcwEf694_AE-BWBxOtPfxE=.pem", + "location": "security-state-staging/intermediates/29f2fb58-8f83-41f5-ad6e-736a5a05440d.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "AjHoEUjfOt4P9CmQ3Tl9YEcwEf694/AE+BWBxOtPfxE=", + "crlite_enrolled": false, + "id": "d48c9d5c-1dd4-4df5-8301-2edd5e04d3ed", + "last_modified": 1651244233929 + }, + { + "schema": 1651243732687, + "derHash": "VYRK03slu02z/+fc3DkCOkGzxIikepX60fz61Qi3AoU=", + "subject": "CN=Dodo Sign TLS ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU", + "subjectDN": "MHIxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSEwHwYDVQQDDBhEb2RvIFNpZ24gVExTIElDQSBSU0EgUjE=", + "whitelist": false, + "attachment": { + "hash": "9bbab79fdec346cdda828bc4486cedf2582bee9d80c23587c1c2f05407854b6e", + "size": 2438, + "filename": "QBni1na5RD10V0ehoagk-O8mlEaC8kPw1gH8_uoYYTY=.pem", + "location": "security-state-staging/intermediates/512c8ed9-74cb-4a34-a0b5-79f8a0f953b2.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "QBni1na5RD10V0ehoagk+O8mlEaC8kPw1gH8/uoYYTY=", + "crlite_enrolled": false, + "id": "d63929e7-804a-4e7f-9657-ccb49438e6ad", + "last_modified": 1651244233917 + }, + { + "schema": 1651222124525, + "derHash": "BwUxODzNEA0+nNlk2weqXoRaBoby6uO8imJ7GCBXsfE=", + "subject": "CN=WoTrus EV SSL Pro CA,O=WoTrus CA Limited,C=CN", + "subjectDN": "MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIEVWIFNTTCBQcm8gQ0E=", + "whitelist": false, + "attachment": { + "hash": "7be2ec04c8313dc05a7e0bef9687e9b6f04e6acceb8e83e4058ae0bf0657219d", + "size": 1845, + "filename": "rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=.pem", + "location": "security-state-staging/intermediates/f4f0a492-6a5c-4308-b805-eab6245a5ba8.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=", + "crlite_enrolled": true, + "id": "f5fb39d4-0676-418d-b95a-7e81cb7b1c0a", + "last_modified": 1651222638925 + }, + { + "schema": 1651222122870, + "derHash": "CQM/4jmW/kpZxMD1I9JWDjHf5MF9jqFAPUKalx9L1lo=", + "subject": "CN=WoTrus OV SSL Pro CA,O=WoTrus CA Limited,C=CN", + "subjectDN": "MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIE9WIFNTTCBQcm8gQ0E=", + "whitelist": false, + "attachment": { + "hash": "0e6c76a6d70346ff239c0a9320d8ebda8b750ae57610ff62a44fb8e221319a31", + "size": 1861, + "filename": "zACNb3_D6r-GIH58_Q4EDalNSChXFVVFbUJICvq7SIQ=.pem", + "location": "security-state-staging/intermediates/ec16d029-5557-4b00-ab92-a11542e604e1.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "zACNb3/D6r+GIH58/Q4EDalNSChXFVVFbUJICvq7SIQ=", + "crlite_enrolled": true, + "id": "28706576-bf19-447f-a3fb-607bf06bf536", + "last_modified": 1651222638915 + }, + { + "schema": 1651222123920, + "derHash": "nOYws1+K4sZBnnNK2dL6MEdt2ec5Sx6Tsn+D93agJOo=", + "subject": "CN=AC Unidades de Sellado de Tiempo,OU=Ceres,O=FNMT-RCM,C=ES", + "subjectDN": "MHUxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEpMCcGA1UEAwwgQUMgVW5pZGFkZXMgZGUgU2VsbGFkbyBkZSBUaWVtcG8=", + "whitelist": false, + "attachment": { + "hash": "671a59fe01d2cd2074dbea84483abb7c9c75db400f3b54d2aebd79a620add787", + "size": 2836, + "filename": "RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87-GT4=.pem", + "location": "security-state-staging/intermediates/86474fab-014b-4b8c-bd0d-647aa22080e5.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87+GT4=", + "crlite_enrolled": true, + "id": "b6e021cf-5602-4f60-93f5-659bb02bdfb1", + "last_modified": 1651222638904 + }, + { + "schema": 1651222124221, + "derHash": "sarhvNVV6KPR492o7ITnV8VSZVNEzj/uu6+Y6JXb7aw=", + "subject": "CN=QuoVadis Europe SSL CA G2,O=QuoVadis Trustlink B.V.,C=NL", + "subjectDN": "MFMxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEiMCAGA1UEAwwZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMg==", + "whitelist": false, + "attachment": { + "hash": "dfb31ebff112bccbef0ba90c29987f9962823acb59f69bd984351d9e2c7e22df", + "size": 2381, + "filename": "XOogr9_VItHwTOA_JogutdX4V06tVw9btHQLa2tR0_A=.pem", + "location": "security-state-staging/intermediates/88eff6f9-143b-4a55-bfef-19933a4e3007.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "XOogr9/VItHwTOA/JogutdX4V06tVw9btHQLa2tR0/A=", + "crlite_enrolled": true, + "id": "12bb227c-277f-4680-a556-f5998b87f658", + "last_modified": 1651222638893 + }, + { + "schema": 1651222121833, + "derHash": "9nwj73v3QSgJ22sd09RKCNN1TZnKumoT96BcckkInIk=", + "subject": "CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM", + "subjectDN": "ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==", + "whitelist": false, + "attachment": { + "hash": "f3d6221594115cd098f20f66a013d90aae3becd3c578a737a8e58a35230c208d", + "size": 2016, + "filename": "tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem", + "location": "security-state-staging/intermediates/453adbd2-22ff-42b4-92ed-171fb792efa3.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=", + "crlite_enrolled": true, + "id": "600b2b43-1467-43ac-8086-3e9c9d9900e9", + "last_modified": 1651222638882 + }, + { + "schema": 1651222123017, + "derHash": "Httr2RJ0iC23lb/FFPiqvhCtlVy8z9P9Wltf67LOW2g=", + "subject": "CN=AC SERVIDORES SEGUROS TIPO1,OU=Ceres,O=FNMT-RCM,C=ES", + "subjectDN": "MHAxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgU0VSVklET1JFUyBTRUdVUk9TIFRJUE8x", + "whitelist": false, + "attachment": { + "hash": "1b46f0408f2325ad33c8b3c5dbcf16fa1e7e49dc37065a9692b2b6f8b93fc666", + "size": 1280, + "filename": "Rlnql4UHcyG02SDPnuECa_zDzdDX09uEM9PKaegr4Qs=.pem", + "location": "security-state-staging/intermediates/79cbc976-bf09-46d2-b7ca-8d9055a52b29.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "Rlnql4UHcyG02SDPnuECa/zDzdDX09uEM9PKaegr4Qs=", + "crlite_enrolled": true, + "id": "aab7988d-97f1-489f-bb5a-2fcf4db1d18f", + "last_modified": 1651222638872 + }, + { + "schema": 1651201056863, + "derHash": "nG0IkzIBQH+/KxJUC2fMDkyWZvEy4VBHYqcXy66PP9Y=", + "subject": "CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", + "subjectDN": "MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy", + "whitelist": false, + "attachment": { + "hash": "c4fbca9a15eb275e83118896e4839aba070abde056cf047aa1a57afdd78af927", + "size": 2406, + "filename": "400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem", + "location": "security-state-staging/intermediates/0711da67-ae2e-4da6-b908-4e2a4c4b75d5.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=", + "crlite_enrolled": true, + "id": "fd5ca567-aacd-40bf-afeb-7eaf0f0e8a38", + "last_modified": 1651222638861 + }, + { + "schema": 1651222123161, + "derHash": "n/I8uTh7ngCDvVqhlU7t33kokKqOZ81NON0or0pDmtg=", + "subject": "CN=AC SERVIDORES SEGUROS TIPO2,OU=Ceres,O=FNMT-RCM,C=ES", + "subjectDN": "MHAxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgU0VSVklET1JFUyBTRUdVUk9TIFRJUE8y", + "whitelist": false, + "attachment": { + "hash": "ce9833a29f1fcb59210dd0a59d92c50ef56f427317cc530e9f61e8b7c2584453", + "size": 1280, + "filename": "dCoEY_Du2xeUAuG2_98ZWoRzf_eJoM-rCMtK2M1wF94=.pem", + "location": "security-state-staging/intermediates/8489058b-a9f7-4278-ad80-159e9e5576de.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "dCoEY/Du2xeUAuG2/98ZWoRzf/eJoM+rCMtK2M1wF94=", + "crlite_enrolled": true, + "id": "78225120-3a97-4f14-84f9-0aa83efcdb19", + "last_modified": 1651222638850 + }, + { + "schema": 1651222121219, + "derHash": "gw/yBa5pSFBZw/sjdqfy+e4cKmHeJZ3QnQu2rWn4iDI=", + "subject": "SERIALNUMBER=Q2826004J,CN=AC Administración Pública,OU=CERES,O=FNMT-RCM,C=ES", + "subjectDN": "MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBgNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh", + "whitelist": false, + "attachment": { + "hash": "1a643193c39cf1aa75be19f71a124a43c4ff5403f87361b228eed95bdccebd66", + "size": 2438, + "filename": "uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem", + "location": "security-state-staging/intermediates/68059043-be33-4574-bf76-649847020802.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=", + "crlite_enrolled": true, + "id": "8f3c14a8-669f-4990-a1b5-75acf2ebfe7a", + "last_modified": 1651222638840 + }, + { + "schema": 1651222123617, + "derHash": "NH0Y3Mwu/FGpIOen+7B7+9o1YTaB+C3KXExyuwyDwDU=", + "subject": "CN=VR IDENT SSL CA 2020,O=Fiducia & GAD IT AG,C=DE", + "subjectDN": "MEoxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMR0wGwYDVQQDDBRWUiBJREVOVCBTU0wgQ0EgMjAyMA==", + "whitelist": false, + "attachment": { + "hash": "4158e246be129509cb8d8eb14b647517fea0196e81a9d593f4b8f64a11a6414f", + "size": 2357, + "filename": "fQUctsUYoew1aFnAFT0prf-kJmkVNqkPo2jJ5Jm9RaA=.pem", + "location": "security-state-staging/intermediates/ada7bb67-cb15-43b5-9c74-259e711941b5.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "fQUctsUYoew1aFnAFT0prf+kJmkVNqkPo2jJ5Jm9RaA=", + "crlite_enrolled": true, + "id": "2b1f7c04-dd89-4f96-ad7d-e4e167a9099d", + "last_modified": 1651222638829 + }, + { + "schema": 1651222122570, + "derHash": "Fh7lOGMpsoon/0BXNlUqYh1ahEpDgR42I+Uu76C6hAo=", + "subject": "CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM", + "subjectDN": "ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "b8fd47c4234e14aae99e993f325e88c880408479e0c6ecf0a155bcb2481f0c25", + "size": 2353, + "filename": "KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem", + "location": "security-state-staging/intermediates/e04bb898-e61a-4362-98f8-e5c0e0559cd6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=", + "crlite_enrolled": true, + "id": "3157d9c2-162a-4e53-9f7b-3bde40d1cd54", + "last_modified": 1651222638818 + }, + { + "schema": 1651222120982, + "derHash": "YDiLdz0z6RQWSGE/NrkUnwFaEUN4us8+NpSGT/2kJuw=", + "subject": "CN=HydrantID EV SSL CA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", + "subjectDN": "MGAxCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHzAdBgNVBAMMFkh5ZHJhbnRJRCBFViBTU0wgQ0EgRzI=", + "whitelist": false, + "attachment": { + "hash": "ba2cc602bd31081e17f7745ac462854773e79726958ff1b8a553cc7ecaba9db2", + "size": 2389, + "filename": "FpAps1LWs_UTm3xApHYkNccnnZX-7Wc_v8V0t70p6rg=.pem", + "location": "security-state-staging/intermediates/a6215fbd-d6a1-4e36-b3fa-4f60752c3ad6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "FpAps1LWs/UTm3xApHYkNccnnZX+7Wc/v8V0t70p6rg=", + "crlite_enrolled": true, + "id": "c9938308-f338-4652-aac1-c4eafdc2080c", + "last_modified": 1651222638807 + }, + { + "schema": 1651222124379, + "derHash": "y2Zmsyv/Lv7cxBh98Umm00pdELcWW5z/KmfA4xGu7tc=", + "subject": "CN=QuoVadis Europe EV SSL CA G1,O=QuoVadis Trustlink B.V.,C=NL", + "subjectDN": "MFYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjElMCMGA1UEAwwcUXVvVmFkaXMgRXVyb3BlIEVWIFNTTCBDQSBHMQ==", + "whitelist": false, + "attachment": { + "hash": "990290f2ea4ff420df521c3b3851971e7be41a8508394faa2cb562a69bce9e55", + "size": 2385, + "filename": "WkWVWx1-X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=.pem", + "location": "security-state-staging/intermediates/a0cf3874-21b6-41ef-b36d-7e3b20b5db08.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "WkWVWx1+X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=", + "crlite_enrolled": true, + "id": "28a8c02e-5350-422e-a3eb-6f8150960132", + "last_modified": 1651222638797 + }, + { + "schema": 1651222123472, + "derHash": "0zqEf2QDd74K4aQpFToH6HyIJ/pIQLUVi83LheEKRTo=", + "subject": "CN=VR IDENT EV SSL CA 2020,O=Fiducia & GAD IT AG,C=DE", + "subjectDN": "ME0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMSAwHgYDVQQDDBdWUiBJREVOVCBFViBTU0wgQ0EgMjAyMA==", + "whitelist": false, + "attachment": { + "hash": "a95e7ccf2ef4b020f65fbd061c44e49d966821be27623376e3f16a8a3ebd371f", + "size": 2361, + "filename": "te09bIALahNazDua57TEibeM7CatIkOAT8t-qu_Kdro=.pem", + "location": "security-state-staging/intermediates/e8b0b0a2-f7f0-4893-b9ef-32f493e8a146.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "te09bIALahNazDua57TEibeM7CatIkOAT8t+qu/Kdro=", + "crlite_enrolled": true, + "id": "92b7ea6b-c8ed-47fc-bd89-4834ef4a3ad5", + "last_modified": 1651222638786 + }, + { + "schema": 1651222121528, + "derHash": "8DhCHwfyDWOiDTaR5aF4q4RZ6+VwwWR7dpBVTvI4dqs=", + "subject": "OU=AC Componentes Informáticos,O=FNMT-RCM,C=ES", + "subjectDN": "MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==", + "whitelist": false, + "attachment": { + "hash": "711fb746c38ddfee6090169d62da5358968caf228ade2ad75cb8be4c4dd3832d", + "size": 2430, + "filename": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem", + "location": "security-state-staging/intermediates/292b3931-1dd3-4cd0-9be6-5fd40e9e982a.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=", + "crlite_enrolled": true, + "id": "f77b23d6-3d87-4035-8243-18504c783f83", + "last_modified": 1651222638775 + }, + { + "schema": 1651222123771, + "derHash": "AUU/ZFzZHiM7dISCfyP4pXP9ZBAp6opr/lSe9O2LMj0=", + "subject": "CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", + "subjectDN": "MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy", + "whitelist": false, + "attachment": { + "hash": "7210ab4fd67176c39b121dc273d719681e6df16720f1ec337d1ed98f2f42397f", + "size": 2410, + "filename": "400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem", + "location": "security-state-staging/intermediates/59737916-a963-4e35-8bd8-385202497f2a.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=", + "crlite_enrolled": true, + "id": "ed99b508-86ba-4d5c-b995-fdab177680bd", + "last_modified": 1651222638764 + }, + { + "schema": 1651222124076, + "derHash": "qlf0gsvFFrTRDKQJfdkNmfWqcn0gcJDQfanDaZirua0=", + "subject": "CN=HydrantID SSL CA G3,O=HydrantID (Avalanche Cloud Corporation),C=US", + "subjectDN": "MF0xCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHDAaBgNVBAMME0h5ZHJhbnRJRCBTU0wgQ0EgRzM=", + "whitelist": false, + "attachment": { + "hash": "7e0808e92ebc33ef96558a3d7c46b9b86290ea9b9c814fe1b375dd5f6e94179f", + "size": 2414, + "filename": "CgDzm8Z-Gk0j7D6yq4U4IstjpiYpBiVqyPDYr-62oO8=.pem", + "location": "security-state-staging/intermediates/84127ac4-c901-4bf0-b029-60d190c53fc6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "CgDzm8Z+Gk0j7D6yq4U4IstjpiYpBiVqyPDYr+62oO8=", + "crlite_enrolled": true, + "id": "c4016ca8-8eb6-4dcf-b5d7-f9cf4687f6db", + "last_modified": 1651222638752 + }, + { + "schema": 1651222121983, + "derHash": "f+uTdOqwjTknF8ZHQ22uBhdqJMAQYH/aHM5eXwEGtHI=", + "subject": "CN=QuoVadis Qualified Web ICA G2,O=QuoVadis Trustlink B.V.,C=NL", + "subjectDN": "MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzI=", + "whitelist": false, + "attachment": { + "hash": "c551ff3d69db56e747169ab80b2fdea513f1de4806de98e0e34ab04da70a7566", + "size": 2385, + "filename": "HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=.pem", + "location": "security-state-staging/intermediates/bd4b3ad6-5fca-4573-9e99-2959c279c1ac.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=", + "crlite_enrolled": true, + "id": "294e341c-f6e5-4868-b5aa-b980b5afa7d5", + "last_modified": 1651222638742 + }, + { + "schema": 1651222122735, + "derHash": "J47PIR4lGOndmROvxYPusxJ8gYS8vu2q171k6J6MQxA=", + "subject": "CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM", + "subjectDN": "MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==", + "whitelist": false, + "attachment": { + "hash": "8e15c43f71096a592c3d5819db25f4547bb4ef4f8232293578abdf314d149392", + "size": 2353, + "filename": "5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem", + "location": "security-state-staging/intermediates/e6bcd10d-1e18-4c5f-a5f1-91850eec82ad.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=", + "crlite_enrolled": true, + "id": "9b40ce27-a8d1-444f-a177-ff64ce1cb254", + "last_modified": 1651222638731 + }, + { + "schema": 1651222122424, + "derHash": "2w2hYDLxZDoklv3nQuK76B2spYzXYSBhQg4VTOG84r0=", + "subject": "OU=AC Componentes Informáticos,O=FNMT-RCM,C=ES", + "subjectDN": "MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==", + "whitelist": false, + "attachment": { + "hash": "9667524969985c4cb1aa76f3e3c434be6441809f9c3d2bad6265165a0b509b08", + "size": 2430, + "filename": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem", + "location": "security-state-staging/intermediates/70f3a46a-ba8f-4f11-89a5-866e51a76799.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=", + "crlite_enrolled": true, + "id": "c24c4af6-ee60-43b5-b538-bd2e1ea4cbf9", + "last_modified": 1651222638720 + }, + { + "schema": 1651222121680, + "derHash": "GKQ8UdCBdMOm2F8cExi9KQl1PnXZHPZZn3M0ewBwKJA=", + "subject": "SERIALNUMBER=Q2826004J,CN=AC Administración Pública,OU=CERES,O=FNMT-RCM,C=ES", + "subjectDN": "MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBgNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh", + "whitelist": false, + "attachment": { + "hash": "b1b8087026dcff96160076000ab8ec70cb29448880359f0ce676c987951eea3d", + "size": 2438, + "filename": "uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem", + "location": "security-state-staging/intermediates/fdd35d11-8b28-4c22-974e-8f7af61c5090.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=", + "crlite_enrolled": true, + "id": "1af98733-def0-4335-ac52-996618294919", + "last_modified": 1651222638709 + }, + { + "schema": 1651222123313, + "derHash": "DakU+3El9uZE63qiYd6euAncf5Jbayp9in7dhzY5i1s=", + "subject": "CN=Staat der Nederlanden Domein Server CA 2020,O=Staat der Nederlanden,C=NL", + "subjectDN": "MGMxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xNDAyBgNVBAMMK1N0YWF0IGRlciBOZWRlcmxhbmRlbiBEb21laW4gU2VydmVyIENBIDIwMjA=", + "whitelist": false, + "attachment": { + "hash": "2f30004a37d33d9c2a59bae9b9e7ae94f816bd331c1a88deabd4af0f028ec59e", + "size": 2438, + "filename": "N9-YluTCUa_HTXc60QxjUReBLpRniAkIK2N84DhgmW4=.pem", + "location": "security-state-staging/intermediates/bb106e72-beed-4616-9b9f-bb44107c3b3a.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "N9+YluTCUa/HTXc60QxjUReBLpRniAkIK2N84DhgmW4=", + "crlite_enrolled": true, + "id": "da9f74e2-bbea-491f-8b6d-4587b21de61e", + "last_modified": 1651222638699 + }, + { + "schema": 1651222121373, + "derHash": "MCQkQ/aJWpRWDkjk3/cgU26vUWPLQvXod0AqveL4Ynw=", + "subject": "CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM", + "subjectDN": "ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==", + "whitelist": false, + "attachment": { + "hash": "63f37d712386cb1b4ab3fb0368f861aeb7ba74ec9b9bc7ecdd247bcf94725693", + "size": 2373, + "filename": "KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem", + "location": "security-state-staging/intermediates/db9fba20-fdaf-4de6-a191-950a3e1a8f31.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=", + "crlite_enrolled": true, + "id": "5acc97ab-aba9-4bba-95d2-b15d3a84f74c", + "last_modified": 1651222638688 + }, + { + "schema": 1651222122130, + "derHash": "8Hu73gdvm0DFfMS+/t6Xyh9Tua4UfwNdKEy/U/NDL7g=", + "subject": "CN=CFCA OV OCA,O=China Financial Certification Authority,C=CN", + "subjectDN": "MFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMMC0NGQ0EgT1YgT0NB", + "whitelist": false, + "attachment": { + "hash": "bc37658d1568750ae385b92be54ede64df31899d30f67211fd1e015c9dc7803b", + "size": 1963, + "filename": "uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=.pem", + "location": "security-state-staging/intermediates/8a832b56-3f0a-4b5f-8966-8a1da5242863.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=", + "crlite_enrolled": true, + "id": "b2b776e5-2b2f-4c8e-819d-026b8d3855d2", + "last_modified": 1651222638677 + }, + { + "schema": 1651200582692, + "derHash": "Fed8WUBAFWWe4m+SVh8Aeq9TmGonkm8OcHWFwqfzAbg=", + "subject": "CN=DigiCert Global G3 TLS EE\\+ ECC384 SHA384 2022 CA1,O=DigiCert\\, Inc.,C=US", + "subjectDN": "MGIxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE6MDgGA1UEAxMxRGlnaUNlcnQgR2xvYmFsIEczIFRMUyBFRSsgRUNDMzg0IFNIQTM4NCAyMDIyIENBMQ==", + "whitelist": false, + "attachment": { + "hash": "d698eb7c871e953a2d52f5a3e37a7c94099ce9cd6e5e351f175434f9b4647831", + "size": 1276, + "filename": "qX0VkaXNOTvb_iR2T3sjz2frmsxWXSBKxeCVlcqFpuM=.pem", + "location": "security-state-staging/intermediates/b22276db-4c8e-4141-a014-1fe8448280d6.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "qX0VkaXNOTvb/iR2T3sjz2frmsxWXSBKxeCVlcqFpuM=", + "crlite_enrolled": false, + "id": "3504d097-0f0d-4eb1-bcab-f8c9cff23a8e", + "last_modified": 1651201056425 + }, + { + "schema": 1651200581750, + "derHash": "uRW4Bqi3vi44CfLpMplufBDMgmkYZKiWBr1QCA3C6rM=", + "subject": "CN=DigiCert Global G2 TLS EE\\+ RSA4096 SHA256 2022 CA1,O=DigiCert\\, Inc.,C=US", + "subjectDN": "MGMxCzAJBgNVBAYTAlVTMRcwFQYDVQQKEw5EaWdpQ2VydCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgR2xvYmFsIEcyIFRMUyBFRSsgUlNBNDA5NiBTSEEyNTYgMjAyMiBDQTE=", + "whitelist": false, + "attachment": { + "hash": "2770a30970c5f0e28e817c1788eb2c06bff044a066ecca40a7a2b96211daf4fc", + "size": 2077, + "filename": "nfWaEttE0IGAYQsFsn8KzN13pSJzWY96Gu0Dlx4QYig=.pem", + "location": "security-state-staging/intermediates/4916e83a-41de-416d-910e-e4d6d8f4f953.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "nfWaEttE0IGAYQsFsn8KzN13pSJzWY96Gu0Dlx4QYig=", + "crlite_enrolled": false, + "id": "168daeb9-d058-4d6b-946a-87f8af07577f", + "last_modified": 1651201056418 + }, + { "schema": 1650962920282, "derHash": "Ocdjqc8Z2SP5d9I2JquJBEmkRKuLeVyBXvHvgf68Hjg=", "subject": "CN=Amazon,OU=Server CA 1A,O=Amazon,C=US", @@ -37,24 +865,6 @@ "last_modified": 1650963440110 }, { - "schema": 1650962919319, - "derHash": "BwUxODzNEA0+nNlk2weqXoRaBoby6uO8imJ7GCBXsfE=", - "subject": "CN=WoTrus EV SSL Pro CA,O=WoTrus CA Limited,C=CN", - "subjectDN": "MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIEVWIFNTTCBQcm8gQ0E=", - "whitelist": false, - "attachment": { - "hash": "7be2ec04c8313dc05a7e0bef9687e9b6f04e6acceb8e83e4058ae0bf0657219d", - "size": 1845, - "filename": "rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=.pem", - "location": "security-state-staging/intermediates/f4f0a492-6a5c-4308-b805-eab6245a5ba8.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "rBTvvFbWGhKxAPrEAJ1x8vttBOVCvRznd5h2iXt2ATs=", - "crlite_enrolled": false, - "id": "f5fb39d4-0676-418d-b95a-7e81cb7b1c0a", - "last_modified": 1650963440100 - }, - { "schema": 1650962916445, "derHash": "L7qP6RVBUEmqlChXy1MTf/09nlpHsntXgtq5tNp9Yk0=", "subject": "CN=GeoTrust SupremeSSL EV 1 ECC CA,OU=www.supremessl.com,O=SupremeSSL,C=NL", @@ -73,24 +883,6 @@ "last_modified": 1650963440091 }, { - "schema": 1650962918365, - "derHash": "CQM/4jmW/kpZxMD1I9JWDjHf5MF9jqFAPUKalx9L1lo=", - "subject": "CN=WoTrus OV SSL Pro CA,O=WoTrus CA Limited,C=CN", - "subjectDN": "MEgxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1RydXMgQ0EgTGltaXRlZDEdMBsGA1UEAxMUV29UcnVzIE9WIFNTTCBQcm8gQ0E=", - "whitelist": false, - "attachment": { - "hash": "0e6c76a6d70346ff239c0a9320d8ebda8b750ae57610ff62a44fb8e221319a31", - "size": 1861, - "filename": "zACNb3_D6r-GIH58_Q4EDalNSChXFVVFbUJICvq7SIQ=.pem", - "location": "security-state-staging/intermediates/ec16d029-5557-4b00-ab92-a11542e604e1.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "zACNb3/D6r+GIH58/Q4EDalNSChXFVVFbUJICvq7SIQ=", - "crlite_enrolled": false, - "id": "28706576-bf19-447f-a3fb-607bf06bf536", - "last_modified": 1650963440078 - }, - { "schema": 1650962915469, "derHash": "chMOOyiQA0khRhf01vP7hdCEde54vwlcWUWKFNGCiGY=", "subject": "CN=Amazon,OU=Server CA 2A,O=Amazon,C=US", @@ -199,24 +991,6 @@ "last_modified": 1650920239252 }, { - "schema": 1650919765593, - "derHash": "nOYws1+K4sZBnnNK2dL6MEdt2ec5Sx6Tsn+D93agJOo=", - "subject": "CN=AC Unidades de Sellado de Tiempo,OU=Ceres,O=FNMT-RCM,C=ES", - "subjectDN": "MHUxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEpMCcGA1UEAwwgQUMgVW5pZGFkZXMgZGUgU2VsbGFkbyBkZSBUaWVtcG8=", - "whitelist": false, - "attachment": { - "hash": "671a59fe01d2cd2074dbea84483abb7c9c75db400f3b54d2aebd79a620add787", - "size": 2836, - "filename": "RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87-GT4=.pem", - "location": "security-state-staging/intermediates/86474fab-014b-4b8c-bd0d-647aa22080e5.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "RFLsjPTrs1EoFCjTCI7RLImxM2pGcGMiymQyT87+GT4=", - "crlite_enrolled": false, - "id": "b6e021cf-5602-4f60-93f5-659bb02bdfb1", - "last_modified": 1650920239243 - }, - { "schema": 1650919763686, "derHash": "vTDA0eesuD78T19sYvjzpXm6snUnr65mbGlsOoZxdfE=", "subject": "CN=vTrus ECC EV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", @@ -271,24 +1045,6 @@ "last_modified": 1650920239217 }, { - "schema": 1650919751269, - "derHash": "sarhvNVV6KPR492o7ITnV8VSZVNEzj/uu6+Y6JXb7aw=", - "subject": "CN=QuoVadis Europe SSL CA G2,O=QuoVadis Trustlink B.V.,C=NL", - "subjectDN": "MFMxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEiMCAGA1UEAwwZUXVvVmFkaXMgRXVyb3BlIFNTTCBDQSBHMg==", - "whitelist": false, - "attachment": { - "hash": "dfb31ebff112bccbef0ba90c29987f9962823acb59f69bd984351d9e2c7e22df", - "size": 2381, - "filename": "XOogr9_VItHwTOA_JogutdX4V06tVw9btHQLa2tR0_A=.pem", - "location": "security-state-staging/intermediates/88eff6f9-143b-4a55-bfef-19933a4e3007.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "XOogr9/VItHwTOA/JogutdX4V06tVw9btHQLa2tR0/A=", - "crlite_enrolled": false, - "id": "12bb227c-277f-4680-a556-f5998b87f658", - "last_modified": 1650920239208 - }, - { "schema": 1650919750344, "derHash": "2lRiUmoMLphSqGGGsCU5AVh1nNymriHwn3E8pqzN0fE=", "subject": "CN=QuoVadis Enterprise Trust CA 3 G3,O=QuoVadis Limited,C=BM", @@ -343,42 +1099,6 @@ "last_modified": 1650920239183 }, { - "schema": 1650919746473, - "derHash": "9nwj73v3QSgJ22sd09RKCNN1TZnKumoT96BcckkInIk=", - "subject": "CN=QuoVadis Global SSL ICA G2,O=QuoVadis Limited,C=BM", - "subjectDN": "ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMg==", - "whitelist": false, - "attachment": { - "hash": "f3d6221594115cd098f20f66a013d90aae3becd3c578a737a8e58a35230c208d", - "size": 2016, - "filename": "tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=.pem", - "location": "security-state-staging/intermediates/453adbd2-22ff-42b4-92ed-171fb792efa3.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "tYkfFN27P1GUjH5ME128BCg302dL2iwOYhz5wwFJb50=", - "crlite_enrolled": false, - "id": "600b2b43-1467-43ac-8086-3e9c9d9900e9", - "last_modified": 1650920239174 - }, - { - "schema": 1650919745525, - "derHash": "Httr2RJ0iC23lb/FFPiqvhCtlVy8z9P9Wltf67LOW2g=", - "subject": "CN=AC SERVIDORES SEGUROS TIPO1,OU=Ceres,O=FNMT-RCM,C=ES", - "subjectDN": "MHAxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgU0VSVklET1JFUyBTRUdVUk9TIFRJUE8x", - "whitelist": false, - "attachment": { - "hash": "1b46f0408f2325ad33c8b3c5dbcf16fa1e7e49dc37065a9692b2b6f8b93fc666", - "size": 1280, - "filename": "Rlnql4UHcyG02SDPnuECa_zDzdDX09uEM9PKaegr4Qs=.pem", - "location": "security-state-staging/intermediates/79cbc976-bf09-46d2-b7ca-8d9055a52b29.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "Rlnql4UHcyG02SDPnuECa/zDzdDX09uEM9PKaegr4Qs=", - "crlite_enrolled": false, - "id": "aab7988d-97f1-489f-bb5a-2fcf4db1d18f", - "last_modified": 1650920239165 - }, - { "schema": 1650919749373, "derHash": "VD2bf8KmRxzYT8pSws9hWd+D6/zYjYsIta8/iHN/UuY=", "subject": "CN=Amazon Root CA 4,O=Amazon,C=US", @@ -433,60 +1153,6 @@ "last_modified": 1650920239138 }, { - "schema": 1650919747446, - "derHash": "nG0IkzIBQH+/KxJUC2fMDkyWZvEy4VBHYqcXy66PP9Y=", - "subject": "CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", - "subjectDN": "MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy", - "whitelist": false, - "attachment": { - "hash": "c4fbca9a15eb275e83118896e4839aba070abde056cf047aa1a57afdd78af927", - "size": 2406, - "filename": "400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem", - "location": "security-state-staging/intermediates/0711da67-ae2e-4da6-b908-4e2a4c4b75d5.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=", - "crlite_enrolled": false, - "id": "fd5ca567-aacd-40bf-afeb-7eaf0f0e8a38", - "last_modified": 1650920239129 - }, - { - "schema": 1650919744522, - "derHash": "n/I8uTh7ngCDvVqhlU7t33kokKqOZ81NON0or0pDmtg=", - "subject": "CN=AC SERVIDORES SEGUROS TIPO2,OU=Ceres,O=FNMT-RCM,C=ES", - "subjectDN": "MHAxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ2VyZXMxGDAWBgNVBGEMD1ZBVEVTLVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgU0VSVklET1JFUyBTRUdVUk9TIFRJUE8y", - "whitelist": false, - "attachment": { - "hash": "ce9833a29f1fcb59210dd0a59d92c50ef56f427317cc530e9f61e8b7c2584453", - "size": 1280, - "filename": "dCoEY_Du2xeUAuG2_98ZWoRzf_eJoM-rCMtK2M1wF94=.pem", - "location": "security-state-staging/intermediates/8489058b-a9f7-4278-ad80-159e9e5576de.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "dCoEY/Du2xeUAuG2/98ZWoRzf/eJoM+rCMtK2M1wF94=", - "crlite_enrolled": false, - "id": "78225120-3a97-4f14-84f9-0aa83efcdb19", - "last_modified": 1650920239120 - }, - { - "schema": 1650919739846, - "derHash": "gw/yBa5pSFBZw/sjdqfy+e4cKmHeJZ3QnQu2rWn4iDI=", - "subject": "SERIALNUMBER=Q2826004J,CN=AC Administración Pública,OU=CERES,O=FNMT-RCM,C=ES", - "subjectDN": "MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBgNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh", - "whitelist": false, - "attachment": { - "hash": "1a643193c39cf1aa75be19f71a124a43c4ff5403f87361b228eed95bdccebd66", - "size": 2438, - "filename": "uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem", - "location": "security-state-staging/intermediates/68059043-be33-4574-bf76-649847020802.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=", - "crlite_enrolled": false, - "id": "8f3c14a8-669f-4990-a1b5-75acf2ebfe7a", - "last_modified": 1650920239112 - }, - { "schema": 1650919738871, "derHash": "yX42zr8VgKsb2tYcHVOwXHWBnoXZNyFL5oTIWbItReA=", "subject": "CN=vTrus ECC DV SSL CA,O=iTrusChina Co.\\,Ltd.,C=CN", @@ -505,24 +1171,6 @@ "last_modified": 1650920239103 }, { - "schema": 1650919742679, - "derHash": "NH0Y3Mwu/FGpIOen+7B7+9o1YTaB+C3KXExyuwyDwDU=", - "subject": "CN=VR IDENT SSL CA 2020,O=Fiducia & GAD IT AG,C=DE", - "subjectDN": "MEoxCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMR0wGwYDVQQDDBRWUiBJREVOVCBTU0wgQ0EgMjAyMA==", - "whitelist": false, - "attachment": { - "hash": "4158e246be129509cb8d8eb14b647517fea0196e81a9d593f4b8f64a11a6414f", - "size": 2357, - "filename": "fQUctsUYoew1aFnAFT0prf-kJmkVNqkPo2jJ5Jm9RaA=.pem", - "location": "security-state-staging/intermediates/ada7bb67-cb15-43b5-9c74-259e711941b5.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "fQUctsUYoew1aFnAFT0prf+kJmkVNqkPo2jJ5Jm9RaA=", - "crlite_enrolled": false, - "id": "2b1f7c04-dd89-4f96-ad7d-e4e167a9099d", - "last_modified": 1650920239094 - }, - { "schema": 1650919736041, "derHash": "7MDResMmOsahZNzbCPgtB+k/zqcj9muIsG7rqWeN8rs=", "subject": "CN=QuoVadis RCA3G3 TLS CA,O=QuoVadis Limited,C=BM", @@ -541,24 +1189,6 @@ "last_modified": 1650920239085 }, { - "schema": 1650919737002, - "derHash": "Fh7lOGMpsoon/0BXNlUqYh1ahEpDgR42I+Uu76C6hAo=", - "subject": "CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM", - "subjectDN": "ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==", - "whitelist": false, - "attachment": { - "hash": "b8fd47c4234e14aae99e993f325e88c880408479e0c6ecf0a155bcb2481f0c25", - "size": 2353, - "filename": "KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem", - "location": "security-state-staging/intermediates/e04bb898-e61a-4362-98f8-e5c0e0559cd6.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=", - "crlite_enrolled": false, - "id": "3157d9c2-162a-4e53-9f7b-3bde40d1cd54", - "last_modified": 1650920239077 - }, - { "schema": 1650919741723, "derHash": "IFFUt3ftxVpRRlhaXlTgVKcL5KrTuF0CMY2ie/gHrfE=", "subject": "CN=Amazon,OU=Server CA 3A,O=Amazon,C=US", @@ -578,75 +1208,21 @@ }, { "schema": 1650919735069, - "derHash": "QMgm/bIroyovnbT5R3D3K4sdqcj/2nsR5vJ68kXIm14=", - "subject": "CN=Amazon Root CA 3,O=Amazon,C=US", - "subjectDN": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDM=", - "whitelist": false, - "attachment": { - "hash": "527804e0cdb3a780b57c0f3f7429e1a5b42984b3bd67157b9fda6ba75cdc6d0a", - "size": 1370, - "filename": "NqvDJlas_GRcYbcWE8S_IceH9cq77kg0jVhZeAPXq8k=.pem", - "location": "security-state-staging/intermediates/6aba445e-a993-4da1-8b31-508ae20809f9.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "NqvDJlas/GRcYbcWE8S/IceH9cq77kg0jVhZeAPXq8k=", - "crlite_enrolled": false, - "id": "e4674db5-3ed3-49af-8910-24de0606b82c", - "last_modified": 1650920239059 - }, - { - "schema": 1650919733153, - "derHash": "YDiLdz0z6RQWSGE/NrkUnwFaEUN4us8+NpSGT/2kJuw=", - "subject": "CN=HydrantID EV SSL CA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", - "subjectDN": "MGAxCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHzAdBgNVBAMMFkh5ZHJhbnRJRCBFViBTU0wgQ0EgRzI=", - "whitelist": false, - "attachment": { - "hash": "ba2cc602bd31081e17f7745ac462854773e79726958ff1b8a553cc7ecaba9db2", - "size": 2389, - "filename": "FpAps1LWs_UTm3xApHYkNccnnZX-7Wc_v8V0t70p6rg=.pem", - "location": "security-state-staging/intermediates/a6215fbd-d6a1-4e36-b3fa-4f60752c3ad6.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "FpAps1LWs/UTm3xApHYkNccnnZX+7Wc/v8V0t70p6rg=", - "crlite_enrolled": false, - "id": "c9938308-f338-4652-aac1-c4eafdc2080c", - "last_modified": 1650920239051 - }, - { - "schema": 1650919732192, - "derHash": "y2Zmsyv/Lv7cxBh98Umm00pdELcWW5z/KmfA4xGu7tc=", - "subject": "CN=QuoVadis Europe EV SSL CA G1,O=QuoVadis Trustlink B.V.,C=NL", - "subjectDN": "MFYxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjElMCMGA1UEAwwcUXVvVmFkaXMgRXVyb3BlIEVWIFNTTCBDQSBHMQ==", - "whitelist": false, - "attachment": { - "hash": "990290f2ea4ff420df521c3b3851971e7be41a8508394faa2cb562a69bce9e55", - "size": 2385, - "filename": "WkWVWx1-X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=.pem", - "location": "security-state-staging/intermediates/a0cf3874-21b6-41ef-b36d-7e3b20b5db08.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "WkWVWx1+X3CuwtFGJvDjdr5hOX8PeMryJG2Va7Y6cj8=", - "crlite_enrolled": false, - "id": "28a8c02e-5350-422e-a3eb-6f8150960132", - "last_modified": 1650920239042 - }, - { - "schema": 1650919731238, - "derHash": "0zqEf2QDd74K4aQpFToH6HyIJ/pIQLUVi83LheEKRTo=", - "subject": "CN=VR IDENT EV SSL CA 2020,O=Fiducia & GAD IT AG,C=DE", - "subjectDN": "ME0xCzAJBgNVBAYTAkRFMRwwGgYDVQQKDBNGaWR1Y2lhICYgR0FEIElUIEFHMSAwHgYDVQQDDBdWUiBJREVOVCBFViBTU0wgQ0EgMjAyMA==", + "derHash": "QMgm/bIroyovnbT5R3D3K4sdqcj/2nsR5vJ68kXIm14=", + "subject": "CN=Amazon Root CA 3,O=Amazon,C=US", + "subjectDN": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDM=", "whitelist": false, "attachment": { - "hash": "a95e7ccf2ef4b020f65fbd061c44e49d966821be27623376e3f16a8a3ebd371f", - "size": 2361, - "filename": "te09bIALahNazDua57TEibeM7CatIkOAT8t-qu_Kdro=.pem", - "location": "security-state-staging/intermediates/e8b0b0a2-f7f0-4893-b9ef-32f493e8a146.pem", + "hash": "527804e0cdb3a780b57c0f3f7429e1a5b42984b3bd67157b9fda6ba75cdc6d0a", + "size": 1370, + "filename": "NqvDJlas_GRcYbcWE8S_IceH9cq77kg0jVhZeAPXq8k=.pem", + "location": "security-state-staging/intermediates/6aba445e-a993-4da1-8b31-508ae20809f9.pem", "mimetype": "application/x-pem-file" }, - "pubKeyHash": "te09bIALahNazDua57TEibeM7CatIkOAT8t+qu/Kdro=", + "pubKeyHash": "NqvDJlas/GRcYbcWE8S/IceH9cq77kg0jVhZeAPXq8k=", "crlite_enrolled": false, - "id": "92b7ea6b-c8ed-47fc-bd89-4834ef4a3ad5", - "last_modified": 1650920239034 + "id": "e4674db5-3ed3-49af-8910-24de0606b82c", + "last_modified": 1650920239059 }, { "schema": 1650919730302, @@ -685,78 +1261,6 @@ "last_modified": 1650920239016 }, { - "schema": 1650919740800, - "derHash": "8DhCHwfyDWOiDTaR5aF4q4RZ6+VwwWR7dpBVTvI4dqs=", - "subject": "OU=AC Componentes Informáticos,O=FNMT-RCM,C=ES", - "subjectDN": "MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==", - "whitelist": false, - "attachment": { - "hash": "711fb746c38ddfee6090169d62da5358968caf228ade2ad75cb8be4c4dd3832d", - "size": 2430, - "filename": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem", - "location": "security-state-staging/intermediates/292b3931-1dd3-4cd0-9be6-5fd40e9e982a.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=", - "crlite_enrolled": false, - "id": "f77b23d6-3d87-4035-8243-18504c783f83", - "last_modified": 1650920239007 - }, - { - "schema": 1650919761772, - "derHash": "AUU/ZFzZHiM7dISCfyP4pXP9ZBAp6opr/lSe9O2LMj0=", - "subject": "CN=HydrantID SSL ICA G2,O=HydrantID (Avalanche Cloud Corporation),C=US", - "subjectDN": "MF4xCzAJBgNVBAYTAlVTMTAwLgYDVQQKEydIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHTAbBgNVBAMTFEh5ZHJhbnRJRCBTU0wgSUNBIEcy", - "whitelist": false, - "attachment": { - "hash": "7210ab4fd67176c39b121dc273d719681e6df16720f1ec337d1ed98f2f42397f", - "size": 2410, - "filename": "400Fim9IQe4j-Gj-Ci4R44M3gA6J1_TRh8LlPSLF3I8=.pem", - "location": "security-state-staging/intermediates/59737916-a963-4e35-8bd8-385202497f2a.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "400Fim9IQe4j+Gj+Ci4R44M3gA6J1/TRh8LlPSLF3I8=", - "crlite_enrolled": false, - "id": "ed99b508-86ba-4d5c-b995-fdab177680bd", - "last_modified": 1650920238999 - }, - { - "schema": 1650919760829, - "derHash": "qlf0gsvFFrTRDKQJfdkNmfWqcn0gcJDQfanDaZirua0=", - "subject": "CN=HydrantID SSL CA G3,O=HydrantID (Avalanche Cloud Corporation),C=US", - "subjectDN": "MF0xCzAJBgNVBAYTAlVTMTAwLgYDVQQKDCdIeWRyYW50SUQgKEF2YWxhbmNoZSBDbG91ZCBDb3Jwb3JhdGlvbikxHDAaBgNVBAMME0h5ZHJhbnRJRCBTU0wgQ0EgRzM=", - "whitelist": false, - "attachment": { - "hash": "7e0808e92ebc33ef96558a3d7c46b9b86290ea9b9c814fe1b375dd5f6e94179f", - "size": 2414, - "filename": "CgDzm8Z-Gk0j7D6yq4U4IstjpiYpBiVqyPDYr-62oO8=.pem", - "location": "security-state-staging/intermediates/84127ac4-c901-4bf0-b029-60d190c53fc6.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "CgDzm8Z+Gk0j7D6yq4U4IstjpiYpBiVqyPDYr+62oO8=", - "crlite_enrolled": false, - "id": "c4016ca8-8eb6-4dcf-b5d7-f9cf4687f6db", - "last_modified": 1650920238990 - }, - { - "schema": 1650919737937, - "derHash": "f+uTdOqwjTknF8ZHQ22uBhdqJMAQYH/aHM5eXwEGtHI=", - "subject": "CN=QuoVadis Qualified Web ICA G2,O=QuoVadis Trustlink B.V.,C=NL", - "subjectDN": "MFcxCzAJBgNVBAYTAk5MMSAwHgYDVQQKDBdRdW9WYWRpcyBUcnVzdGxpbmsgQi5WLjEmMCQGA1UEAwwdUXVvVmFkaXMgUXVhbGlmaWVkIFdlYiBJQ0EgRzI=", - "whitelist": false, - "attachment": { - "hash": "c551ff3d69db56e747169ab80b2fdea513f1de4806de98e0e34ab04da70a7566", - "size": 2385, - "filename": "HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=.pem", - "location": "security-state-staging/intermediates/bd4b3ad6-5fca-4573-9e99-2959c279c1ac.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "HW4ktpkbc6tiWRVtXWUrZxqP505LD1tPqFHb3HiZbX8=", - "crlite_enrolled": false, - "id": "294e341c-f6e5-4868-b5aa-b980b5afa7d5", - "last_modified": 1650920238982 - }, - { "schema": 1650919759845, "derHash": "ORIgcFt1vPPtPNSzYxIT9WnSz4ImEB4XB5mlNUqxKGE=", "subject": "CN=Amazon Root CA 1,O=Amazon,C=US", @@ -793,42 +1297,6 @@ "last_modified": 1650920238964 }, { - "schema": 1650919734127, - "derHash": "J47PIR4lGOndmROvxYPusxJ8gYS8vu2q171k6J6MQxA=", - "subject": "CN=QuoVadis Grid ICA G2,O=QuoVadis Limited,C=BM", - "subjectDN": "MEcxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR0wGwYDVQQDExRRdW9WYWRpcyBHcmlkIElDQSBHMg==", - "whitelist": false, - "attachment": { - "hash": "8e15c43f71096a592c3d5819db25f4547bb4ef4f8232293578abdf314d149392", - "size": 2353, - "filename": "5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=.pem", - "location": "security-state-staging/intermediates/e6bcd10d-1e18-4c5f-a5f1-91850eec82ad.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "5rlUfVlXaS82HCd6DZI7w8rIamphHCdjnXNpXREZynQ=", - "crlite_enrolled": false, - "id": "9b40ce27-a8d1-444f-a177-ff64ce1cb254", - "last_modified": 1650920238956 - }, - { - "schema": 1650919728410, - "derHash": "2w2hYDLxZDoklv3nQuK76B2spYzXYSBhQg4VTOG84r0=", - "subject": "OU=AC Componentes Informáticos,O=FNMT-RCM,C=ES", - "subjectDN": "MEcxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTElMCMGA1UECwwcQUMgQ29tcG9uZW50ZXMgSW5mb3Jtw6F0aWNvcw==", - "whitelist": false, - "attachment": { - "hash": "9667524969985c4cb1aa76f3e3c434be6441809f9c3d2bad6265165a0b509b08", - "size": 2430, - "filename": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ-57NkgXsoGc=.pem", - "location": "security-state-staging/intermediates/70f3a46a-ba8f-4f11-89a5-866e51a76799.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "MEJWDQI0WXBrEdYtj1u1WdwD26XsIXQQ+57NkgXsoGc=", - "crlite_enrolled": false, - "id": "c24c4af6-ee60-43b5-b538-bd2e1ea4cbf9", - "last_modified": 1650920238947 - }, - { "schema": 1650919757998, "derHash": "OmbmSCEuYyH5TZ6rzJLAUuZ52ZLJmtRZak57ha3O5d4=", "subject": "CN=QuoVadis RCA3G1 TLS CA,O=QuoVadis Limited,C=BM", @@ -847,24 +1315,6 @@ "last_modified": 1650920238938 }, { - "schema": 1650919755184, - "derHash": "GKQ8UdCBdMOm2F8cExi9KQl1PnXZHPZZn3M0ewBwKJA=", - "subject": "SERIALNUMBER=Q2826004J,CN=AC Administración Pública,OU=CERES,O=FNMT-RCM,C=ES", - "subjectDN": "MGoxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEOMAwGA1UECwwFQ0VSRVMxEjAQBgNVBAUTCVEyODI2MDA0SjEkMCIGA1UEAwwbQUMgQWRtaW5pc3RyYWNpw7NuIFDDumJsaWNh", - "whitelist": false, - "attachment": { - "hash": "b1b8087026dcff96160076000ab8ec70cb29448880359f0ce676c987951eea3d", - "size": 2438, - "filename": "uoKUEuwkPtDw_4xcvGkwXVXs-8X9iESzjMRl18SDGV0=.pem", - "location": "security-state-staging/intermediates/fdd35d11-8b28-4c22-974e-8f7af61c5090.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "uoKUEuwkPtDw/4xcvGkwXVXs+8X9iESzjMRl18SDGV0=", - "crlite_enrolled": false, - "id": "1af98733-def0-4335-ac52-996618294919", - "last_modified": 1650920238929 - }, - { "schema": 1650919754133, "derHash": "h9zU3HRkCjIs0gVVJQbRvmTxJZYlgJZUSYa0hQvHJwY=", "subject": "CN=Amazon Root CA 1,O=Amazon,C=US", @@ -883,60 +1333,6 @@ "last_modified": 1650920238920 }, { - "schema": 1650919757026, - "derHash": "DakU+3El9uZE63qiYd6euAncf5Jbayp9in7dhzY5i1s=", - "subject": "CN=Staat der Nederlanden Domein Server CA 2020,O=Staat der Nederlanden,C=NL", - "subjectDN": "MGMxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xNDAyBgNVBAMMK1N0YWF0IGRlciBOZWRlcmxhbmRlbiBEb21laW4gU2VydmVyIENBIDIwMjA=", - "whitelist": false, - "attachment": { - "hash": "2f30004a37d33d9c2a59bae9b9e7ae94f816bd331c1a88deabd4af0f028ec59e", - "size": 2438, - "filename": "N9-YluTCUa_HTXc60QxjUReBLpRniAkIK2N84DhgmW4=.pem", - "location": "security-state-staging/intermediates/bb106e72-beed-4616-9b9f-bb44107c3b3a.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "N9+YluTCUa/HTXc60QxjUReBLpRniAkIK2N84DhgmW4=", - "crlite_enrolled": false, - "id": "da9f74e2-bbea-491f-8b6d-4587b21de61e", - "last_modified": 1650920238911 - }, - { - "schema": 1650919753184, - "derHash": "MCQkQ/aJWpRWDkjk3/cgU26vUWPLQvXod0AqveL4Ynw=", - "subject": "CN=QuoVadis Global SSL ICA G3,O=QuoVadis Limited,C=BM", - "subjectDN": "ME0xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSMwIQYDVQQDExpRdW9WYWRpcyBHbG9iYWwgU1NMIElDQSBHMw==", - "whitelist": false, - "attachment": { - "hash": "63f37d712386cb1b4ab3fb0368f861aeb7ba74ec9b9bc7ecdd247bcf94725693", - "size": 2373, - "filename": "KM3iZPSceB-hgYuNI-cSg4LRgTiUxCeGjrfXRQAY6Rs=.pem", - "location": "security-state-staging/intermediates/db9fba20-fdaf-4de6-a191-950a3e1a8f31.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "KM3iZPSceB+hgYuNI+cSg4LRgTiUxCeGjrfXRQAY6Rs=", - "crlite_enrolled": false, - "id": "5acc97ab-aba9-4bba-95d2-b15d3a84f74c", - "last_modified": 1650920238902 - }, - { - "schema": 1650855463114, - "derHash": "8Hu73gdvm0DFfMS+/t6Xyh9Tua4UfwNdKEy/U/NDL7g=", - "subject": "CN=CFCA OV OCA,O=China Financial Certification Authority,C=CN", - "subjectDN": "MFUxCzAJBgNVBAYTAkNOMTAwLgYDVQQKDCdDaGluYSBGaW5hbmNpYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFDASBgNVBAMMC0NGQ0EgT1YgT0NB", - "whitelist": false, - "attachment": { - "hash": "bc37658d1568750ae385b92be54ede64df31899d30f67211fd1e015c9dc7803b", - "size": 1963, - "filename": "uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=.pem", - "location": "security-state-staging/intermediates/8a832b56-3f0a-4b5f-8966-8a1da5242863.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "uc0FPx73f1ObHGmGZOcevy371Uo9asVjdabpiS0lKgQ=", - "crlite_enrolled": false, - "id": "b2b776e5-2b2f-4c8e-819d-026b8d3855d2", - "last_modified": 1650877037744 - }, - { "schema": 1650812270542, "derHash": "Bp3y+JGdkgnQxSSla6EYHfbRu/xKphyfAdCS4tXDof0=", "subject": "CN=MSFT BALT RS256 CA,O=Microsoft Corporation,C=US", @@ -2107,24 +2503,6 @@ "last_modified": 1647701842304 }, { - "schema": 1647701328071, - "derHash": "lzpBJ2/9AeAnoqrUnjTDeEbT6Xb/amILZxLjODIEGqY=", - "subject": "CN=Go Daddy Secure Certificate Authority - G2,OU=http://certs.godaddy.com/repository/,O=GoDaddy.com\\, Inc.,L=Scottsdale,ST=Arizona,C=US", - "subjectDN": "MIG0MQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTEaMBgGA1UEChMRR29EYWRkeS5jb20sIEluYy4xLTArBgNVBAsTJGh0dHA6Ly9jZXJ0cy5nb2RhZGR5LmNvbS9yZXBvc2l0b3J5LzEzMDEGA1UEAxMqR28gRGFkZHkgU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcy", - "whitelist": false, - "attachment": { - "hash": "a111efc20329e87b541cfc3e7f526fc54bb24624fddf210f4347b9fadfb1ab6b", - "size": 1727, - "filename": "8Rw90Ej3Ttt8RRkrg-WYDS9n7IS03bk5bjP_UXPtaY8=.pem", - "location": "security-state-staging/intermediates/a2a04dfe-6201-4d0a-b8cf-80d2975bfb51.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "8Rw90Ej3Ttt8RRkrg+WYDS9n7IS03bk5bjP/UXPtaY8=", - "crlite_enrolled": true, - "id": "549c92e2-3738-4c8c-ae37-407e4e6158ce", - "last_modified": 1647701842291 - }, - { "schema": 1647680259122, "derHash": "4i5rJZCOEQemB68GDgsk5QxtlWL/BPRVvg+N9BpQMsA=", "subject": "CN=SZAFIR Trusted CA2,O=Krajowa Izba Rozliczeniowa S.A.,C=PL", @@ -8983,24 +9361,6 @@ "last_modified": 1643540241961 }, { - "schema": 1643539715307, - "derHash": "bVWNIt3W7UyhPucS/UKvIpTyycbXATwyRxD/uNjzb6k=", - "subject": "CN=Quantum Secure Site OV TLS RSA R1,O=Quantum CA Limited,C=GB", - "subjectDN": "MFYxCzAJBgNVBAYTAkdCMRswGQYDVQQKDBJRdWFudHVtIENBIExpbWl0ZWQxKjAoBgNVBAMMIVF1YW50dW0gU2VjdXJlIFNpdGUgT1YgVExTIFJTQSBSMQ==", - "whitelist": false, - "attachment": { - "hash": "4b736d8bf2429327ac547ed2eb1ddf79a0caa2ace478f955e02127eec63d403b", - "size": 2389, - "filename": "hLf9YhON-ykf9-ab3rrdyhkLe63PWjIvsvghrHEnILA=.pem", - "location": "security-state-staging/intermediates/0f82d056-d837-49b4-9cdd-d5d76a9b1a35.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "hLf9YhON+ykf9+ab3rrdyhkLe63PWjIvsvghrHEnILA=", - "crlite_enrolled": true, - "id": "1fba5287-1ee9-49bb-8756-3e120f3f4896", - "last_modified": 1643540241950 - }, - { "schema": 1643539728848, "derHash": "jYPWn6YVqiaDsT14lEgsVCsLzxi7ktMPAV+0JHGvu2Y=", "subject": "CN=TrustAsia ECC EV TLS Pro CA G3,O=TrustAsia Technologies\\, Inc.,C=CN", @@ -9289,24 +9649,6 @@ "last_modified": 1643540241449 }, { - "schema": 1643539716284, - "derHash": "MTH/29ln180dd3Qq+XcvEFH/TJrkE3WfQ0/h6BERngM=", - "subject": "CN=TrustOcean EV SSL CA - RSA - 2019,OU=Controlled by Sectigo exclusively for TrustOcean Ltd.+OU=RSA Extended Validation Secure Server - 2019,O=TrustOcean Ltd.,L=Denver,ST=CO,C=US", - "subjectDN": "MIHoMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ08xDzANBgNVBAcTBkRlbnZlcjEYMBYGA1UEChMPVHJ1c3RPY2VhbiBMdGQuMT4wPAYDVQQLEzVDb250cm9sbGVkIGJ5IFNlY3RpZ28gZXhjbHVzaXZlbHkgZm9yIFRydXN0T2NlYW4gTHRkLjE1MDMGA1UECxMsUlNBIEV4dGVuZGVkIFZhbGlkYXRpb24gU2VjdXJlIFNlcnZlciAtIDIwMTkxKjAoBgNVBAMTIVRydXN0T2NlYW4gRVYgU1NMIENBIC0gUlNBIC0gMjAxOQ==", - "whitelist": false, - "attachment": { - "hash": "bb57de69afc6d6f5f59b1c80758edf0ef1791b7a08530fed8903ef18cd25188e", - "size": 2324, - "filename": "uG18SfTnbrT8g2zCkpa7kWClIcTyqEW_1iPtChk9nTQ=.pem", - "location": "security-state-staging/intermediates/6020590f-b065-482b-9549-d56eb98c4b60.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "uG18SfTnbrT8g2zCkpa7kWClIcTyqEW/1iPtChk9nTQ=", - "crlite_enrolled": true, - "id": "12413a5f-6a98-4669-8438-f936d9b86ea3", - "last_modified": 1643540241438 - }, - { "schema": 1643539749082, "derHash": "Yjq+xvhacCisoQ9b3F2BtWtjFN8odD/8yE7KMvNa6EY=", "subject": "CN=MuaSSL.com TLS Issuing ECC CA R1,O=Hao Quang Viet Software Company Limited,C=VN", @@ -9361,24 +9703,6 @@ "last_modified": 1643540241387 }, { - "schema": 1643539736744, - "derHash": "VYRK03slu02z/+fc3DkCOkGzxIikepX60fz61Qi3AoU=", - "subject": "CN=Dodo Sign TLS ICA RSA R1,O=Dodo Sign Ltd,L=Ebene,ST=Plaines Wilhems,C=MU", - "subjectDN": "MHIxCzAJBgNVBAYTAk1VMRgwFgYDVQQIDA9QbGFpbmVzIFdpbGhlbXMxDjAMBgNVBAcMBUViZW5lMRYwFAYDVQQKDA1Eb2RvIFNpZ24gTHRkMSEwHwYDVQQDDBhEb2RvIFNpZ24gVExTIElDQSBSU0EgUjE=", - "whitelist": false, - "attachment": { - "hash": "9bbab79fdec346cdda828bc4486cedf2582bee9d80c23587c1c2f05407854b6e", - "size": 2438, - "filename": "QBni1na5RD10V0ehoagk-O8mlEaC8kPw1gH8_uoYYTY=.pem", - "location": "security-state-staging/intermediates/512c8ed9-74cb-4a34-a0b5-79f8a0f953b2.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "QBni1na5RD10V0ehoagk+O8mlEaC8kPw1gH8/uoYYTY=", - "crlite_enrolled": true, - "id": "d63929e7-804a-4e7f-9657-ccb49438e6ad", - "last_modified": 1643540241377 - }, - { "schema": 1643539727648, "derHash": "/yAcoSyHpvDLpkPpq7PJVMkVWt0xObLi6u0RS/n3XTE=", "subject": "CN=COMODO RSA Domain Validation Secure Server CA 2,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB", @@ -9955,24 +10279,6 @@ "last_modified": 1642150669331 }, { - "schema": 1642150118470, - "derHash": "DWMgSDbsyonvv0d2uOvDKACBMbldcKknr+bw4emu1Ig=", - "subject": "CN=ZoTrus ECC OV SSL CA,O=ZoTrus Technology Limited,C=CN", - "subjectDN": "MFAxCzAJBgNVBAYTAkNOMSIwIAYDVQQKExlab1RydXMgVGVjaG5vbG9neSBMaW1pdGVkMR0wGwYDVQQDExRab1RydXMgRUNDIE9WIFNTTCBDQQ==", - "whitelist": false, - "attachment": { - "hash": "a2284106a606bc666bf93756cf85c68302222a8b5b3cc118f7ab3a57bcba9ea8", - "size": 1240, - "filename": "kMFHAfR4b2U_8eFzUzC98IWCVy6jfhYT7KhWmUMfFZc=.pem", - "location": "security-state-staging/intermediates/f12b578e-b704-425f-a0d8-d08080a40762.pem", - "mimetype": "application/x-pem-file" - }, - "pubKeyHash": "kMFHAfR4b2U/8eFzUzC98IWCVy6jfhYT7KhWmUMfFZc=", - "crlite_enrolled": false, - "id": "da380fd2-3da8-422f-9f3e-70dae67eb537", - "last_modified": 1642150669324 - }, - { "schema": 1642125559104, "derHash": "6RWMavVojPz5iQIGxDBhyB+n/AfQjiiifAaMWAc6aZo=", "subject": "CN=DigiCert Trusted Root G4,OU=www.digicert.com,O=DigiCert Inc,C=US", diff -Nru firefox-100.0+build2/SOURCE_CHANGESET firefox-100.0.1+build1/SOURCE_CHANGESET --- firefox-100.0+build2/SOURCE_CHANGESET 2022-04-29 06:35:24.000000000 +0000 +++ firefox-100.0.1+build1/SOURCE_CHANGESET 2022-05-15 18:24:03.000000000 +0000 @@ -1 +1 @@ -1c7f7adc90e2b4c8d64548938bb1499033c5be8f \ No newline at end of file +b1c0f261443931d2a01f2fdc7016db5424cb471d \ No newline at end of file diff -Nru firefox-100.0+build2/testing/web-platform/meta/infrastructure/server/__dir__.ini firefox-100.0.1+build1/testing/web-platform/meta/infrastructure/server/__dir__.ini --- firefox-100.0+build2/testing/web-platform/meta/infrastructure/server/__dir__.ini 2022-04-29 06:34:54.000000000 +0000 +++ firefox-100.0.1+build1/testing/web-platform/meta/infrastructure/server/__dir__.ini 2022-05-15 18:23:33.000000000 +0000 @@ -1,2 +1,3 @@ lsan-disabled: true leak-threshold: [default:51200, tab:51200] +prefs: [network.http.http2.websockets:true] diff -Nru firefox-100.0+build2/testing/web-platform/meta/websockets/__dir__.ini firefox-100.0.1+build1/testing/web-platform/meta/websockets/__dir__.ini --- firefox-100.0+build2/testing/web-platform/meta/websockets/__dir__.ini 2022-04-29 06:34:54.000000000 +0000 +++ firefox-100.0.1+build1/testing/web-platform/meta/websockets/__dir__.ini 2022-05-15 18:23:33.000000000 +0000 @@ -1,2 +1,3 @@ lsan-disabled: true leak-threshold: [default:102400, tab:51200] +prefs: [network.http.http2.websockets:true] diff -Nru firefox-100.0+build2/testing/web-platform/meta/websockets/extended-payload-length.html.ini firefox-100.0.1+build1/testing/web-platform/meta/websockets/extended-payload-length.html.ini --- firefox-100.0+build2/testing/web-platform/meta/websockets/extended-payload-length.html.ini 2022-04-29 06:34:55.000000000 +0000 +++ firefox-100.0.1+build1/testing/web-platform/meta/websockets/extended-payload-length.html.ini 2022-05-15 18:23:33.000000000 +0000 @@ -1,22 +1,5 @@ [extended-payload-length.html?wpt_flags=h2] - expected: - if (os == "mac") and not debug: [OK, TIMEOUT] - [Application data is 126 byte which starts to use the 16 bit 'Extended payload length' field.] - expected: - if (os == "android") and swgl: [PASS, FAIL] - if (os == "mac") and not debug: [PASS, FAIL] - - [Application data is 125 byte which means any 'Extended payload length' field isn't used at all.] - expected: - if swgl and (os == "android"): [PASS, FAIL] - - [Application data is 0xFFFF byte which means the upper bound of the 16 bit 'Extended payload length' field.] - expected: - if (os == "mac") and not debug: [PASS, TIMEOUT] - - [Application data is (0xFFFF + 1) byte which starts to use the 64 bit 'Extended payload length' field] - expected: - if (os == "mac") and not debug: [PASS, TIMEOUT] + disabled: Bug 1727995 [extended-payload-length.html?wss] diff -Nru firefox-100.0+build2/toolkit/actors/PictureInPictureChild.jsm firefox-100.0.1+build1/toolkit/actors/PictureInPictureChild.jsm --- firefox-100.0+build2/toolkit/actors/PictureInPictureChild.jsm 2022-04-29 06:35:08.000000000 +0000 +++ firefox-100.0.1+build1/toolkit/actors/PictureInPictureChild.jsm 2022-05-15 18:23:47.000000000 +0000 @@ -1424,6 +1424,10 @@ // semantic markup like and tags are rendered. allCuesArray.forEach(cue => { let text = cue.text; + // Trim extra newlines and whitespaces + const re = /(\s*\n{2,}\s*)/g; + text = text.trim(); + text = text.replace(re, "\n"); let cueTextNode = WebVTT.convertCueToDOMTree(playerVideoWindow, text); let cueDiv = this.document.createElement("div"); cueDiv.appendChild(cueTextNode); diff -Nru firefox-100.0+build2/toolkit/components/messaging-system/schemas/SpecialMessageActionSchemas/test/browser/browser_sma_tcp.js firefox-100.0.1+build1/toolkit/components/messaging-system/schemas/SpecialMessageActionSchemas/test/browser/browser_sma_tcp.js --- firefox-100.0+build2/toolkit/components/messaging-system/schemas/SpecialMessageActionSchemas/test/browser/browser_sma_tcp.js 2022-04-29 06:35:08.000000000 +0000 +++ firefox-100.0.1+build1/toolkit/components/messaging-system/schemas/SpecialMessageActionSchemas/test/browser/browser_sma_tcp.js 2022-05-15 18:23:47.000000000 +0000 @@ -3,18 +3,6 @@ "use strict"; -const OPT_IN_SEARCH_PREFS = [ - ["browser.search.param.google_channel_us", "tus7"], - ["browser.search.param.google_channel_row", "trow7"], - ["browser.search.param.bing_ptag", "MOZZ0000000031"], -]; - -const OPT_OUT_SEARCH_PREFS = [ - ["browser.search.param.google_channel_us", "tus7"], - ["browser.search.param.google_channel_row", "trow7"], - ["browser.search.param.bing_ptag", "MOZZ0000000031"], -]; - add_task(async function test_tcp_action() { let PREF = "privacy.restrict3rdpartystorage.rollout.enabledByDefault"; @@ -29,7 +17,6 @@ ok(!error, "The action should be valid"); Services.prefs.clearUserPref(PREF); - OPT_IN_SEARCH_PREFS.forEach(([key]) => Services.prefs.clearUserPref(key)); }); add_task(async function test_tcp_section_action() { @@ -50,7 +37,6 @@ Services.prefs.clearUserPref(PREF); Services.prefs.clearUserPref(PREF_TCP_ENABLED_BY_DEFAULT); - OPT_OUT_SEARCH_PREFS.forEach(([key]) => Services.prefs.clearUserPref(key)); }); add_task(async function test_tcp_action_pref() { @@ -65,17 +51,7 @@ `Pref '${PREF}' is enabled by the action` ); - OPT_IN_SEARCH_PREFS.forEach(([key, value]) => { - Assert.ok(Services.prefs.prefHasUserValue(key)); - is( - Services.prefs.getStringPref(key), - value, - `Pref '${key}' is set by the action` - ); - }); - Services.prefs.clearUserPref(PREF); - OPT_IN_SEARCH_PREFS.forEach(([key]) => Services.prefs.clearUserPref(key)); }); add_task(async function test_tcp_section_action_pref() { @@ -86,9 +62,6 @@ Assert.ok(!Services.prefs.prefHasUserValue(PREF)); Assert.ok(!Services.prefs.prefHasUserValue(PREF_TCP_ENABLED_BY_DEFAULT)); - OPT_OUT_SEARCH_PREFS.forEach(([key]) => - Assert.ok(!Services.prefs.prefHasUserValue(key)) - ); await SMATestUtils.executeAndValidateAction({ type: "ENABLE_TOTAL_COOKIE_PROTECTION_SECTION_AND_OPT_OUT", @@ -105,16 +78,6 @@ `Pref '${PREF_TCP_ENABLED_BY_DEFAULT}' is disabled by the action` ); - OPT_OUT_SEARCH_PREFS.forEach(([key, value]) => { - Assert.ok(Services.prefs.prefHasUserValue(key)); - is( - Services.prefs.getStringPref(key), - value, - `Pref '${key}' is set by the action` - ); - }); - Services.prefs.clearUserPref(PREF); Services.prefs.clearUserPref(PREF_TCP_ENABLED_BY_DEFAULT); - OPT_OUT_SEARCH_PREFS.forEach(([key]) => Services.prefs.clearUserPref(key)); }); diff -Nru firefox-100.0+build2/toolkit/components/places/bookmark_sync/src/store.rs firefox-100.0.1+build1/toolkit/components/places/bookmark_sync/src/store.rs --- firefox-100.0+build2/toolkit/components/places/bookmark_sync/src/store.rs 2022-04-29 06:35:08.000000000 +0000 +++ firefox-100.0.1+build1/toolkit/components/places/bookmark_sync/src/store.rs 2022-05-15 18:23:47.000000000 +0000 @@ -980,7 +980,7 @@ ops(guid, level) AS (VALUES {}) INSERT INTO itemsRemoved(itemId, parentId, position, type, title, placeId, guid, parentGuid, level) - SELECT b.id, b.parent, b.position, b.type, b.title, b.fk, + SELECT b.id, b.parent, b.position, b.type, IFNULL(b.title, \"\"), b.fk, b.guid, p.guid, n.level FROM ops n JOIN moz_bookmarks b ON b.guid = n.guid diff -Nru firefox-100.0+build2/toolkit/components/places/tests/sync/test_bookmark_observer_recorder.js firefox-100.0.1+build1/toolkit/components/places/tests/sync/test_bookmark_observer_recorder.js --- firefox-100.0+build2/toolkit/components/places/tests/sync/test_bookmark_observer_recorder.js 2022-04-29 06:35:09.000000000 +0000 +++ firefox-100.0.1+build1/toolkit/components/places/tests/sync/test_bookmark_observer_recorder.js 2022-05-15 18:23:47.000000000 +0000 @@ -161,7 +161,7 @@ id: "bookmarkDDDD", parentid: "unfiled", type: "bookmark", - title: "D", + title: null, bmkUri: "http://example.com/d", }, { @@ -286,7 +286,7 @@ }, { guid: "bookmarkDDDD", - title: "D", + title: null, url: "http://example.com/d", dateAdded, lastModified, @@ -441,7 +441,7 @@ index: 1, type: PlacesUtils.bookmarks.TYPE_BOOKMARK, urlHref: "http://example.com/d", - title: "D", + title: "", // null titles get turned into empty strings. guid: "bookmarkDDDD", parentGuid: PlacesUtils.bookmarks.menuGuid, source: PlacesUtils.bookmarks.SOURCES.SYNC, diff -Nru firefox-100.0+build2/toolkit/xre/dllservices/mozglue/WindowsDllBlocklistDefs.in firefox-100.0.1+build1/toolkit/xre/dllservices/mozglue/WindowsDllBlocklistDefs.in --- firefox-100.0+build2/toolkit/xre/dllservices/mozglue/WindowsDllBlocklistDefs.in 2022-04-29 06:35:09.000000000 +0000 +++ firefox-100.0.1+build1/toolkit/xre/dllservices/mozglue/WindowsDllBlocklistDefs.in 2022-05-15 18:23:48.000000000 +0000 @@ -248,6 +248,10 @@ # InfoWatch Device Monitor causes crashes, bug 1704276 DllBlocklistEntry("iwprn.dll", (6, 9, 11, 360)), DllBlocklistEntry("iwprn_x86.dll", (6, 9, 11, 360)), + + # Forcepoint DLLs causing crashes, bug 1767993 + DllBlocklistEntry("qipcap.dll", (7, 7, 819, 1)), + DllBlocklistEntry("qipcap64.dll", (7, 7, 819, 1)), ] ALL_PROCESSES_TESTS += [ @@ -300,5 +304,12 @@ DllBlocklistEntry("videocapturer.dll", ALL_VERSIONS), DllBlocklistEntry("videocapturerhk32.dll", ALL_VERSIONS), DllBlocklistEntry("videocapturerhk64.dll", ALL_VERSIONS), + + # Causes crashes in the content process with win32k lockdown, bug 1766029 + # The crash seems to be in the *_m module which has been unloaded. + DllBlocklistEntry("safaweb.dll", (3, 0, 21, 3181)), + DllBlocklistEntry("safaweb_m.dll", (3, 0, 21, 3181)), + DllBlocklistEntry("safaweb64.dll", (3, 0, 21, 3181)), + DllBlocklistEntry("safaweb64_m.dll", (3, 0, 21, 3181)), ]