نتایج جستجو برای: naloxone

تعداد نتایج: 4623  

2014
Catriona Matheson Christiane Pflanz-Sinclair Lorna Aucott Philip Wilson Richard Watson Stephen Malloy Elinor Dickie Andrew McAuley

BACKGROUND The Scottish Naloxone Programme aims to reduce Scotland's high number of drug-related deaths (DRDs) caused by opiate overdose. It is currently implemented through specialist drug services but General Practitioners (GPs) are likely to have contact with drug using patients and their families and are therefore in an ideal position to direct them to naloxone schemes, or provide it themse...

2015
Marcus A. Bachhuber Emma E. McGinty Alene Kennedy-Hendricks Jeff Niederdeppe Colleen L. Barry Kent E. Vrana

BACKGROUND Barriers to public support for naloxone distribution include lack of knowledge, concerns about potential unintended consequences, and lack of sympathy for people at risk of overdose. METHODS A randomized survey experiment was conducted with a nationally-representative web-based survey research panel (GfK KnowledgePanel). Participants were randomly assigned to read different message...

Journal: :Journal of addiction medicine 2011
Alexander R Bazazi Michael Yokell Jeannia J Fu Josiah D Rich Nickolas D Zaller

OBJECTIVES We examined the use, procurement, and motivations for the use of diverted buprenorphine/naloxone among injecting and noninjecting opioid users in an urban area. METHODS A survey was self-administered among 51 injecting opioid users and 49 noninjecting opioid users in Providence, RI. Participants were recruited from a fixed-site syringe exchange program and a community outreach site...

Journal: :The Journal of emergency medicine 2005
Erik D Barton Christopher B Colwell Timothy Wolfe Dave Fosnocht Craig Gravitz Tamara Bryan Will Dunn Jeff Benson Jeff Bailey

Prehospital providers are at increased risk for blood-borne exposure and disease due to the nature of their environment. The use if intranasal (i.n.) medications in high-risk populations may limit this risk of exposure. To determine the efficacy of i.n. naloxone in the treatment of suspected opiate overdose patients in the prehospital setting, a prospective, nonrandomized trial of administering...

Journal: :Drug and alcohol dependence 2015
Corey S Davis Derek Carr

BACKGROUND Opioid overdose, which has reached epidemic levels in the United States, is reversible by administration of the medication naloxone. Naloxone requires a prescription but is not a controlled substance and has no abuse potential. In the last half-decade, the majority of states have modified their laws to increase layperson access to the medication. METHODS We utilized a structured le...

Journal: :The American journal of emergency medicine 2010
Mark A Merlin Matthew Saybolt Raffi Kapitanyan Scott M Alter Janos Jeges Junfeng Liu Susan Calabrese Kevin O Rynn Rachael Perritt Peter W Pryor

INTRODUCTION This study proposes that intranasal (IN) naloxone administration is preferable to intravenous (IV) naloxone by emergency medical services for opioid overdoses. Our study attempts to establish that IN naloxone is as effective as IV naloxone but without the risk of needle exposure. We also attempt to validate the use of the Glasgow Coma Scale (GCS) in opioid intoxication. METHODS A...

2016
Samantha L. Wiegand Madeleine J. Swortwood Marilyn A. Huestis John Thorp Hendreé E. Jones Neeta L. Vora

Objective To quantify naloxone and metabolite concentrations in newborns prenatally exposed to sublingual buprenorphine/naloxone and to correlate neonatal and maternal metabolite concentrations. Methods This is a prospective observational cohort study. Eleven pregnant women treated for opioid use disorder with sublingual buprenorphine/naloxone were enrolled. Maternal and newborn blood was colle...

2013
Wojciech Leppert

Opioid analgesics are usually effective in the management of severe chronic pain. However, symptoms of opioid-induced bowel dysfunction (OIBD) are common during opioid therapy. Opioid-induced bowel dysfunction is often unsuccessfully managed due to limited effectiveness and numerous adverse effects of traditional laxatives. Newer treatment possibilities directed at the pathomechanism of OIBD co...

Journal: :Drug and alcohol dependence 1998
P J Fudala E Yu W Macfadden C Boardman C N Chiang

The present study, conducted as part of the development of a buprenorphine/naloxone combination product, was designed to evaluate the individual and combined effects of intravenously administered buprenorphine and naloxone. This in-patient trial used a randomized, double-blind, crossover design. Ten opioid-dependent male subjects were stabilized and maintained on morphine, 15 mg given intramusc...

Journal: :Psychiatry international 2021

Opioid use disorder is a well-established and growing problem in the United States. It responsible for both psychosocial physical damage to affected individuals with significant mortality rate. Given medical non-medical consequences of this epidemic, it important understand current treatments approaches opioid acute overdose. Naloxone competitive mu-opioid receptor antagonist that used reversal...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->