{"version":3,"file":"component---src-pages-in-focus-covid-19-js-e90c772490ab8356a9ac.js","mappings":"oOAQe,SAASA,EAAT,GAA0C,IAAxB,UAAEC,EAAF,OAAaC,GAAU,EACtD,MAAM,EAACC,EAAD,EAASC,IAAaC,EAAAA,EAAAA,WAAS,GAK/BC,GAAOC,EAAAA,EAAAA,GAAWC,EAAU,KAAMP,GAClCQ,EACJH,GAAQJ,GAASK,EAAAA,EAAAA,GAAWD,EAAKI,SAAU,KAAMR,GAAUI,GAEvD,KAAEK,EAAF,UAAQC,EAAR,KAAmBC,EAAnB,KAAyBC,GAASL,EAExC,OACE,gBAAC,IAAD,CACEM,SAZaC,IACHZ,IAAZY,EAAA,EAYEC,mBAAmB,EACnBC,OAAQ,CAAEC,OAAQ,KAElB,gBAAC,EAAAC,KAAD,CACEC,UAAY,cACVlB,EAAS,kBAAoB,qBAE/BmB,GAAIX,GAEHC,GACC,gBAAC,IAAD,CACEW,KAAMX,EACNY,IAAM,cAAaX,IACnBQ,UAAU,qBAGd,uBAAKA,UAAU,sBACb,uBAAKA,UAAU,6BACb,8BACE,sBAAIA,UAAU,+CAAd,aAGA,sBAAIA,UAAU,kBAAkBR,IAEjCC,GAAQ,yBAAIA,IAEf,uBAAKO,UAAU,6BACb,gBAAC,IAAD,SAMX,C,sLC5Cc,SAASI,IACtB,OACE,gBAAC,IAAD,KACE,gBAAC,IAAD,CACEC,MAAM,kCACNC,KAAK,mEACLC,MAAM,6BACNC,OAAOC,EAAAA,EAAAA,YAAW,KAAO,gCAG3B,gBAAC,IAAD,KACE,gBAAC,IAAD,KACE,gBAAC,IAAD,CAAQC,SAAS,OAAOC,QAAQ,sBAC9B,gBAAC,IAAD,0EAKF,gBAAC,IAAD,CAAQA,QAAQ,cACd,qBAAGX,UAAU,WAAb,obAUA,oZAUA,kiBAcJ,gBAAC,IAAD,CAAaY,UAAU,+BAA+BC,OAAK,GACzD,gBAAC,IAAD,CAAQH,SAAS,SACf,gBAAC,IAAD,CACER,KAAK,mCACLC,IAAI,iEACJW,QAAQ,cAKd,gBAAC,IAAD,CAAaC,MAAM,UACjB,gBAAC,IAAD,CAAQJ,QAAQ,cACd,yCACA,mJAIA,yBACE,qBAAGrB,KAAK,wJAAR,kDAEK,IAHP,kVAWA,6CACoB,IAClB,qBAAGA,KAAK,oJAAR,4CAEK,IAJP,wWAUmD,IACjD,qBAAGA,KAAK,wIAAR,YAEK,IAbP,iDAcgD,qBAAGA,KAAO,IAAEmB,EAAAA,EAAAA,YAAW,+DAAvB,aAdhD,MAkBA,8WAUF,gBAAC,IAAD,CAAQC,SAAS,SACf,gBAAC,IAAD,CAAOM,MAAOC,EAAAA,OAIlB,gBAAC,IAAD,CAAaF,MAAM,UACjB,gBAAC,IAAD,CAAQL,SAAS,QACf,gBAAC,IAAD,KACE,mDACA,gBAAC,IAAD,CAAMQ,OAAQ,EAAGC,OAAO,IAAIC,MAAM,gBAClC,kHAIA,gBAAC,IAAD,CACEF,OAAQ,GACRC,OAAO,IACPE,MAAO,CAAEC,UAAW,GACpBF,MAAM,SAER,qDAIJ,gBAAC,IAAD,CAAQT,QAAQ,cACd,iDACA,6CACoB,IAClB,qBAAGrB,KAAK,uJAAR,4IAFF,qVAcA,+UAOA,6BACI,IACF,qBAAGA,KAAK,yCAAR,mBAEK,IAJP,qcAcA,8LAGyC,IACvC,qBAAGA,KAAK,+HAAR,gBAEK,IANP,yIAWA,gQAMA,oIAOJ,gBAAC,IAAD,KACE,gBAAC,IAAD,CAAQqB,QAAQ,cACd,+CACA,8GAEsB,iCAFtB,iJAIwD,IACtD,qBAAGrB,KAAK,iEACL,IADH,kBALF,4FAUmC,IACjC,qBAAGA,KAAK,8EAAR,mBAEK,IAbP,8GAqBN,gBAAC,IAAD,CAAUV,UAAU,WAAWC,OAAO,8BAG3C,C","sources":["webpack://imf-2022/./src/components/read-next.js","webpack://imf-2022/./src/pages/in-focus/covid-19.js"],"sourcesContent":["import React, { useState } from \"react\"\nimport Image from \"../components/image\"\nimport menuData from \"../data/menu.json\"\nimport findObject from \"../helpers/find-object\"\nimport { Link } from \"gatsby\"\nimport Arrow from \"../images/arrow.inline.svg\"\nimport VisibilitySensor from \"react-visibility-sensor\"\n\nexport default function ReadNext({ sectionID, pageID }) {\n  const [loaded, setLoaded] = useState(false)\n  const onChange = isVisible => {\n    isVisible ? setLoaded(true) : setLoaded(false)\n  }\n\n  const menu = findObject(menuData, \"id\", sectionID)\n  const content =\n    menu && pageID ? findObject(menu.children, \"id\", pageID) : menu\n\n  const { href, thumbnail, name, deck } = content\n\n  return (\n    <VisibilitySensor\n      onChange={onChange}\n      partialVisibility={true}\n      offset={{ bottom: 75 }}\n    >\n      <Link\n        className={`read-next ${\n          loaded ? \"read-next--show\" : \"read-next--hidden\"\n        }`}\n        to={href}\n      >\n        {thumbnail && (\n          <Image\n            path={thumbnail}\n            alt={`Read next: ${name}`}\n            className=\"read-next__image\"\n          />\n        )}\n        <div className=\"read-next__content\">\n          <div className=\"read-next__content__inner\">\n            <header>\n              <h2 className=\"title title--s title--bold title--uppercase\">\n                Read Next\n              </h2>\n              <h3 className=\"title title--m\">{name}</h3>\n            </header>\n            {deck && <p>{deck}</p>}\n          </div>\n          <div className=\"read-next__content__arrow\">\n            <Arrow />\n          </div>\n        </div>\n      </Link>\n    </VisibilitySensor>\n  )\n}\n","import React from \"react\"\nimport { withPrefix } from \"gatsby\"\nimport Layout from \"../../components/layout\"\nimport Hero, { HeroCaption } from \"../../components/hero\"\nimport ReadNext from \"../../components/read-next\"\nimport { PageColumns, Column } from \"../../components/page-column\"\nimport Page from \"../../components/page\"\nimport Image from \"../../components/image\"\nimport Chart from \"../../components/chart\"\nimport { spotlight_figure_1 } from \"../../data/charts\"\nimport { StatContainer, Stat } from \"../../components/stat\"\n\nexport default function Covid19() {\n  return (\n    <Layout>\n      <Hero\n        title=\"COVID-19 and the War in Ukraine\"\n        text=\"The war in Ukraine has dealt a major blow to the global economy.\"\n        image=\"in-focus/covid-19/hero.jpg\"\n        video={withPrefix(\"/\") + \"video/covid-19/hero.mp4?v=1\"}\n      />\n\n      <Page>\n        <PageColumns>\n          <Column location=\"left\" classes=\"util__desktop-only\">\n            <HeroCaption>\n              The war in Ukraine has dealt a major blow to the global economy.\n            </HeroCaption>\n          </Column>\n\n          <Column classes=\"text-block\">\n            <p className=\"dropcap\">\n              The economic fallout from Russia&rsquo;s invasion of Ukraine is\n              another massive setback to the global economy. The toll on Ukraine\n              is immense, but the impact stretches far beyond Ukraine&rsquo;s\n              borders. The severity of disruptions in commodity markets and to\n              supply chains will weigh heavily on macro-financial stability and\n              growth, adding to an already-complicated policy environment for\n              countries still recovering from the COVID-19 pandemic.\n            </p>\n\n            <p>\n              Inflation, which had already been rising in many countries as a\n              result of supply&ndash;demand imbalances and policy support during\n              the pandemic, is likely to remain higher for longer. Financial\n              conditions have also tightened significantly, putting pressure on\n              a wide range of emerging market and developing\n              economies&mdash;through higher borrowing costs and the risk of\n              capital outflows.\n            </p>\n\n            <p>\n              The war in Ukraine may contribute to the dangerous divergence\n              between advanced and emerging market and developing economies.\n              More broadly, it risks fragmenting the global economy into\n              geopolitical blocs with distinct technology standards,\n              cross-border payment systems, and reserve currencies. Such a\n              tectonic shift represents the most serious challenge to the\n              rules-based system that has governed international and economic\n              relations for the last 75 years, jeopardizing the gains made over\n              the past several decades.\n            </p>\n          </Column>\n        </PageColumns>\n\n        <PageColumns modifiers=\"page-columns--spacing-medium\" media>\n          <Column location=\"right\">\n            <Image\n              path=\"in-focus/covid-19/covid-19-1.jpg\"\n              alt=\"Man walks with a bike in front of a bombed building in Ukraine\"\n              caption=\"Ukraine\"\n            />\n          </Column>\n        </PageColumns>\n\n        <PageColumns align=\"center\">\n          <Column classes=\"text-block\">\n            <h2>Stepping up</h2>\n            <p>\n              In response, the IMF has provided vital financing, real-time\n              advice, capacity development, and support to its members.\n            </p>\n            <p>\n              <a href=\"https://www.imf.org/en/News/Articles/2022/04/08/pr22111-imf-executive-board-approves-establishment-of-a-multi-donor-administered-account-for-ukraine\">\n                $1.4 billion in emergency financing to Ukraine\n              </a>{\" \"}\n              was approved in FY 2022, and&mdash;at the request of several IMF\n              member countries&mdash;a special account was established that will\n              provide donors with a secure vehicle for directing further\n              financial assistance to Ukraine. Support for Ukraine&rsquo;s\n              heavily affected neighbors and member countries experiencing\n              fragility or conflict is also underway.\n            </p>\n            <p>\n              IMF lending and a{\" \"}\n              <a href=\"https://www.imf.org/en/News/Articles/2021/07/30/pr21235-imf-governors-approve-a-historic-us-650-billion-sdr-allocation-of-special-drawing-rights\">\n                historic $650 billion allocation of SDRs\n              </a>{\" \"}\n              helped provide much-needed liquidity to countries worldwide, many\n              of which have limited fiscal space after the pandemic. More than\n              $219 billion in loans to 92 countries has been approved since the\n              onset of the pandemic. To facilitate access to emergency\n              financing, increases to the cumulative access limits for the\n              IMF&rsquo;s emergency financing instruments were{\" \"}\n              <a href=\"https://www.imf.org/en/News/Articles/2021/12/23/pr21403-imf-executive-board-approves-temporary-extension-of-cumulative-access-limits\">\n                extended\n              </a>{\" \"}\n              through the end of June 2023 (for details see <a href={`${withPrefix(\"/\")}downloads/table_2_2_concessional_lending_facilities.pdf`}>\n                  Table 2.2\n                </a>).\n            </p>\n            <p>\n              One hundred twenty-six Article IV consultations, six Financial\n              System Stability Assessments, and nearly 2,900 virtual technical\n              visits were conducted during FY 2022. About 60 percent of the\n              IMF&rsquo;s technical assistance during the financial year was\n              provided to fragile and conflict-affected states, low-income\n              countries, and small states.\n            </p>\n          </Column>\n\n          <Column location=\"right\">\n            <Chart chart={spotlight_figure_1} />\n          </Column>\n        </PageColumns>\n\n        <PageColumns align=\"center\">\n          <Column location=\"left\">\n            <StatContainer>\n              <p>As of April 2022, only</p>\n              <Stat number={7} suffix=\"%\" color=\"dark-orange\" />\n              <p>\n                of people in low-income developing countries had been fully\n                vaccinated, compared with\n              </p>\n              <Stat\n                number={73}\n                suffix=\"%\"\n                style={{ marginTop: 0 }}\n                color=\"aqua\"\n              />\n              <p>in advanced economies.</p>\n            </StatContainer>\n          </Column>\n\n          <Column classes=\"text-block\">\n            <h2>Global partnerships</h2>\n            <p>\n              In June 2021, the{\" \"}\n              <a href=\"https://www.imf.org/en/News/Articles/2021/06/30/pr21201-joint-statement-heads-wb-imf-who-wto-first-meeting-task-force-covid-19-developing-countries\">\n                IMF joined forces with the World Bank, World Health\n                Organization, and World Trade Organization to accelerate access\n                to COVID-19 vaccines\n              </a>\n              , therapeutics, and diagnostics. Led by the heads of the\n              institutions, a task force was created to mobilize support and\n              funding for a $50 billion proposal by the IMF staff to end the\n              COVID pandemic. A global target was set to vaccinate at least 40\n              percent of the population in all countries by the end of 2021 and\n              70 percent by mid-2022.\n            </p>\n            <p>\n              To meet the target, the task force called on Group of Twenty (G20)\n              countries to share more vaccine doses with low- and middle-income\n              countries; provide financing, including grants and concessional\n              financing; and remove all barriers to exports of inputs for\n              finished vaccines, diagnostics, and therapeutics.\n            </p>\n            <p>\n              A{\" \"}\n              <a href=\"https://www.covid19globaltracker.org/\">\n                global database\n              </a>{\" \"}\n              and country-by-country data\n              dashboards were set up to track and monitor progress toward\n              targets and improve transparency. Access to essential tools for\n              fighting COVID-19, nevertheless, remains very uneven. As of April\n              2022, only 7 percent of people in low-income developing countries\n              had been fully vaccinated, compared with 73 percent in advanced\n              economies. There are similar gaps in access to oxygen, treatments,\n              and personal protective equipment.\n            </p>\n            <p>\n              Equipping developing economies to fight the pandemic and prepare\n              for future health care needs is in everyone&rsquo;s interest: no\n              one is safe until everyone is safe. An{\" \"}\n              <a href=\"https://www.imf.org/en/Publications/WP/Issues/2022/04/04/A-Global-Strategy-to-Manage-the-Long-Term-Risks-of-COVID-19-516079\">\n                updated plan\n              </a>{\" \"}\n              shows that a modest $15 billion in grants in 2022 and $10 billion\n              annually thereafter could greatly strengthen global health\n              systems.\n            </p>\n            <p>\n              More recently, the IMF, World Bank, UN World Food Program, and\n              World Trade Organization have called for urgent, coordinated\n              action on food security and have appealed to countries to avoid\n              restricting food or fertilizer exports.\n            </p>\n            <p>\n              In collaboration with partners, the IMF continues to champion\n              global cooperation and multilateralism.\n            </p>\n          </Column>\n        </PageColumns>\n\n        <PageColumns>\n          <Column classes=\"text-block\">\n            <h2>Governance reform</h2>\n            <p>\n              Progress toward governance reform and a timely and successful\n              conclusion of the 16<sup>th</sup> General Review of Quotas are\n              crucial for ensuring a strong, quota-based, and adequately\n              resourced IMF. The review is expected to build on the{\" \"}\n              <a href=\"https://www.imf.org/en/News/Articles/2015/09/14/01/49/pr10477\">\n                {\" \"}\n                2010 agreement\n              </a>\n              , including efforts to protect quotas and voting shares of the\n              IMF&rsquo;s poorest members. The{\" \"}\n              <a href=\"https://www.imf.org/en/About/Factsheets/Sheets/2016/07/14/12/21/IMF-Quotas\">\n                current formula\n              </a>{\" \"}\n              for determining quotas, which was approved in 2008 and has been\n              used as a guide, will also be reviewed.\n            </p>\n          </Column>\n        </PageColumns>\n      </Page>\n\n      <ReadNext sectionID=\"in-focus\" pageID=\"a-more-equitable-recovery\" />\n    </Layout>\n  )\n}\n"],"names":["ReadNext","sectionID","pageID","loaded","setLoaded","useState","menu","findObject","menuData","content","children","href","thumbnail","name","deck","onChange","isVisible","partialVisibility","offset","bottom","Link","className","to","path","alt","Covid19","title","text","image","video","withPrefix","location","classes","modifiers","media","caption","align","chart","spotlight_figure_1","number","suffix","color","style","marginTop"],"sourceRoot":""}