CINXE.COM
Archive 2021 - First break
<!DOCTYPE html> <html lang="en-US" prefix="og: https://ogp.me/ns#"> <head> <meta charset="UTF-8"> <style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style> <!-- Search Engine Optimization by Rank Math - https://rankmath.com/ --> <title>Archive 2021 - First break</title> <meta name="description" content="Please note that the archived issues do not include technical articles and special topics. You can access this content on Earthdoc.org"/> <meta name="robots" content="index, follow, max-snippet:-1, max-video-preview:-1, max-image-preview:large"/> <link rel="canonical" href="https://www.firstbreak.org/archive-2021/" /> <meta property="og:locale" content="en_US" /> <meta property="og:type" content="article" /> <meta property="og:title" content="Archive 2021 - First break" /> <meta property="og:description" content="Please note that the archived issues do not include technical articles and special topics. You can access this content on Earthdoc.org" /> <meta property="og:url" content="https://www.firstbreak.org/archive-2021/" /> <meta property="og:site_name" content="First break" /> <meta property="og:updated_time" content="2025-02-04T11:02:43+02:00" /> <meta property="article:published_time" content="2021-01-21T07:49:34+02:00" /> <meta property="article:modified_time" content="2025-02-04T11:02:43+02:00" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Archive 2021 - First break" /> <meta name="twitter:description" content="Please note that the archived issues do not include technical articles and special topics. You can access this content on Earthdoc.org" /> <script type="application/ld+json" class="rank-math-schema">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://www.firstbreak.org/#organization","name":"First break","url":"https://www.firstbreak.org"},{"@type":"WebSite","@id":"https://www.firstbreak.org/#website","url":"https://www.firstbreak.org","name":"First break","publisher":{"@id":"https://www.firstbreak.org/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https://www.firstbreak.org/archive-2021/#webpage","url":"https://www.firstbreak.org/archive-2021/","name":"Archive 2021 - First break","datePublished":"2021-01-21T07:49:34+02:00","dateModified":"2025-02-04T11:02:43+02:00","isPartOf":{"@id":"https://www.firstbreak.org/#website"},"inLanguage":"en-US"},{"@type":"Person","@id":"https://www.firstbreak.org/author/snaeage-org/","name":"sna@eage.org","url":"https://www.firstbreak.org/author/snaeage-org/","image":{"@type":"ImageObject","@id":"https://secure.gravatar.com/avatar/f4751ab02b3661136f986c1fa2c044f6?s=96&d=mm&r=g","url":"https://secure.gravatar.com/avatar/f4751ab02b3661136f986c1fa2c044f6?s=96&d=mm&r=g","caption":"sna@eage.org","inLanguage":"en-US"},"worksFor":{"@id":"https://www.firstbreak.org/#organization"}},{"@type":"Article","headline":"Archive 2021 - First break","datePublished":"2021-01-21T07:49:34+02:00","dateModified":"2025-02-04T11:02:43+02:00","author":{"@id":"https://www.firstbreak.org/author/snaeage-org/","name":"sna@eage.org"},"publisher":{"@id":"https://www.firstbreak.org/#organization"},"description":"Please note that the archived issues do not include technical articles and special topics. You can access this content on Earthdoc.org","name":"Archive 2021 - First break","@id":"https://www.firstbreak.org/archive-2021/#richSnippet","isPartOf":{"@id":"https://www.firstbreak.org/archive-2021/#webpage"},"inLanguage":"en-US","mainEntityOfPage":{"@id":"https://www.firstbreak.org/archive-2021/#webpage"}}]}</script> <!-- /Rank Math WordPress SEO plugin --> <link rel='dns-prefetch' href='//stats.wp.com' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="First break » Feed" href="https://www.firstbreak.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="First break » Comments Feed" href="https://www.firstbreak.org/comments/feed/" /> <script> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.firstbreak.org\/wp-includes\/js\/wp-emoji.js?ver=6.7.2","twemoji":"https:\/\/www.firstbreak.org\/wp-includes\/js\/twemoji.js?ver=6.7.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); </script> <!-- firstbreak.org is managing ads with Advanced Ads 1.56.1 --><script id="first-ready"> /** * Wait for the page to be ready before firing JS. * * @param {function} callback - A callable function to be executed. * @param {string} [requestedState=complete] - document.readyState to wait for. Defaults to 'complete', can be 'interactive'. */ window.advanced_ads_ready = function ( callback, requestedState ) { requestedState = requestedState || 'complete'; var checkState = function ( state ) { return requestedState === 'interactive' ? state !== 'loading' : state === 'complete'; }; // If we have reached the correct state, fire the callback. if ( checkState( document.readyState ) ) { callback(); return; } // We are not yet in the correct state, attach an event handler, only fire once if the requested state is 'interactive'. document.addEventListener( 'readystatechange', function ( event ) { if ( checkState( event.target.readyState ) ) { callback(); } }, {once: requestedState === 'interactive'} ); }; window.advanced_ads_ready_queue = window.advanced_ads_ready_queue || []; </script> <style id='wp-emoji-styles-inline-css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='all-css-4' href='https://www.firstbreak.org/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5oM02OfaGpobWxpZmhgbGwAAhN0tcg==' type='text/css' media='all' /> <style id='jetpack-sharing-buttons-style-inline-css'> .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em} </style> <style id='rank-math-toc-block-style-inline-css'> .wp-block-rank-math-toc-block nav ol{counter-reset:item}.wp-block-rank-math-toc-block nav ol li{display:block}.wp-block-rank-math-toc-block nav ol li:before{content:counters(item, ".") ". ";counter-increment:item} </style> <style id='rank-math-rich-snippet-style-inline-css'> /*! * Plugin: Rank Math * URL: https://rankmath.com/wordpress/plugin/seo-suite/ * Name: rank-math-review-snippet.css */@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(-360deg)}}@keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes bounce{from{-webkit-transform:translateY(0px);transform:translateY(0px)}to{-webkit-transform:translateY(-5px);transform:translateY(-5px)}}@-webkit-keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}@keyframes loading{0%{background-size:20% 50% ,20% 50% ,20% 50%}20%{background-size:20% 20% ,20% 50% ,20% 50%}40%{background-size:20% 100%,20% 20% ,20% 50%}60%{background-size:20% 50% ,20% 100%,20% 20%}80%{background-size:20% 50% ,20% 50% ,20% 100%}100%{background-size:20% 50% ,20% 50% ,20% 50%}}:root{--rankmath-wp-adminbar-height: 0}#rank-math-rich-snippet-wrapper{overflow:hidden}#rank-math-rich-snippet-wrapper h5.rank-math-title{display:block;font-size:18px;line-height:1.4}#rank-math-rich-snippet-wrapper .rank-math-review-image{float:right;max-width:40%;margin-left:15px}#rank-math-rich-snippet-wrapper .rank-math-review-data{margin-bottom:15px}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper{width:100%;padding:0 0 20px 0;float:left;clear:both;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{border:0;display:block;margin:0;width:auto;float:left;text-align:left;padding:0;font-size:24px;line-height:1;font-weight:700;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:left;margin-left:15px;margin-top:5px;position:relative;z-index:99;line-height:1}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper{display:inline-block;white-space:nowrap;position:relative;color:#e7e7e7}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper .rank-math-review-result{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;color:#ffbe01}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i{font-size:18px;-webkit-text-stroke-width:1px;font-style:normal;padding:0 2px;line-height:inherit}#rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result-wrapper i:before{content:"\2605"}body.rtl #rank-math-rich-snippet-wrapper .rank-math-review-image{float:left;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-total{float:right}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star{float:right;margin-left:0;margin-right:15px}body.rtl #rank-math-rich-snippet-wrapper .rank-math-total-wrapper .rank-math-review-star .rank-math-review-result{left:auto;right:0}@media screen and (max-width: 480px){#rank-math-rich-snippet-wrapper .rank-math-review-image{display:block;max-width:100%;width:100%;text-align:center;margin-right:0}#rank-math-rich-snippet-wrapper .rank-math-review-data{clear:both}}.clear{clear:both} </style> <style id='filebird-block-filebird-gallery-style-inline-css'> ul.filebird-block-filebird-gallery{margin:auto!important;padding:0!important;width:100%}ul.filebird-block-filebird-gallery.layout-grid{display:grid;grid-gap:20px;align-items:stretch;grid-template-columns:repeat(var(--columns),1fr);justify-items:stretch}ul.filebird-block-filebird-gallery.layout-grid li img{border:1px solid #ccc;box-shadow:2px 2px 6px 0 rgba(0,0,0,.3);height:100%;max-width:100%;-o-object-fit:cover;object-fit:cover;width:100%}ul.filebird-block-filebird-gallery.layout-masonry{-moz-column-count:var(--columns);-moz-column-gap:var(--space);column-gap:var(--space);-moz-column-width:var(--min-width);columns:var(--min-width) var(--columns);display:block;overflow:auto}ul.filebird-block-filebird-gallery.layout-masonry li{margin-bottom:var(--space)}ul.filebird-block-filebird-gallery li{list-style:none}ul.filebird-block-filebird-gallery li figure{height:100%;margin:0;padding:0;position:relative;width:100%}ul.filebird-block-filebird-gallery li figure figcaption{background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);bottom:0;box-sizing:border-box;color:#fff;font-size:.8em;margin:0;max-height:100%;overflow:auto;padding:3em .77em .7em;position:absolute;text-align:center;width:100%;z-index:2}ul.filebird-block-filebird-gallery li figure figcaption a{color:inherit} </style> <style id='classic-theme-styles-inline-css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--accent: #e40f48;--wp--preset--color--primary: #000000;--wp--preset--color--secondary: #6b6b6b;--wp--preset--color--subtle-background: #d8d8d8;--wp--preset--color--background: #fafafa;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 18px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 26.25px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-size--normal: 21px;--wp--preset--font-size--larger: 32px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='all-css-16' href='https://www.firstbreak.org/_static/??-eJyVkNtuwyAMhl9oDqoyNe3FtGch4Cas5iBsFPXtB+lSZep6sRuE7f//fFBLAhODYBCVqEwusEI/ok0ZmZVmRmFleJ/tavim/jBK1oFJC64y8IXEkQtT0bQnSU5AuqUnBF6cmBnzE1Rm9FjFSw1u91ex3AiflL7ANsEXStLmCof3rlc+2kIN0UggMVLtH33S8ov6cp3ewoVcGmO8gm0/ICe432TNdt6FB8MFQ8XiT1nz7Cr19cWQ6mhBYt6o5EaFq+d+9K0O/+Q08yWvKttcn/7jMPTn8+k4HIdv56W+MQ==' type='text/css' media='all' /> <style id='twentytwenty-style-inline-css'> .color-accent,.color-accent-hover:hover,.color-accent-hover:focus,:root .has-accent-color,.has-drop-cap:not(:focus):first-letter,.wp-block-button.is-style-outline,a { color: #e40f48; }blockquote,.border-color-accent,.border-color-accent-hover:hover,.border-color-accent-hover:focus { border-color: #e40f48; }button,.button,.faux-button,.wp-block-button__link,.wp-block-file .wp-block-file__button,input[type="button"],input[type="reset"],input[type="submit"],.bg-accent,.bg-accent-hover:hover,.bg-accent-hover:focus,:root .has-accent-background-color,.comment-reply-link { background-color: #e40f48; }.fill-children-accent,.fill-children-accent * { fill: #e40f48; }:root .has-background-color,button,.button,.faux-button,.wp-block-button__link,.wp-block-file__button,input[type="button"],input[type="reset"],input[type="submit"],.wp-block-button,.comment-reply-link,.has-background.has-primary-background-color:not(.has-text-color),.has-background.has-primary-background-color *:not(.has-text-color),.has-background.has-accent-background-color:not(.has-text-color),.has-background.has-accent-background-color *:not(.has-text-color) { color: #fafafa; }:root .has-background-background-color { background-color: #fafafa; }body,.entry-title a,:root .has-primary-color { color: #000000; }:root .has-primary-background-color { background-color: #000000; }cite,figcaption,.wp-caption-text,.post-meta,.entry-content .wp-block-archives li,.entry-content .wp-block-categories li,.entry-content .wp-block-latest-posts li,.wp-block-latest-comments__comment-date,.wp-block-latest-posts__post-date,.wp-block-embed figcaption,.wp-block-image figcaption,.wp-block-pullquote cite,.comment-metadata,.comment-respond .comment-notes,.comment-respond .logged-in-as,.pagination .dots,.entry-content hr:not(.has-background),hr.styled-separator,:root .has-secondary-color { color: #6b6b6b; }:root .has-secondary-background-color { background-color: #6b6b6b; }pre,fieldset,input,textarea,table,table *,hr { border-color: #d8d8d8; }caption,code,code,kbd,samp,.wp-block-table.is-style-stripes tbody tr:nth-child(odd),:root .has-subtle-background-background-color { background-color: #d8d8d8; }.wp-block-table.is-style-stripes { border-bottom-color: #d8d8d8; }.wp-block-latest-posts.is-grid li { border-top-color: #d8d8d8; }:root .has-subtle-background-color { color: #d8d8d8; }body:not(.overlay-header) .primary-menu > li > a,body:not(.overlay-header) .primary-menu > li > .icon,.modal-menu a,.footer-menu a, .footer-widgets a,#site-footer .wp-block-button.is-style-outline,.wp-block-pullquote:before,.singular:not(.overlay-header) .entry-header a,.archive-header a,.header-footer-group .color-accent,.header-footer-group .color-accent-hover:hover { color: #cd2653; }.social-icons a,#site-footer button:not(.toggle),#site-footer .button,#site-footer .faux-button,#site-footer .wp-block-button__link,#site-footer .wp-block-file__button,#site-footer input[type="button"],#site-footer input[type="reset"],#site-footer input[type="submit"] { background-color: #cd2653; }.header-footer-group,body:not(.overlay-header) #site-header .toggle,.menu-modal .toggle { color: #000000; }body:not(.overlay-header) .primary-menu ul { background-color: #000000; }body:not(.overlay-header) .primary-menu > li > ul:after { border-bottom-color: #000000; }body:not(.overlay-header) .primary-menu ul ul:after { border-left-color: #000000; }.site-description,body:not(.overlay-header) .toggle-inner .toggle-text,.widget .post-date,.widget .rss-date,.widget_archive li,.widget_categories li,.widget cite,.widget_pages li,.widget_meta li,.widget_nav_menu li,.powered-by-wordpress,.to-the-top,.singular .entry-header .post-meta,.singular:not(.overlay-header) .entry-header .post-meta a { color: #6d6d6d; }.header-footer-group pre,.header-footer-group fieldset,.header-footer-group input,.header-footer-group textarea,.header-footer-group table,.header-footer-group table *,.footer-nav-widgets-wrapper,#site-footer,.menu-modal nav *,.footer-widgets-outer-wrapper,.footer-top { border-color: #dcd7ca; }.header-footer-group table caption,body:not(.overlay-header) .header-inner .toggle-wrapper::before { background-color: #dcd7ca; } </style> <link rel='stylesheet' id='print-css-16' href='https://www.firstbreak.org/wp-content/themes/twentytwenty/print.css?m=1729506113g' type='text/css' media='print' /> <link rel='stylesheet' id='elementor-post-182-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-182.css?ver=1737121975' media='all' /> <link rel='stylesheet' id='all-css-18' href='https://www.firstbreak.org/_static/??-eJylkUsOwjAMRC+EGwoC1AXiLCF1W4v8FKfk+lilCxZFQFlZtueNRrYqEUzwGX1W0Y49eVYxFExRmxugRScbVpoZpRhm1aVJ3lbSbNQCPkMhQUzhlSzU9pjB6zuIYKwc+c8mCwYs2TCtxgfULfl+NU8iBkucv3N4cwVGncwAXUjutySWrqoTEeiCHBw+nyKDuf/TiYOl6bcXd65P+2Z3bOrt4QGVgND8' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-893-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-893.css?ver=1738659911' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=6.7.2' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script id="jquery-core-js-extra"> var pp = {"ajax_url":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php"}; </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJx9jcsKwkAMRX/IMeoI0oX4LUMbaoYmHZsMtX9vfHTThRASLpyTC3MJJO1QO1TIPo+K0/I7+6w7+AcEpn5KhivYjmIoBmWoPYkCo1S3QxnV3jInD0yy5e2O7O9t9rB8NyRVtE8lSYdPV258PV5ic2rOMR7yC7ATRNM=" ></script><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.firstbreak.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.7.2" /> <link rel='shortlink' href='https://www.firstbreak.org/?p=893' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.firstbreak.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.firstbreak.org%2Farchive-2021%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.firstbreak.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.firstbreak.org%2Farchive-2021%2F&format=xml" /> <meta name="generator" content="Site Kit by Google 1.146.0" /><link rel="alternate" hreflang="en-US" href="https://www.firstbreak.org/archive-2021/"/> <link rel="alternate" hreflang="ru-RU" href="https://www.firstbreak.org/ru/archive-2021/"/> <link rel="alternate" hreflang="en" href="https://www.firstbreak.org/archive-2021/"/> <link rel="alternate" hreflang="ru" href="https://www.firstbreak.org/ru/archive-2021/"/> <style>img#wpstats{display:none}</style> <script>document.documentElement.className = document.documentElement.className.replace( 'no-js', 'js' );</script> <meta name="generator" content="Elementor 3.27.3; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-auto"> <style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <style id="custom-background-css"> body.custom-background { background-color: #fafafa; } </style> <meta name="generator" content="Powered by Slider Revolution 6.6.18 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/FirstBreak_Skyscraper', [120, 360], 'div-gpt-ad-1592560125922-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> <!-- <script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/FirstBreak_Skyscraper', [120, 360], 'div-gpt-ad-1588934446920-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script> --><script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { googletag.defineSlot('/20287594127/FirstBreak_Leaderboard', [728, 90], 'div-gpt-ad-1592559799149-0').addService(googletag.pubads()); googletag.pubads().enableSingleRequest(); googletag.enableServices(); }); </script><!-- LEADERBOARD HEADER TEST --> <script async='async' src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script> <script> window.googletag = window.googletag || {cmd: []}; googletag.cmd.push(function() { var adSlot = googletag.defineSlot('/20287594127/WP_EAGE_leaderboard', [[728, 360], [970, 90], [320, 180], [580, 400], 'fluid'], 'div-gpt-ad-1594293805289-0') .addService(googletag.pubads()); var mapping = googletag.sizeMapping(). addSize([1024, 768], [728, 360], [970, 90]). addSize([640, 480], [580, 400]). addSize([0, 0], [320, 180]). build(); adSlot.defineSizeMapping(mapping); googletag.pubads().enableSingleRequest(); googletag.enableServices(); googletag.display('div-gpt-ad-1594293805289-0'); }); </script><script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /></head> <body class="page-template page-template-elementor_canvas page page-id-893 custom-background wp-embed-responsive translatepress-en_US singular enable-search-modal missing-post-thumbnail has-no-pagination not-showing-comments show-avatars elementor_canvas footer-top-visible elementor-default elementor-template-canvas elementor-kit-182 elementor-page elementor-page-893 aa-prefix-first-"> <a class="skip-link screen-reader-text" href="#site-content">Skip to the content</a> <div data-elementor-type="wp-page" data-elementor-id="893" class="elementor elementor-893" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-7a2fb926 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7a2fb926" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-247c992" data-id="247c992" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6ca5df14 elementor-widget elementor-widget-template" data-id="6ca5df14" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <div data-elementor-type="section" data-elementor-id="1832" class="elementor elementor-1832" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2b550ecf elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2b550ecf" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-41917905" data-id="41917905" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3c2879df elementor-section-height-min-height elementor-section-content-top elementor-section-boxed elementor-section-height-default" data-id="3c2879df" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-71b86161" data-id="71b86161" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-8e3b81b" data-id="8e3b81b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-69cbc6b9 elementor-nav-menu__align-end elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="69cbc6b9" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> <ul id="menu-1-69cbc6b9" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://www.eage.org/" class="elementor-item" target="_blank" rel="noopener">EAGE Website</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-183"><a href="https://www.firstbreak.org/about-us/" class="elementor-item">About us</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="https://www.firstbreak.org/contact-us/" class="elementor-item">Contact us</a></li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-69cbc6b9" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://www.eage.org/" class="elementor-item" tabindex="-1" target="_blank" rel="noopener">EAGE Website</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-183"><a href="https://www.firstbreak.org/about-us/" class="elementor-item" tabindex="-1">About us</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="https://www.firstbreak.org/contact-us/" class="elementor-item" tabindex="-1">Contact us</a></li> </ul> </nav> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-64fbdd32 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="64fbdd32" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-438d9605" data-id="438d9605" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-313906e1 elementor-section-height-min-height elementor-section-content-top elementor-section-boxed elementor-section-height-default" data-id="313906e1" data-element_type="section"> <div class="elementor-container elementor-column-gap-no"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-3d3a1187" data-id="3d3a1187" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4f4f37f4" data-id="4f4f37f4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5fb54381 elementor-nav-menu__align-end elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="5fb54381" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"}}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> <ul id="menu-1-5fb54381" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://www.eage.org/" class="elementor-item" target="_blank" rel="noopener">EAGE Website</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-183"><a href="https://www.firstbreak.org/about-us/" class="elementor-item">About us</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="https://www.firstbreak.org/contact-us/" class="elementor-item">Contact us</a></li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-5fb54381" class="elementor-nav-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21"><a href="https://www.eage.org/" class="elementor-item" tabindex="-1" target="_blank" rel="noopener">EAGE Website</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-183"><a href="https://www.firstbreak.org/about-us/" class="elementor-item" tabindex="-1">About us</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-179"><a href="https://www.firstbreak.org/contact-us/" class="elementor-item" tabindex="-1">Contact us</a></li> </ul> </nav> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-6464c90c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6464c90c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7427c2f6" data-id="7427c2f6" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6b6d293b elementor-nav-menu--dropdown-none elementor-widget elementor-widget-nav-menu" data-id="6b6d293b" data-element_type="widget" data-settings="{"submenu_icon":{"value":"<i class=\"\"><\/i>","library":""},"layout":"horizontal"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-background e--animation-fade"> <ul id="menu-1-6b6d293b" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-136"><a href="https://www.firstbreak.org/" class="elementor-item">Home</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-27"><a href="#" class="elementor-item elementor-item-anchor">Editorial</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-138"><a href="https://www.firstbreak.org/submit-manuscript/" class="elementor-sub-item">Submit manuscript</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-135"><a href="https://www.firstbreak.org/guidelines-for-authors/" class="elementor-sub-item">Guidelines for authors</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://www.firstbreak.org/editorial_board/" class="elementor-sub-item">Editorial board</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://www.firstbreak.org/editorial-office/" class="elementor-sub-item">Editorial office</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="https://www.firstbreak.org/open-access-information/" class="elementor-sub-item">Open Access information</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-611"><a href="#" class="elementor-item elementor-item-anchor">Archive</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8300"><a href="https://www.firstbreak.org/archive-2025/" class="elementor-sub-item">Archive 2025</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7035"><a href="https://www.firstbreak.org/archive-2024/" class="elementor-sub-item">Archive 2024</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5203"><a href="https://www.firstbreak.org/archive-2023/" class="elementor-sub-item">Archive 2023</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1749"><a href="https://www.firstbreak.org/archive-2022/" class="elementor-sub-item">Archive 2022</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-893 current_page_item menu-item-927"><a href="https://www.firstbreak.org/archive-2021/" aria-current="page" class="elementor-sub-item elementor-item-active">Archive 2021</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-591"><a href="https://www.firstbreak.org/archive-2020/" class="elementor-sub-item">Archive 2020</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://www.firstbreak.org/archive-2019/" class="elementor-sub-item">Archive 2019</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-609"><a href="https://www.firstbreak.org/archive-2018/" class="elementor-sub-item">Archive 2018</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-165"><a href="https://www.firstbreak.org/advertising/" class="elementor-item">Advertising</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170"><a href="https://www.firstbreak.org/subscriptions/" class="elementor-item">Subscriptions</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-255"><a target="_blank" href="https://www.earthdoc.org/" class="elementor-item" rel="noopener">EarthDoc</a></li> </ul> </nav> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-6b6d293b" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-136"><a href="https://www.firstbreak.org/" class="elementor-item" tabindex="-1">Home</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-27"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Editorial</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-138"><a href="https://www.firstbreak.org/submit-manuscript/" class="elementor-sub-item" tabindex="-1">Submit manuscript</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-135"><a href="https://www.firstbreak.org/guidelines-for-authors/" class="elementor-sub-item" tabindex="-1">Guidelines for authors</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://www.firstbreak.org/editorial_board/" class="elementor-sub-item" tabindex="-1">Editorial board</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://www.firstbreak.org/editorial-office/" class="elementor-sub-item" tabindex="-1">Editorial office</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="https://www.firstbreak.org/open-access-information/" class="elementor-sub-item" tabindex="-1">Open Access information</a></li> </ul> </li> <li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent menu-item-has-children menu-item-611"><a href="#" class="elementor-item elementor-item-anchor" tabindex="-1">Archive</a> <ul class="sub-menu elementor-nav-menu--dropdown"> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8300"><a href="https://www.firstbreak.org/archive-2025/" class="elementor-sub-item" tabindex="-1">Archive 2025</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7035"><a href="https://www.firstbreak.org/archive-2024/" class="elementor-sub-item" tabindex="-1">Archive 2024</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5203"><a href="https://www.firstbreak.org/archive-2023/" class="elementor-sub-item" tabindex="-1">Archive 2023</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1749"><a href="https://www.firstbreak.org/archive-2022/" class="elementor-sub-item" tabindex="-1">Archive 2022</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-893 current_page_item menu-item-927"><a href="https://www.firstbreak.org/archive-2021/" aria-current="page" class="elementor-sub-item elementor-item-active" tabindex="-1">Archive 2021</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-591"><a href="https://www.firstbreak.org/archive-2020/" class="elementor-sub-item" tabindex="-1">Archive 2020</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-610"><a href="https://www.firstbreak.org/archive-2019/" class="elementor-sub-item" tabindex="-1">Archive 2019</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-609"><a href="https://www.firstbreak.org/archive-2018/" class="elementor-sub-item" tabindex="-1">Archive 2018</a></li> </ul> </li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-165"><a href="https://www.firstbreak.org/advertising/" class="elementor-item" tabindex="-1">Advertising</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170"><a href="https://www.firstbreak.org/subscriptions/" class="elementor-item" tabindex="-1">Subscriptions</a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-255"><a target="_blank" href="https://www.earthdoc.org/" class="elementor-item" tabindex="-1" rel="noopener">EarthDoc</a></li> </ul> </nav> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-4c4a80f0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4c4a80f0" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-87b7fbf" data-id="87b7fbf" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-34c24c40 elementor-widget elementor-widget-spacer" data-id="34c24c40" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-3d757b00 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3d757b00" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-669a3238" data-id="669a3238" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-3e1a6f23 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3e1a6f23" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2f4a586b" data-id="2f4a586b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-26febd0c elementor-widget elementor-widget-heading" data-id="26febd0c" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Quick Links</h1> </div> </div> <div class="elementor-element elementor-element-2adce4f2 elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="2adce4f2" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Submit manuscript</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-1d4e6d0f elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="1d4e6d0f" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Guidelines for authors</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-36f24dfb elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="36f24dfb" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Other EAGE publications</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-747344cb elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="747344cb" data-element_type="widget" data-widget_type="icon-list.default"> <div class="elementor-widget-container"> <ul class="elementor-icon-list-items"> <li class="elementor-icon-list-item"> <span class="elementor-icon-list-icon"> <i aria-hidden="true" class="fas fa-square-full"></i> </span> <span class="elementor-icon-list-text">Calendar of events</span> </li> </ul> </div> </div> <div class="elementor-element elementor-element-e85fe59 elementor-widget elementor-widget-heading" data-id="e85fe59" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">Search</h1> </div> </div> <div class="elementor-element elementor-element-5c2c42a1 elementor-search-form--skin-classic elementor-search-form--button-type-icon elementor-search-form--icon-search elementor-widget elementor-widget-search-form" data-id="5c2c42a1" data-element_type="widget" data-settings="{"skin":"classic"}" data-widget_type="search-form.default"> <div class="elementor-widget-container"> <search role="search"> <form class="elementor-search-form" action="https://www.firstbreak.org" method="get"> <div class="elementor-search-form__container"> <label class="elementor-screen-only" for="elementor-search-form-5c2c42a1">Search</label> <input id="elementor-search-form-5c2c42a1" placeholder="" class="elementor-search-form__input" type="search" name="s" value=""> <button class="elementor-search-form__submit" type="submit" aria-label="Search"> <i aria-hidden="true" class="fas fa-search"></i> </button> </div> </form> </search> </div> </div> <div class="elementor-element elementor-element-510c886 elementor-widget elementor-widget-spacer" data-id="510c886" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1ee64f1" data-id="1ee64f1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-30da67c elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu" data-id="30da67c" data-element_type="widget" data-settings="{"layout":"horizontal","submenu_icon":{"value":"<i class=\"fas fa-caret-down\"><\/i>","library":"fa-solid"},"toggle":"burger"}" data-widget_type="nav-menu.default"> <div class="elementor-widget-container"> <nav aria-label="Menu" class="elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-horizontal e--pointer-underline e--animation-fade"> <ul id="menu-1-30da67c" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8299"><a href="https://www.firstbreak.org/archive-2025/" class="elementor-item">2025</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7030"><a href="https://www.firstbreak.org/archive-2024/" class="elementor-item">2024</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5211"><a href="https://www.firstbreak.org/archive-2023/" class="elementor-item">2023</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1744"><a href="https://www.firstbreak.org/archive-2022/" class="elementor-item">2022</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-893 current_page_item menu-item-925"><a href="https://www.firstbreak.org/archive-2021/" aria-current="page" class="elementor-item elementor-item-active">2021</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-598"><a href="https://www.firstbreak.org/archive-2020/" class="elementor-item">2020</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-597"><a href="https://www.firstbreak.org/archive-2019/" class="elementor-item">2019</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-608"><a href="https://www.firstbreak.org/archive-2018/" class="elementor-item">2018</a></li> </ul> </nav> <div class="elementor-menu-toggle" role="button" tabindex="0" aria-label="Menu Toggle" aria-expanded="false"> <i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--open eicon-menu-bar"></i><i aria-hidden="true" role="presentation" class="elementor-menu-toggle__icon--close eicon-close"></i> </div> <nav class="elementor-nav-menu--dropdown elementor-nav-menu__container" aria-hidden="true"> <ul id="menu-2-30da67c" class="elementor-nav-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8299"><a href="https://www.firstbreak.org/archive-2025/" class="elementor-item" tabindex="-1">2025</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7030"><a href="https://www.firstbreak.org/archive-2024/" class="elementor-item" tabindex="-1">2024</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5211"><a href="https://www.firstbreak.org/archive-2023/" class="elementor-item" tabindex="-1">2023</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1744"><a href="https://www.firstbreak.org/archive-2022/" class="elementor-item" tabindex="-1">2022</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-893 current_page_item menu-item-925"><a href="https://www.firstbreak.org/archive-2021/" aria-current="page" class="elementor-item elementor-item-active" tabindex="-1">2021</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-598"><a href="https://www.firstbreak.org/archive-2020/" class="elementor-item" tabindex="-1">2020</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-597"><a href="https://www.firstbreak.org/archive-2019/" class="elementor-item" tabindex="-1">2019</a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-608"><a href="https://www.firstbreak.org/archive-2018/" class="elementor-item" tabindex="-1">2018</a></li> </ul> </nav> </div> </div> <div class="elementor-element elementor-element-1f79626 elementor-widget elementor-widget-heading" data-id="1f79626" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <h1 class="elementor-heading-title elementor-size-default">First Break Archive 2021</h1> </div> </div> <div class="elementor-element elementor-element-b505868 elementor-widget elementor-widget-heading" data-id="b505868" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <p class="elementor-heading-title elementor-size-default"><a href="https://www.earthdoc.org/content/journals/fb/browse?page=previous-issues" target="_blank" rel="noopener">Please note that the archived issues do not include technical articles and special topics. <br>You can access this content on Earthdoc.org</a></p> </div> </div> <div class="elementor-element elementor-element-a2c6fb1 elementor-widget elementor-widget-template" data-id="a2c6fb1" data-element_type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <div data-elementor-type="page" data-elementor-id="901" class="elementor elementor-901" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-df43b9e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="df43b9e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-eff00c4" data-id="eff00c4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-d899c5b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d899c5b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-4d0396c" data-id="4d0396c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-03af222 elementor-widget elementor-widget-image" data-id="03af222" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjkxMiIsInRvZ2dsZSI6ZmFsc2V9"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-January_420x560.jpg?w=320" title="FB21 January" alt="FB21 January" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-f2080b1" data-id="f2080b1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a456e19 elementor-widget elementor-widget-image" data-id="a456e19" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEwMTMiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-February_420x560.jpg?w=320" title="FB21 February" alt="FB21 February" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-da21ff7" data-id="da21ff7" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-0449d55 elementor-widget elementor-widget-image" data-id="0449d55" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjExMjEiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-March_420x560.jpg?w=320" title="FB21 March" alt="FB21 March" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-e198d74" data-id="e198d74" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-16ec5bb elementor-widget elementor-widget-image" data-id="16ec5bb" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjExOTIiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-April_420x560-1.jpg?w=320" title="FB21 April" alt="FB21 April" loading="lazy" /> </a> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-593a540 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="593a540" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-6974ead" data-id="6974ead" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9c87935 elementor-widget elementor-widget-image" data-id="9c87935" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEyNTUiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-May_Cover-420x560-2.jpg?w=320" title="FB21 May" alt="FB21 May" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-efc23c3" data-id="efc23c3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-38f8269 elementor-widget elementor-widget-image" data-id="38f8269" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEyNzAiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-June_Cover-420x560-1.jpg?w=320" title="FB21 June" alt="FB21 June" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-a0faf6e" data-id="a0faf6e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3177a15 elementor-widget elementor-widget-image" data-id="3177a15" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjEzMzYiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-July_Cover-420x560-2.jpg?w=320" title="FB21 July_Cover 420×560" alt="FB21 July_Cover 420x560" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-a624cc6" data-id="a624cc6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b6c4fe4 elementor-widget elementor-widget-image" data-id="b6c4fe4" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE0MDciLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-August_Cover-420x560-2.jpg?w=320" title="FB21 August_Cover 420×560" alt="FB21 August_Cover 420x560" loading="lazy" /> </a> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-c23ed0e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="c23ed0e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-a48f0ec" data-id="a48f0ec" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-01cf1e0 elementor-widget elementor-widget-image" data-id="01cf1e0" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE1MTQiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-September_Cover-420x560-1.jpg?w=320" title="FB21 September_Cover 420×560" alt="FB21 September_Cover 420x560" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-3fe0a0b" data-id="3fe0a0b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a6b8eb9 elementor-widget elementor-widget-image" data-id="a6b8eb9" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE1NzciLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-October_Cover-420x560-1.jpg?w=320" title="FB21 October_Cover 420×560" alt="FB21 October_Cover 420x560" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-c31ab6b" data-id="c31ab6b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-eabb8b8 elementor-widget elementor-widget-image" data-id="eabb8b8" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE2MDYiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-November_Cover-420x560-1.jpg?w=320" title="FB21 November_Cover 420×560" alt="FB21 November_Cover 420x560" loading="lazy" /> </a> </div> </div> </div> </div> <div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-5f02eb8" data-id="5f02eb8" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-006ee56 elementor-widget elementor-widget-image" data-id="006ee56" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <a href="#elementor-action%3Aaction%3Dpopup%3Aopen%26settings%3DeyJpZCI6IjE3MjIiLCJ0b2dnbGUiOmZhbHNlfQ%3D%3D"> <img decoding="async" src="https://www.firstbreak.org/wp-content/uploads/sites/3/2021/01/FB21-December_Cover-420x560-1.jpg?w=320" title="FB21 December_Cover 420×560" alt="FB21 December_Cover 420x560" loading="lazy" /> </a> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-29c27198" data-id="29c27198" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-30aca4f7 elementor-widget elementor-widget-spacer" data-id="30aca4f7" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-b6e2bd5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b6e2bd5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-67f39824" data-id="67f39824" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-22baa250 elementor-widget elementor-widget-spacer" data-id="22baa250" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </section> </div> <template id="tp-language" data-tp-language="en_US"></template> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <div data-elementor-type="popup" data-elementor-id="912" class="elementor elementor-912 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-cb91345 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="cb91345" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-71281377" data-id="71281377" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7651e4aa elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="7651e4aa" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-7651e4aa"> <div id="ep-elementor-content-7651e4aa" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="7651e4aa" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-7651e4aa" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="7651e4aa" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-cffdcd00ed58b495dca77c1a365f9462 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break January 2021 - Land Seismic" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_jan" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1013" class="elementor elementor-1013 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-16e95f2b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="16e95f2b" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-483810e4" data-id="483810e4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-6acc141b elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="6acc141b" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-6acc141b"> <div id="ep-elementor-content-6acc141b" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="6acc141b" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-6acc141b" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="6acc141b" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-76a970e2a4658e1a811e2ac5985a5387 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break February 2021 - Reservoir Monitoring" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_feb" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1121" class="elementor elementor-1121 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-61769808 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="61769808" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-672b8ac7" data-id="672b8ac7" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-53d4ca6e elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="53d4ca6e" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-53d4ca6e"> <div id="ep-elementor-content-53d4ca6e" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="53d4ca6e" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-53d4ca6e" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="53d4ca6e" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-9f6a73ab258f087e2dd5698c77303d95 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break March 2021 - Modelling / Interpretation" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_march" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1192" class="elementor elementor-1192 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-2793e6de elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2793e6de" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-34699c2e" data-id="34699c2e" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-608b3cf0 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="608b3cf0" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-608b3cf0"> <div id="ep-elementor-content-608b3cf0" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="608b3cf0" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-608b3cf0" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="608b3cf0" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-507cae1d0017b8c921d71093ce890586 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break April 2021 - Unconventionals and Passive Seismic" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_april" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1255" class="elementor elementor-1255 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-e782fb0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="e782fb0" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-50a45cb2" data-id="50a45cb2" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1513f544 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="1513f544" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-1513f544"> <div id="ep-elementor-content-1513f544" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="1513f544" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-1513f544" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="1513f544" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-2c0116ea97393f8d5176509c2fea77b9 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break May 2021 - Global Exploration Hotspots" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_may" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1270" class="elementor elementor-1270 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-762cbb92 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="762cbb92" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-764b330c" data-id="764b330c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-58435314 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="58435314" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-58435314"> <div id="ep-elementor-content-58435314" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="58435314" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-58435314" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="58435314" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-65697e0db9851f4e8bae5d75300b38fd ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break June 2021 - Geoscience & Engineering in the Energy Transition" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_june" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1336" class="elementor elementor-1336 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-3be4cb8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3be4cb8" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-721a5480" data-id="721a5480" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-66a23655 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="66a23655" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-66a23655"> <div id="ep-elementor-content-66a23655" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="66a23655" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-66a23655" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="66a23655" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-9765d0d6e56bd3f07080f0e728f83155 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break July 2021 - Digital Transformation in Geoscience" src="https://e.issuu.com/embed.html?u=eage&d=online_fb21_july_book_inc_links" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1407" class="elementor elementor-1407 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-5f9aa3c1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="5f9aa3c1" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1fac712f" data-id="1fac712f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-1efe5ae8 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="1efe5ae8" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-1efe5ae8"> <div id="ep-elementor-content-1efe5ae8" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="1efe5ae8" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-1efe5ae8" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="1efe5ae8" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-8de34ac073dd015d7cb7d30cb0c8016e ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break August 2021 - Near Surface Geo Mining" src="https://e.issuu.com/embed.html?u=eage&d=_online_fb21_august" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1514" class="elementor elementor-1514 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-ebbc1a8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="ebbc1a8" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2a674430" data-id="2a674430" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-47e23f2f elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="47e23f2f" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-47e23f2f"> <div id="ep-elementor-content-47e23f2f" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="47e23f2f" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-47e23f2f" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="47e23f2f" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-6994b59ed8e11dc75466ff11c4ab7f24 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break September 2021 - Reservoir Geoscience and Engineering" src="https://e.issuu.com/embed.html?u=eage&d=hr_22455-fb21_september_inc_links" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1577" class="elementor elementor-1577 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-6e6df5c4 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6e6df5c4" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4f4d4719" data-id="4f4d4719" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a0c40b3 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="a0c40b3" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-a0c40b3"> <div id="ep-elementor-content-a0c40b3" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="a0c40b3" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-a0c40b3" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="a0c40b3" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-14ec092f6ef9f44cdaba10d1d97cc11b ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break October 2021 - Delivering for the Energy Challenge: Today and Tomorrow" src="https://e.issuu.com/embed.html?u=eage&d=hr_22489-fb21_october_links" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1606" class="elementor elementor-1606 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-6d41e228 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="6d41e228" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-52a433a9" data-id="52a433a9" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-798e9804 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="798e9804" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-798e9804"> <div id="ep-elementor-content-798e9804" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="798e9804" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-798e9804" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="798e9804" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-b8f8288d1badf763bc9f23390686e5e2 ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break November 2021 - Marine Seismic & EM" src="https://e.issuu.com/embed.html?u=eage&d=hr_22513-fb21_november_inc_links_" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <div data-elementor-type="popup" data-elementor-id="1722" class="elementor elementor-1722 elementor-location-popup" data-elementor-settings="{"entrance_animation":"fadeIn","exit_animation":"fadeIn","entrance_animation_duration":{"unit":"px","size":"0.5","sizes":[]},"a11y_navigation":"yes","timing":[]}" data-elementor-post-type="elementor_library"> <section class="elementor-section elementor-top-section elementor-element elementor-element-23c1b956 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="23c1b956" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7de5ec4b" data-id="7de5ec4b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3c53b730 elementor-widget__width-initial elementor-widget elementor-widget-embedpres_elementor" data-id="3c53b730" data-element_type="widget" data-widget_type="embedpres_elementor.default"> <div class="elementor-widget-container"> <div class="embedpress-elements-wrapper embedpress-fit-aspect-ratio" id="ep-elements-id-3c53b730"> <div id="ep-elementor-content-3c53b730" class="ep-elementor-content ep-content-protection-disabled source-default "> <div id="3c53b730" class="ep-embed-content-wrapper " > <div id="ep-elementor-content-3c53b730" class="ep-elementor-content ep-content-protection-disabled source-default"> <div > <div id="3c53b730" class="ep-embed-content-wraper " > <div class="ose-issuu ose-uid-f6cbfe046eca76be1bcd0b61d52694bf ose-embedpress-responsive" style="width:652px; height:552px; max-height:552px; max-width:100%; display:inline-block;"><iframe allowFullScreen="true" title="First Break December 2021 - Data Management and Processing" src="https://e.issuu.com/embed.html?u=eage&d=_linked_hr_22575-fb21_december" style="border:none; width: 580px; height: 445px;" allow="clipboard-write,allow-top-navigation,allow-top-navigation-by-user-activation,allow-downloads,allow-scripts,allow-same-origin,allow-popups,allow-modals,allow-popups-to-escape-sandbox,allow-forms" allowfullscreen="true"></iframe></div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> <script> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <link rel='stylesheet' id='elementor-post-1832-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1832.css?ver=1738570781' media='all' /> <link rel='stylesheet' id='elementor-post-901-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-901.css?ver=1737140245' media='all' /> <link rel='stylesheet' id='all-css-4' href='https://www.firstbreak.org/wp-content/plugins/elementor/assets/css/widget-image.min.css?m=1739269105g' type='text/css' media='all' /> <style id='core-block-supports-inline-css'> /** * Core styles: block-supports */ </style> <link rel='stylesheet' id='elementor-post-912-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-912.css?ver=1737140250' media='all' /> <link rel='stylesheet' id='all-css-10' href='https://www.firstbreak.org/_static/??-eJyFzkEKwkAMBdALOQ3FUnUhrj3GtBMlkJmESUrx9o5CoQvBbf7/j8CqYZbiWByUlycVA8wTJq1oBtEM3WC2/TUgY24DqV0LDvCL2BqbwDRBLJSjk7Tc/MVo8IgJ7+W/ErTK/pdWTPSRIhuo6KJdpq9zy9f+dBzG4XIe+zcCm1Nz' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-1013-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1013.css?ver=1737140254' media='all' /> <link rel='stylesheet' id='elementor-post-1121-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1121.css?ver=1737140257' media='all' /> <link rel='stylesheet' id='elementor-post-1192-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1192.css?ver=1737140261' media='all' /> <link rel='stylesheet' id='elementor-post-1255-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1255.css?ver=1737140264' media='all' /> <link rel='stylesheet' id='elementor-post-1270-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1270.css?ver=1737140268' media='all' /> <link rel='stylesheet' id='elementor-post-1336-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1336.css?ver=1737140272' media='all' /> <link rel='stylesheet' id='elementor-post-1407-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1407.css?ver=1737140275' media='all' /> <link rel='stylesheet' id='elementor-post-1514-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1514.css?ver=1737140279' media='all' /> <link rel='stylesheet' id='elementor-post-1577-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1577.css?ver=1737140283' media='all' /> <link rel='stylesheet' id='elementor-post-1606-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1606.css?ver=1737140287' media='all' /> <link rel='stylesheet' id='elementor-post-1722-css' href='https://www.firstbreak.org/wp-content/uploads/sites/3/elementor/css/post-1722.css?ver=1737140290' media='all' /> <link rel='stylesheet' id='all-css-32' href='https://www.firstbreak.org/wp-content/plugins/revslider/public/assets/css/rs6.css?m=1729506112g' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css'> #rs-demo-id {} </style> <script id="embedpress-front-js-extra"> var eplocalize = {"ajaxurl":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","is_pro_plugin_active":"","nonce":"3cbd38c144"}; </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJyVjUkOwjAMRS9Eakqloi4QZyGNi1ycATsBcXsCEqIbKrH7g9833JMZY8gYMiQuZwoKgjdlciiQimUa4aSKWWGulc0xsjaeQjPrBv6ktV8j0Vt0SVB1wUxSr34RnTMTU7IxXox7KcOUcUG/w9WfjL76KCZJ/IBMFtSfJNeq1J1rQXk036SOHf2h3XfDrh/abT8/AUb4epE=" ></script><script src="https://stats.wp.com/e-202508.js" id="jetpack-stats-js" data-wp-strategy="defer"></script> <script id="jetpack-stats-js-after"> _stq = window._stq || []; _stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"176574440\",\"post\":\"893\",\"tz\":\"2\",\"srv\":\"www.firstbreak.org\",\"hp\":\"vip\",\"j\":\"1:14.3\"}") ]); _stq.push([ "clickTrackerInit", "176574440", "893" ]); </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJydjEEOwjAMBD9E6kIqVT0g3lISU5ImdhQ76vehlTghceC4uzMLWzGOSZEUSmpLIAFMmN+ZqymVYRZBFYgCG97L7Na97WojDRm7KCf4dfGt/6M+6gF5k9m3hPJxA7nUPB6MD6LwZF739Zav59FOl2mwto8vcw1Vuw==" ></script><script src="https://www.firstbreak.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script id="wp-i18n-js-after"> wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); </script> <script id="elementor-pro-frontend-js-before"> var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","nonce":"3db2925161","urls":{"assets":"https:\/\/www.firstbreak.org\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/www.firstbreak.org\/wp-json\/"},"settings":{"lazy_load_background_images":true},"popup":{"hasPopUps":true},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/www.firstbreak.org\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; </script> <script src="https://www.firstbreak.org/wp-content/plugins/elementor-pro/assets/js/frontend.js?ver=3.26.1" id="elementor-pro-frontend-js"></script> <script type="text/javascript" src="https://www.firstbreak.org/wp-includes/js/jquery/ui/core.js?m=1739294330g" ></script><script id="elementor-frontend-js-before"> var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":true},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}},"hasCustomBreakpoints":false},"version":"3.27.3","is_static":false,"experimentalFeatures":{"additional_custom_breakpoints":true,"container":true,"e_swiper_latest":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"landing-pages":true,"nested-elements":true,"editor_v2":true,"link-in-bio":true,"floating-buttons":true},"urls":{"assets":"https:\/\/www.firstbreak.org\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.firstbreak.org\/wp-content\/uploads\/sites\/3"},"nonces":{"floatingButtonsClickTracking":"0d2b49a966"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"body_background_background":"classic","active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":893,"title":"Archive%202021%20-%20First%20break","excerpt":"","featuredImage":false}}; </script> <script src="https://www.firstbreak.org/wp-content/plugins/elementor/assets/js/frontend.js?ver=3.27.3" id="elementor-frontend-js"></script> <script id="powerpack-frontend-js-extra"> var ppLogin = {"empty_username":"Enter a username or email address.","empty_password":"Enter password.","empty_password_1":"Enter a password.","empty_password_2":"Re-enter password.","empty_recaptcha":"Please check the captcha to verify you are not a robot.","email_sent":"A password reset email has been sent to the email address for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.","reset_success":"Your password has been reset successfully.","ajax_url":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php","show_password":"Show password","hide_password":"Hide password"}; var ppRegistration = {"invalid_username":"This username is invalid because it uses illegal characters. Please enter a valid username.","username_exists":"This username is already registered. Please choose another one.","empty_email":"Please type your email address.","invalid_email":"The email address isn\u2019t correct!","email_exists":"The email is already registered, please choose another one.","password":"Password must not contain the character \"\\\\\"","password_length":"Your password should be at least 8 characters long.","password_mismatch":"Password does not match.","invalid_url":"URL seems to be invalid.","recaptcha_php_ver":"reCAPTCHA API requires PHP version 5.3 or above.","recaptcha_missing_key":"Your reCAPTCHA Site or Secret Key is missing!","show_password":"Show password","hide_password":"Hide password","ajax_url":"https:\/\/www.firstbreak.org\/wp-admin\/admin-ajax.php"}; var ppCoupons = {"copied_text":"Copied"}; </script> <script type="text/javascript" src="https://www.firstbreak.org/_static/??-eJyVjMEOgkAMRH/ItSESxAPxW1aosEvZNm0Nvy8x0XDwwm1mMu/BKqHn4lgchF5jKgZIuGydNYgyRDN0g/zbLUyxDIRq52wn+CMQXlEl9nP4IjvLUz/v4ThM6QHOTJ7EHHWfN9l96arrpW7qW9tU+Q1R71H6" ></script> <script> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <script data-cfasync="false"> var dFlipLocation = "https://www.firstbreak.org/wp-content/plugins/3d-flipbook-dflip-lite/assets/"; var dFlipWPGlobal = {"text":{"toggleSound":"Turn on\/off Sound","toggleThumbnails":"Toggle Thumbnails","toggleOutline":"Toggle Outline\/Bookmark","previousPage":"Previous Page","nextPage":"Next Page","toggleFullscreen":"Toggle Fullscreen","zoomIn":"Zoom In","zoomOut":"Zoom Out","toggleHelp":"Toggle Help","singlePageMode":"Single Page Mode","doublePageMode":"Double Page Mode","downloadPDFFile":"Download PDF File","gotoFirstPage":"Goto First Page","gotoLastPage":"Goto Last Page","share":"Share","mailSubject":"I wanted you to see this FlipBook","mailBody":"Check out this site {{url}}","loading":"DearFlip: Loading "},"viewerType":"flipbook","moreControls":"download,pageMode,startPage,endPage,sound","hideControls":"","scrollWheel":"false","backgroundColor":"#777","backgroundImage":"","height":"auto","paddingLeft":"20","paddingRight":"20","controlsPosition":"bottom","duration":800,"soundEnable":"true","enableDownload":"true","showSearchControl":"false","showPrintControl":"false","enableAnnotation":false,"enableAnalytics":"false","webgl":"true","hard":"none","maxTextureSize":"1600","rangeChunkSize":"524288","zoomRatio":1.5,"stiffness":3,"pageMode":"0","singlePageMode":"0","pageSize":"0","autoPlay":"false","autoPlayDuration":5000,"autoPlayStart":"false","linkTarget":"2","sharePrefix":"flipbook-"};</script><script async src="https://www.instagram.com/embed.js"></script><script>( function () { window.advanced_ads_ready_queue = window.advanced_ads_ready_queue || []; // replace native push method with our advanced_ads_ready function; do this early to prevent race condition between pushing and the loop. advanced_ads_ready_queue.push = window.advanced_ads_ready; // handle all callbacks that have been added to the queue previously. for ( var i = 0, length = advanced_ads_ready_queue.length; i < length; i ++ ) { advanced_ads_ready( advanced_ads_ready_queue[i] ); } } )(); </script> </body> </html>