CINXE.COM
EHR Incentive Programs - Centers for Medicare & Medicaid Services
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!--[if lte IE 7]><html lang="en" class="ie7"><![endif]--> <!--[if IE 8]><html lang="en" class="ie8"><![endif]--> <!--[if IE 9]><html lang="en" class="ie9"><![endif]--> <!--[if (gt IE 9)|!(IE)]><!--><html lang="en"><!--<![endif]--> <head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=7YQSqjSh" charset="utf-8"></script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.cms.gov:80/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/index.html?redirect=/EHRIncentivePrograms/56_DataAndReports.asp","20140407110829","https://web.archive.org/","web","https://web-static.archive.org/_static/", "1396868909"); </script> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=p7PEIJWi" /> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>EHR Incentive Programs - Centers for Medicare & Medicaid Services</title> <meta http-equiv="X-UA-Compatible" content="IE=Edge"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="DC.date" content="02/18/2014 12:40 PM"/> <meta name="DC.description" content="Home page for the Medicare and Medicaid EHR Incentive Programs established through the Recovery Act/HITECH Act of 2009."/> <meta name="DC.format" content="text/html"/> <meta name="DC.identifier" content="135774"/> <meta name="DC.language" content="en-us"/> <meta name="DC.relation" content="CMSGOV, Regulations & Guidance, Legislation, EHRIncentivePrograms"/> <meta name="DC.subject" content="EHR Incentive Program, HITECH, CMS HITECH, CMS Incentive program, CMS EHRs, HITECH payments, Stimulus money, CMS Stimulus payments, Medicare EHRs, Medicaid EHRs, Medicare incentive program, Medicare EHR incentive program, Medicaid incentive program, Medicare Advantage incentive program, HITECH incentive payments, ONC EHR incentive program, ONC EHR program"/> <meta name="DC.title" content="Overview"/> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <meta http-equiv="pragma" content="no-cache"/> <meta http-equiv="expires" content="Fri, 01 Jan 2082 08:00:00 GMT"> <link rel="shortcut icon" href="/web/20140407110829im_/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/cmsgov_favicon.ico" type="image/x-icon"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/foresee/foresee-trigger.js"></script> <style type="text/css"> @import url("//web.archive.org/web/20140407110829cs_/http://assets.cms.gov/resources/cms/css/style.css"); @import url("//web.archive.org/web/20140407110829cs_/http://assets.cms.gov/resources/cms/css/storypages.css"); @import url("//web.archive.org/web/20140407110829cs_/http://assets.cms.gov/resources/cms/css/cms_section3col.css"); @import url("//web.archive.org/web/20140407110829cs_/http://assets.cms.gov/resources/CMS/css/mmrrTopNav.css"); </style> <link rel="stylesheet" type="text/css" href="/web/20140407110829cs_/http://www.cms.gov/outreach-and-Education/resources/css/aian-ltss.css"/> <link rel="stylesheet" type="text/css" media="print" href="//web.archive.org/web/20140407110829cs_/http://assets.cms.gov/resources/CMS/css/print.css"/> <style> #wrapper .main-content {margin-top:0;} </style> <script type="text/javascript"> function XHConn() { var xmlhttp, bComplete = false; try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { try { xmlhttp = new XMLHttpRequest(); } catch (e) { xmlhttp = false; }}} if (!xmlhttp) return null; this.connect = function(sURL, sMethod, sVars, fnDone) { if (!xmlhttp) return false; bComplete = false; sMethod = sMethod.toUpperCase(); try { if (sMethod == "GET") { xmlhttp.open(sMethod, sURL+"?"+sVars, true); sVars = ""; } else { xmlhttp.open(sMethod, sURL, true); xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1"); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); } xmlhttp.onreadystatechange = function(){ if (xmlhttp.readyState == 4 && !bComplete) { bComplete = true; fnDone(xmlhttp); }}; xmlhttp.send(sVars); } catch(z) { return false; } return true; }; return this; } // doAJAXCall : Generic AJAX Handler, used with XHConn // Author : Bryce Christensen (www.esonica.com) // PageURL : the server side page we are calling // ReqType : either POST or GET, typically POST // PostStr : parameter passed in a query string format 'param1=foo¶m2=bar' // FunctionName : the JS function that will handle the response function mp_onload() { //If being called from outside the masterpage or header add this to the master and add a nody onload method to the body page. //if (window.body_onload != null) //window.body_onload(); getMessage(); } var doAJAXCall = function (PageURL, ReqType, PostStr, FunctionName) { // create the new object for doing the XMLHTTP Request var myConn = new XHConn(); // check if the browser supports it if (myConn) { // XMLHTTPRequest is supported by the browser, continue with the request myConn.connect('' + PageURL + '', '' + ReqType + '', '' + PostStr + '', FunctionName); } else { // Not support by this browser, alert the user alert("XMLHTTP not available. Try a newer/better browser, this application will not work!"); } } // launched from button click var getMessage = function() { var sortImageLocation='/resources'; // build up the post string when passing variables to the server side page var hdnTitle=document.getElementById("hdnTitle"); if (hdnTitle.value == "Laboratory Demographics Lookup") { doAJAXCall('/Apps/CLIA/clia_start.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS Active Resident Information Report") { doAJAXCall('/apps/mds/mds_notemp/res_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "Assessment Counts Report") { doAJAXCall('/apps/mds/mds_notemp/aa8a8b_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS Q1a Report") { doAJAXCall('/apps/mds/mds_notemp/q1a_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS RUGs Report") { doAJAXCall('/apps/mds/mds_notemp/rugs_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS Quality Measure/Indicator Report") { doAJAXCall('/apps/mds/mds_notemp/qm_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS Quality Indicator Report") { doAJAXCall('/apps/mds/mds_notemp/qi_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS RUGs by Assessment Report") { doAJAXCall('/apps/mds/mds_notemp/rugsa_start_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "MDS 3.0 Frequency Report") { doAJAXCall('/apps/mds/mds_notemp/mds30FreqStart_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "Regional Map") { doAJAXCall('/apps/maps/consortia_map_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "LIS Outreach Toolkit Percentage Maps") { doAJAXCall('/apps/maps/drilldownUSEstimates_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "LIS Outreach Toolkit Numeric Maps") { doAJAXCall('/apps/maps/drilldownUSNumbers_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "Map of S&C Promising Practices Project") { doAJAXCall('/apps/maps/StateMapSCPromPrac_us_container.asp', 'POST', '', showMessageResponse); } if (hdnTitle.value == "Disclosure to CMS Form") { doAJAXCall('/apps/ccdisclosure/Creditable-Coverage-Disclosure-Form_container.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "Medicare Beneficiary Eligibility Inquiries (270/271)") { doAJAXCall('/apps/hets/HETS_Container.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "2567 Report") { doAJAXCall('/apps/clia/2567_start_container.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "Archive OASIS B1 - 30") { doAJAXCall('/apps/hha/hhaqi_start_container.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "OASIS C Based Home Health Agency Patient Outcome, Process and Potentially Avoidable Event Reports") { doAJAXCall('/apps/hha/hhac_start_container.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "Archive OASIS B1 - 41") { doAJAXCall('/apps/hha/hhaqi41_start_container.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "EHR Incentive Programs") { doAJAXCall('/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/tickerFinal.asp', 'POST', '', showMessageResponse); } else if (hdnTitle.value == "About CMS" || hdnTitle.value == "Medicare" || hdnTitle.value == "Home" || hdnTitle.value == "Newsroom Center" || hdnTitle.value == "Outreach & Education" || hdnTitle.value == "Research, Statistics, Data & Systems" || hdnTitle.value == "Medicare-Medicaid Coordination" || hdnTitle.value == "Regulations & Guidance" || hdnTitle.value == "Affordable Care Act in Action at CMS") { doAJAXCall('/Newsroom/MediaReleaseDatabase/Global-News-Blogs.html', 'POST', '', showMessageResponse); } } // The function for handling the response from the server var showMessageResponse = function (oXML) { // get the response text, into a variable var response = oXML.responseText; //alert(response); // update the Div to show the result from the server document.getElementById("responseDiv").innerHTML = response; }; </script> <script type="text/javascript"> var addthis_config = { ui_508_compliant: true }; var sortImageLocation='/resources'; </script> </head> <body onload="mp_onload()"> <noscript> <p>The page could not be loaded. The CMS.gov Web site currently does not fully support browsers with “JavaScript” disabled. Please enable “JavaScript” and revisit this page or proceed with browsing CMS.gov with “JavaScript” disabled. <a href="https://web.archive.org/web/20140407110829/https://www.mymedicare.gov/error_nojavascript.aspx">Instructions for enabling “JavaScript” can be found here. </a> Please note that if you choose to continue without enabling “JavaScript” certain functionalities on this website may not be available. </p> </noscript> <!-- script to get the right GTM id based on the domain--> <script> var GTMContainerID ; var hostname = window.location.hostname; switch (hostname) { case 'qa.cms.gov': GTMContainerID = 'GTM-5CPV'; break; case 'cms.gov','www.cms.gov': GTMContainerID = 'GTM-ZSC7'; break; case 'qa.innovations.cms.gov': GTMContainerID = 'GTM-RVZV'; break; case 'innovation.cms.gov': GTMContainerID = 'GTM-LHF2'; break; case 'qa.partnershipforpatients.cms.gov': GTMContainerID = 'GTM-GZ2M'; break; case 'partnershipforpatients.cms.gov': GTMContainerID = 'GTM-W65Z'; break; case 'dnav.cms.gov': GTMContainerID = 'GTM-LR3S'; break; default: GTMContainerID = 'GTM-ZSC7'; break; } </script> <!-- Google Tag Manager --> <noscript> <iframe src="//web.archive.org/web/20140407110829if_/http://www.googletagmanager.com/ns.html?id=GTM-ZSC7" height="0" width="0" style="display:none;visibility:hidden" title="googletagmanager"></iframe> </noscript> <script> (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//web.archive.org/web/20140407110829/http://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer', GTMContainerID); </script> <!-- End Google Tag Manager --> <script id="jquery" type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/lib/jquery-1.7.2.js"></script> <div id="p_container"> <a class="HiddenText" href="#main_content" tabindex="1">Skip to Main Content</a> <!--Global Site Header --> <div id="hd" role="banner"> <a class="logo-cms" title="CMS.gov Centers for Medicare & Medicaid Services" href="/web/20140407110829/http://www.cms.gov/"> <img src="//web.archive.org/web/20140407110829im_/http://assets.cms.gov/resources/cms/images/logo/site-logo.png" alt="CMS.gov Centers for Medicare & Medicaid Services" width="343" height="71"/> </a> <!--Optional top bar --> <div id="topbar"> <div class="top-links" role="navigation"> <div class="main-links"> <ul> <li> <div> <a rel="$rel" target="T95444" title="Home" href="/web/20140407110829/http://www.cms.gov/"> Home<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> <li> <div> <a title="About CMS" href="/web/20140407110829/http://www.cms.gov/About-CMS/About-CMS.html" class="titlelink">About CMS</a> </div> </li> <li> <div> <a title="Newsroom Center" href="/web/20140407110829/http://www.cms.gov/Newsroom/Newsroom-Center.html" class="titlelink">Newsroom Center</a> </div> </li> <li> <div> <a rel="" target="T91041" title="FAQs" href="https://web.archive.org/web/20140407110829/https://questions.cms.gov/"> FAQs<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> <li> <div> <a rel="" target="T95445" title="Archive" href="https://web.archive.org/web/20140407110829/http://archive-it.org/collections/2744"> Archive<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> </ul> </div> <div class="sub-links"> <ul> <li class="share"> <a href="https://web.archive.org/web/20140407110829/http://www.addthis.com/bookmark.php?v=250&pubid=ra-4da5b2c47a9f9bd7" class="addthis_button_compact share ">Share</a> </li> <li> <a href="/web/20140407110829/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/index.html" class="help" title="Help">Help</a> </li> <li> <a title="Email" class="email" href="javascript:email()">Email<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a title="Print" class="print" href="javascript:window.print()">Print</a> </li> </ul> </div> </div> <div class="cms-search"> <form id="SiteSearchHeaderForm"> <div> Learn about <a href="https://web.archive.org/web/20140407110829/http://www.healthcare.gov/" id="healthcare_options"> your healthcare options</a> </div> <div role="search"> <label id="searchBoxLabel" class="HiddenText" for="query-input">Search CMS.gov</label> <input type="text" name="q" id="query-input" autocomplete="off"> <input id="btnG" class="searchButton" type="submit" value="Search"/> </div> <!--<input id="btnG" type="image" src="//assets.cms.gov/resources/cms/images/buttons/search.png" alt="Search" height="21px" width="63px" />--> </form> </div> </div> </div> <!--Global Site Header End --> <div id="wrapper"> <!--Gloabal Site Navigation Begin --> <nav role="navigation" aria-labelledby="main-nav"> <h2 id="navheading2" class="HiddenText">Main Menu</h2> <div class="navbar"> <ul> <li> <a href="/web/20140407110829/http://www.cms.gov/Medicare/Medicare.html" title="Medicare" class="nav-short">Medicare</a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.medicaid.gov/" title="Medicaid.gov">Medicaid/CHIP</a> </li> <li> <a href="/web/20140407110829/http://www.cms.gov/Medicare-Medicaid-Coordination/Medicare-MedicaidCoordination.html" title="Medicare-Medicaid Coordination" class="nav-long">Medicare-Medicaid Coordination</a> </li> <li> <a href="/web/20140407110829/http://www.cms.gov/cciio/index.html" title="Private Insurance" class="nav-short">Private Insurance</a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.innovations.cms.gov/" title="Innovation Center" class="nav-short">Innovation Center</a> </li> <li> <a href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Regulations-and-Guidance.html" title="Regulations & Guidance">Regulations & Guidance</a> </li> <li> <a href="/web/20140407110829/http://www.cms.gov/Research-Statistics-Data-and-Systems/Research-Statistics-Data-and-Systems.html" title="Research, Statistics, Data & Systems" class="nav-long">Research, Statistics, Data & Systems</a> </li> <li> <a href="/web/20140407110829/http://www.cms.gov/Outreach-and-Education/Outreach-and-Education.html" title="Outreach & Education">Outreach & Education</a> </li> </ul> </div> </nav> <!--Gloabal Site Navigation End --> <!--Gloabal Site Navigation End --> <!-- Breadcrumb --> <div id="breadcrumb"> <span class="HiddenText">You are here: </span> <a title="Home" href="/web/20140407110829/http://www.cms.gov/index.html">Home</a>  >  <a title="Regulations and Guidance" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Regulations-and-Guidance.html">Regulations and Guidance</a>  >  <a title="EHR Incentive Programs" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/index.html">EHR Incentive Programs</a> > EHR Incentive Programs </div> <!-- Breadcrumb End --> <!-- Main Body Content --> <div class="yui3-g main-content two-column"> <div class="yui3-u-1-3 left-column"> <!-- Left Navigation --> <div class="left-navigation" role="navigation"> <h2><a href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/index.html">EHR Incentive Programs</a></h2> <ul> <li><a title="Getting Started" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Getting_Started.html">Getting Started</a></li> <li><a title="Registration & Attestation" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/RegistrationandAttestation.html">Registration & Attestation</a></li> <li><a title="Medicare and Medicaid EHR Incentive Program Basics" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Basics.html">Medicare and Medicaid EHR Incentive Program Basics</a></li> <li><a title="Meaningful Use " href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Meaningful_Use.html">Meaningful Use </a></li> <li><a title="Stage 2 " href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Stage_2.html">Stage 2 </a></li> <li><a title="Clinical Quality Measures (CQMs)" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/ClinicalQualityMeasures.html">Clinical Quality Measures (CQMs)</a></li> <li><a title="Certified EHR Technology" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Certification.html">Certified EHR Technology</a></li> <li><a title="Eligible Hospital Information" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Eligible_Hospital_Information.html">Eligible Hospital Information</a></li> <li><a title="Medicaid State Information" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/MedicaidStateInfo.html">Medicaid State Information</a></li> <li><a title="Data and Program Reports" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/DataAndReports.html">Data and Program Reports</a></li> <li><a title="Educational Resources" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/EducationalMaterials.html">Educational Resources</a></li> <li><a title="Medicare Advantage" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/MedicareAdvantage.html">Medicare Advantage</a></li> <li><a title="CMS EHR Incentive Programs Listserv" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/CMS_EHR_Listserv.html">CMS EHR Incentive Programs Listserv</a></li> <li><a title="Payment Adjustments & Hardship Exceptions" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/PaymentAdj_Hardship.html">Payment Adjustments & Hardship Exceptions</a></li> <li><a title="Frequently Asked Questions (FAQs)" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/FAQ.html">Frequently Asked Questions (FAQs)</a></li> </ul> </div> </div> <!-- Left Navigation End --> <a id="main_content" tabindex="-1" style="clear:none;" name="main_content" role="main"></a> <div class="yui3-u-2-3 center-column"> <div class="syndicate"> <h1>EHR Incentive Programs </h1> <div id="responseDiv"></div> <!--PAGEWATCH CODE=""--> <span id="sectionPageBody"> <p><img alt="EHR Incentive Program" src="/web/20140407110829im_/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Other-Content-Types/EHRIncentiveLogoweb.jpg"/></p> <p><a href="https://web.archive.org/web/20140407110829/http://cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Participation-Timeline.html"><img alt="EHR Incentive Program - View your EHR Participation Timeline - Click here >" src="/web/20140407110829im_/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Other-Content-Types/EHR-Participation-Timeline-Badge.jpg" style=" float: right;"/></a></p> <h2><b>The Official Web Site for the Medicare and Medicaid Electronic Health Records (EHR) Incentive Programs</b></h2> <p>The Medicare and Medicaid EHR Incentive Programs provide incentive payments to eligible professionals, eligible hospitals and critical access hospitals (CAHs) as they adopt, implement, upgrade or demonstrate meaningful use of certified EHR technology. Eligible professionals can receive up to $44,000 through the Medicare EHR Incentive Program and up to $63,750 through the Medicaid EHR Incentive Program.</p> <p sizcache="7" sizset="45"><a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/RegistrationandAttestation.html">Register Now!</a>  Find out if you're eligible to participate in the EHR Incentive Programs and what you need to do by visiting our <a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Getting_Started.html">Getting Started</a> page.  Registering does not commit you to participating in the program, so register early!</p> <p sizcache="7" sizset="45">Here are some important 2014 EHR participation dates to keep in mind:</p> <p sizcache="7" sizset="45" style=" margin-left: 20.0px;">• <b>March 31, 2014 at 11:59 pm ET:</b> Attestation deadline for Medicare eligible professionals for the 2013 program year<br/> • <b>September 30:</b> End of 2014 fiscal year and end of the 2014 reporting period for eligible hospitals<br/> • <b>November 30, 2014 at 11:59 pm ET:</b> Attestation deadline for Medicare eligible hospitals for the 2014 program year<br/> • <b>December 31:</b> End of 2014 calendar year and end of the 2014 reporting period for eligible professionals</p> <p sizcache="7" sizset="45" style=" margin-left: 20.0px;"> </p> <p sizcache="7" sizset="45">Eligible hospitals and critical access hospitals (CAHs) should visit our <a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Eligible_Hospital_Information.html">Eligible Hospital Information</a> page to learn about the EHR Incentive Programs</p> <p sizcache="7" sizset="45"><b><span style=" font-size: medium;">Sequestration and the Medicare and Medicaid EHR Incentive Programs</span></b></p> <p sizcache="7" sizset="45">Incentive payments made through the Medicare Electronic Health Records (EHR) Incentive Program are subject to the mandatory reductions in federal spending known as sequestration, required by the Budget Control Act of 2011. The American Taxpayer Relief Act of 2012 postponed sequestration for 2 months.  As required by law, President Obama issued a sequestration order on March 1, 2013. Under these mandatory reductions, Medicare EHR incentive payments made to eligible professionals and eligible hospitals will be reduced by 2%. This 2% reduction will be applied to any Medicare EHR incentive payment for a reporting period that ends on or after April 1, 2013. If the final day of the reporting period occurs before April 1, 2013, those incentive payments will not be subject to the reduction.<br/> Please note that this reduction does not apply to Medicaid EHR incentive payments, which are exempt from the mandatory reductions. </p> <p><a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Stage_2.html"><img alt="" src="/web/20140407110829im_/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Downloads/EHR_Stage2_ButtonApplication.jpg" style=" float: right;"/></a></p> <h3 sizcache="7" sizset="45"><b>The Medicare EHR Incentive Program</b><a id="BOOKMARK1" name="BOOKMARK1"> </a></h3> <ul> <li sizcache="7" sizset="45">The <b>Medicare</b> EHR Incentive Program provides incentive payments to eligible professionals, eligible hospitals, and CAHs that demonstrate meaningful use of certified EHR technology.</li> <li sizcache="7" sizset="45">Eligible professionals can receive up to <b>$44,000</b> over five years under the Medicare EHR Incentive Program. There's an additional incentive for eligible professionals who provide services in a Health Professional Shortage Area (HSPA).<b>To get the maximum incentive payment, Medicare eligible professionals must begin participation by 2012.</b><br/> </li> </ul> <p sizcache="7" sizset="45">Note: If you are a Medicare Advantage Plan (like an HMO or PPO), please visit our <a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/MedicareAdvantage.html">Medicare Advantage</a> page.</p> <p sizcache="7" sizset="45"><a href="#TOP">Back to TOP</a><a id="BOOKMARK2" name="#BOOKMARK2"> </a></p> <p sizcache="7" sizset="45"><b>The Medicaid EHR Incentive Program</b></p> <ul> <li sizcache="7" sizset="45">The <b>Medicaid</b> EHR Incentive Program provides incentive payments to eligible professionals, eligible hospitals, and CAHs as they adopt, implement, upgrade, or demonstrate meaningful use of certified EHR technology in their first year of participation and demonstrate meaningful use for up to five remaining participation years.</li> <li sizcache="7" sizset="45">Eligible professionals can receive up to <b>$63,750</b> over the six years that they choose to participate in the program</li> <li sizcache="7" sizset="45">The Medicaid EHR Incentive Program is voluntarily offered by 43 individual states and territories, and more states will begin offering the program in 2012. Check with your <a href="https://web.archive.org/web/20140407110829/https://www.cms.gov/apps/files/statecontacts.pdf">State Medicaid Agency</a> for more information.</li> </ul> <p sizcache="7" sizset="45">The EHR Incentive Program provides incentive payments for eligible healthcare providers to use EHR technology in ways that can positively impact patient care.</p> <p sizcache="7" sizset="45"><a href="#TOP">Back to TOP</a><a id="BOOKMARK2" name="#BOOKMARK2"> </a></p> <p sizcache="7" sizset="45"> </p> <h2><b>What is an EHR?</b></h2> <p sizcache="7" sizset="45">An electronic health record (EHR)—sometimes called an electronic medical record (EMR)—allows healthcare providers to record patient information electronically instead of using paper records. However, EHRs are often capable of doing much more than just recording information. The EHR Incentive Program asks providers to use the capabilities of their EHRs to achieve benchmarks that can lead to improved patient care.</p> <p sizcache="7" sizset="45"><br/> The EHR Incentive Program is NOT a reimbursement program for purchasing or replacing an EHR. Providers have to meet specific requirements in order to receive incentive payments.</p> <p sizcache="7" sizset="45"><a href="#TOP">Back to TOP</a><a id="BOOKMARK2" name="#BOOKMARK2"> </a></p> <h2 sizcache="7" sizset="45"><b>Choosing a Program: Medicare or Medicaid?</b></h2> <p sizcache="7" sizset="45">The EHR Incentive Programs are available for Medicare and Medicaid eligible professionals, eligible hospitals, and critical access hospitals (CAHs). Although most hospitals will be able to receive a payment from both programs, eligible professionals must choose which program they want to participate in. The two programs are similar in many ways, but there are some important differences between them.  Click on the links below to learn more about the Medicare or Medicaid EHR Incentive Programs.</p> <p sizcache="7" sizset="45"> </p> <table border="1" cellpadding="0" cellspacing="0" style=" width: 738px; height: 224px;"> <tr> <th style=" text-align: center; width: 370px;"><b>Medicare EHR Incentive Program</b></th> <th style=" text-align: center; width: 367px;"><b>Medicaid EHR Incentive Program</b></th> </tr> <tr> <td style=" width: 370px; height: 22px;">Run by CMS</td> <td style=" width: 367px; height: 22px;">Run by Your State Medicaid Agency</td> </tr> <tr> <td style=" width: 370px; height: 20px;">Maximum incentive amount is $44,000</td> <td style=" width: 367px; height: 20px;">Maximum incentive amount is $63,750</td> </tr> <tr> <td style=" width: 370px; height: 25px;">Payments over 5 consecutive years</td> <td style=" width: 367px; height: 25px;">Payments over 6 years, does not have to be consecutive</td> </tr> <tr> <td style=" width: 370px; height: 43px;">Payment adjustments will begin in 2015 for providers who are eligible but decide not to participate</td> <td style=" width: 367px; height: 42px;">No Medicaid payment adjustments</td> </tr> <tr> <td style=" width: 370px; height: 100px;">Providers must demonstrate meaningful use every year to receive incentive payments.</td> <td style=" width: 367px; height: 101px;">In the first year providers can receive an incentive payment for adopting, implementing, or upgrading EHR technology. Providers must demonstrate meaningful use in the remaining years to receive incentive payments.</td> </tr> </table> <p sizcache="7" sizset="45"><a href="#TOP">Back to TOP</a><a id="BOOKMARK2" name="#BOOKMARK2"> </a></p> <p sizcache="7" sizset="45"> </p> <h2><b>Who Is Eligible to Participate?</b></h2> <p sizcache="7" sizset="45">Click on our eligibility tool below to learn whether you are eligible to receive an incentive payment under either the Medicare or Medicaid EHR Incentive Programs—or scroll down to learn more. (To learn which hospitals are eligible to participate in the program, visit our <a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Eligible_Hospital_Information.html">Eligible Hospital Information</a> page.)</p> <p sizcache="7" sizset="45"> </p> <h3 sizcache="7" sizset="45"><b> Eligibility Requirements for Professionals:</b></h3> <ul> <li sizcache="7" sizset="45">Incentive payments for eligible professionals are based on individual practitioners.</li> <li sizcache="7" sizset="45">If you are part of a practice, each eligible professional may qualify for an incentive payment if each eligible professional successfully demonstrates meaningful use of certified EHR technology.</li> <li sizcache="7" sizset="45">Each eligible professional is only eligible for one incentive payment per year, regardless of how many practices or locations at which he or she provides services.</li> <li sizcache="7" sizset="45"><b>Hospital-based eligible professionals are not eligible for incentive payments.</b> An eligible professional is considered hospital-based if 90% or more of his or her services are performed in a hospital inpatient (Place Of Service code 21) or emergency room (Place Of Service code 23) setting.</li> </ul> <p sizcache="7" sizset="45"> </p> <table border="1" cellpadding="0" cellspacing="0" style=" width: 734px;"> <tr> <td style=" width: 366px; height: 40px;">Eligible professionals under the <b>Medicare EHR Incentive Program</b> include<b>:</b></td> <td style=" width: 369px; height: 40px;">Eligible professionals under the <b>Medicaid EHR Incentive Program</b> include:</td> </tr> <tr> <td style=" height: 41px; width: 366px; vertical-align: middle;">Doctor of medicine or osteopathy</td> <td style=" width: 369px; height: 42px; vertical-align: middle;">Physicians (primarily doctors of medicine and doctors of osteopathy)</td> </tr> <tr> <td style=" height: 23px; width: 366px; vertical-align: middle;">Doctor of dental surgery or dental medicine</td> <td style=" width: 369px; height: 23px; vertical-align: middle;">Nurse practitioner</td> </tr> <tr> <td style=" height: 24px; width: 366px; vertical-align: middle;">Doctor of podiatry</td> <td style=" width: 369px; height: 24px; vertical-align: middle;">Certified nurse-midwife</td> </tr> <tr> <td style=" height: 26px; width: 366px; vertical-align: middle;">Doctor of optometry</td> <td style=" width: 369px; height: 26px; vertical-align: middle;">Dentist</td> </tr> <tr> <td style=" height: 53px; width: 366px; vertical-align: middle;">Chiropractor</td> <td style=" width: 369px; height: 54px; vertical-align: middle;">Physician assistant who furnishes services in a Federally Qualified Health Center of Rural Health Clinic that is led by a physician assistant.</td> </tr> </table> </span> <!--/PAGEWATCH--> </div> <div class="helpbox"> <h2>Downloads</h2> <div class="help-details"><ul> <li> <a type="application/x-zip-compressed" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Downloads/EHR_EP_Decision_Tool.zip">EHR EP Decision Tool [ZIP, 178KB] </a> </li><li> <a type="application/pdf" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Downloads/EHR_Medicaid_Guide_Remediated_2012.pdf">An Introduction to the Medicaid EHR Incentive Program for Eligible Professionals [PDF, 952KB] </a> </li><li> <a type="application/pdf" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Downloads/Beginners_Guide.pdf">An Introduction to the Medicare EHR Incentive Program for Eligible Professionals [PDF, 2MB] </a> </li><li> <a type="application/pdf" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Downloads/MLN_MedicaidEHRProgram_TipSheet_EP.pdf">Medicaid EHR Incentive Program Tip Sheet for Eligible Professionals [PDF, 177KB] </a> </li><li> <a type="application/pdf" href="/web/20140407110829/http://www.cms.gov/Regulations-and-Guidance/Legislation/EHRIncentivePrograms/Downloads/MLN_MedicareEHRProgram_TipSheet_EP.pdf">Medicare EHR Incentive Program Tip Sheet for Eligible Professionals [PDF, 213KB] </a> </li></ul></div> </div> <!-- End --> <!-- Help Box - Related Links --> <div class="page-help"> <ul> <li class="page-update"> Page last Modified: 02/18/2014 12:40 PM </li> <li> <a href="/web/20140407110829/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/Help.html" class="file-format-help">Help with File Formats and Plug-Ins</a> </li> <!-- END PPOMIT --> </ul> </div> <!-- START PPOMIT --> </div> </div> <!-- Help Box - Download --> <!-- End --> <!-- Page Help Widgets --> <!-- Page Help Widgets End --> <!-- Main Body Content End --> <!-- Page Help Widgets End --> <div id="p_footer" role="contentinfo" class="printerFriendlyOmit"> <div class="ft-content"> <h2 class="HiddenText">Footer</h2> <div class="ft-inner-content"> <div class="cms-address-bar"> <a id="footer-home-btn" href="/web/20140407110829/http://www.cms.gov/">Home</a> <img id="footer-address-img" src="//web.archive.org/web/20140407110829im_/http://assets.cms.gov/resources/cms/images/logo/cms.gov-footer.png" alt="CMS.gov"/> <div id="footer-address-text"> A federal government website managed by the Centers for Medicare & Medicaid Services<br/> 7500 Security Boulevard, Baltimore, MD 21244 </div> <div class="vcard"> <a class="fn org url" href="/web/20140407110829/http://www.cms.gov/">Centers for Medicare & Medicaid Services</a> <div class="adr"> <div class="street-address"> 7500 Security Boulevard </div> <span class="locality">Baltimore</span>, <abbr class="region" title="Maryland"> MD</abbr><span class="postal-code">21244</span> <div class="country-name"> USA</div> </div> </div> <div id="footer-hhs-logo-wrapper" align="right"> <div id="footer_hhs_logo"> <a href="https://web.archive.org/web/20140407110829/http://www.hhs.gov/" title="Health and Human Services home page" id="footer_hhs_logo_link"> <img src="//web.archive.org/web/20140407110829im_/http://assets.cms.gov/resources/cms/images/logo/hhslogo.png" alt="Department of Health and Human Services USA"/> </a> </div> </div> </div> <div class="footer-nav"> <div id="footer_col1"> <div class="content"> <h3>CMS & HHS Websites</h3> <ul> <li> <a href="https://web.archive.org/web/20140407110829/http://www.medicare.gov/" target="_blank" title="Medicare.gov"> Medicare.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://mymedicare.gov/" target="_blank" title="MyMedicare.gov"> MyMedicare.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.stopmedicarefraud.gov/" target="_blank" title="StopMedicareFraud.gov"> StopMedicareFraud.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://medicaid.gov/" target="_blank" title="Medicaid.gov"> Medicaid.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.insurekidsnow.gov/" target="_blank" title="InsureKidsNow.gov"> InsureKidsNow.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.healthcare.gov/" target="_blank" title="HealthCare.gov"> HealthCare.gov<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.hhs.gov/open/" target="_blank" title="HHS.gov/Open"> HHS.gov/Open<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> </ul> </div> </div> <div id="footer_col2"> <div class="content"> <h3>Tools</h3> <ul> <li> <div> <a rel="$rel" target="T91037" title="Acronyms" href="/web/20140407110829/http://www.cms.gov/apps/acronyms"> Acronyms<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> <li> <div> <a rel="$rel" target="T91038" title="Contacts" href="/web/20140407110829/http://www.cms.gov/apps/contacts"> Contacts<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> <li> <div> <a rel="" target="T91041" title="FAQs" href="https://web.archive.org/web/20140407110829/https://questions.cms.gov/"> FAQs<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> <li> <div> <a rel="$rel" target="T91042" title="Glossary" href="/web/20140407110829/http://www.cms.gov/apps/glossary/"> Glossary<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> <li> <div> <a rel="" target="T95445" title="Archive" href="https://web.archive.org/web/20140407110829/http://archive-it.org/collections/2744"> Archive<span class="LinkDisclaimer"> - Opens in a new window</span> </a> </div> </li> </ul> </div> </div> <div id="footer_col3"> <div class="content"> <h3> Helpful Links </h3> <div> <ul> <li> <a class="titlelink" href="/web/20140407110829/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/index.html" title="Web Policies & Important Links">Web Policies & Important Links</a> </li> <li> <a class="titlelink" href="/web/20140407110829/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/Privacy-Policy.html" title="Privacy Policy"> Privacy Policy</a> </li> <li> <a class="titlelink" href="//web.archive.org/web/20140407110829/http://www.medicare.gov/about-us/plain-writing/plain-writing.html" title="Plain Language"> Plain Language</a> </li> <li> <a class="titlelink" href="/web/20140407110829/http://www.cms.gov/center/freedom-of-information-act-center.html" title="Freedom of Information Act">Freedom of Information Act</a> </li> <li> <a class="titlelink" href="/web/20140407110829/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/NoFearAct.html" title="No Fear Act"> No Fear Act </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.hhs.gov/" target="_blank" title="HHS.gov"> HHS.gov <span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.justice.gov/oig" target="_blank" title="Inspector General"> Inspector General <span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a href="https://web.archive.org/web/20140407110829/http://www.usa.gov/" target="_blank" title="USA.gov"> USA.gov <span class="LinkDisclaimer"> - Opens in a new window</span> </a> </li> <li> <a class="titlelink" href="/web/20140407110829/http://www.cms.gov/About-CMS/Agency-Information/Aboutwebsite/Help.html" title="Help with file formats & plug-ins">Help with file formats & plug-ins</a> </li> </ul> </div> </div> </div> <div id="footer_col4"> <div class="content"> <!-- Get Email Update Widget --> <div class="get-email-update-widget"> <label for="signup-email-update">Receive Email Updates</label> <form class="email-form" action="https://web.archive.org/web/20140407110829/https://public-dc2.govdelivery.com/accounts/USCMS/subscribers/qualify"> <input id="qsp" type="hidden" value="CODE_RED" name="qsp"/> <input class="long" name="email" type="text" id="signup-email-update" onfocus="this.value=''" title="Receive Email Updates"/> <input class="form_button" id="email-submit" name="email-submit" type="submit" value="Submit"/> </form> </div> </div> <!-- Get Email Update Widget --> </div> </div> </div> </div> </div> </div> </div> <!-- Closes #wrapper --> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/Resources/Global/JS/lib/jquery.listen.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/jquery.508expcollapse.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/Global/JS/lib/jquery-1.6.4.min.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/jquery.equalHeights.plugins.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/javascript/datatables.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/javascript/navbar_events.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/javascript/jquery.508carousel.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/javascript/global-functions.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/jquery-ui-min.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/jquery.ui.widget.js"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/jquery.ui.accordion.js"></script> <script type="text/javascript"> $(function() { $( "#accordion" ).accordion({ autoHeight: false, navigation: true }); }); </script> <!-- Global Footer End --> <!--[if lt IE 7]> <link href="//assets.cms.gov/resources/cms/css/cms-global-ie7.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="//assets.cms.gov/resources/global/js/jquery.pngFix.js"></script> <![endif]--> <!--[if IE 6]> <link href="//assets.cms.gov/resources/cms/css/cms-global-ie6.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="//assets.cms.gov/resources/global/js/jquery.pngFix.js"></script> <script type="text/javascript" src="//assets.cms.gov/resources/cms/javascript/ie-fix.js"></script> <![endif]--> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/global/js/chartbeat.js"></script> <!-- Google's Site Search BEGIN--> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://www.google.com/jsapi"></script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/javascript/google.site.search.head.js"></script> <!-- Google's Site Search END --> <input type="hidden" id="hdnTitle" name="hdnTitle" value="EHR Incentive Programs"/> <script> var url = window.location.href; //adds external globle icon to external links that are not '.gov' $(".external-link").after('<a href="https://web.archive.org/web/20140407110829/http://www.cms.gov/goodbye.asp"><img src="//web.archive.org/web/20140407110829/http://assets.cms.gov/resources/CMS/images/icons/external.gif" alt=" - External Link Policy" title="External Link Policy"/></a>'); </script> <script type="text/javascript" src="//web.archive.org/web/20140407110829js_/http://assets.cms.gov/resources/cms/javascript/cms_newsroom.js" "></script> </body> </html> <!-- FILE ARCHIVED ON 11:08:29 Apr 07, 2014 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 09:03:04 Mar 07, 2025. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.608 exclusion.robots: 0.028 exclusion.robots.policy: 0.015 esindex: 0.011 cdx.remote: 10.319 LoadShardBlock: 152.782 (3) PetaboxLoader3.datanode: 83.355 (4) PetaboxLoader3.resolve: 72.485 (2) load_resource: 61.306 -->