<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://pharmacopedia.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=MediaWiki+default</id>
	<title>Pharmacopedia - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://pharmacopedia.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=MediaWiki+default"/>
	<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/p/Special:Contributions/MediaWiki_default"/>
	<updated>2026-05-28T08:17:23Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.46.0-beta</generator>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Module:TopCategories&amp;diff=3361</id>
		<title>Module:TopCategories</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Module:TopCategories&amp;diff=3361"/>
		<updated>2026-05-14T19:47:02Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Create TopCategories Lua module for dynamic top-10 list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
local categories = {&lt;br /&gt;
	&#039;Addiction Medicine&#039;, &#039;Amphetamines&#039;, &#039;Anesthetics&#039;, &#039;Anti-Dementia Medicines&#039;,&lt;br /&gt;
	&#039;Anticonvulsants / Antiepileptics&#039;, &#039;Antidepressants&#039;, &#039;Antihistamines&#039;,&lt;br /&gt;
	&#039;Antiparkinsonian Medicines&#039;, &#039;Antipsychotics / Neuroleptics&#039;,&lt;br /&gt;
	&#039;Anxiolytics &amp;amp; Sedative-Hypnotics&#039;, &#039;Arylcyclohexylamines&#039;, &#039;Barbiturates&#039;,&lt;br /&gt;
	&#039;Benzodiazepines&#039;, &#039;Cannabinoids&#039;, &#039;Cathinones&#039;,&lt;br /&gt;
	&#039;Classical Psychedelics (Serotonergic)&#039;, &#039;Deliriants&#039;, &#039;Dissociatives&#039;,&lt;br /&gt;
	&#039;Empathogens / Entactogens&#039;, &#039;Ergotamines&#039;,&lt;br /&gt;
	&#039;Eugeroics (Wakefulness-Promoting Agents)&#039;, &#039;GABAergics&#039;, &#039;Local Anesthetics&#039;,&lt;br /&gt;
	&#039;Lysergamides&#039;, &#039;Methylphenidates (Phenidates)&#039;, &#039;Migraine Medicines&#039;,&lt;br /&gt;
	&#039;Monoamine Oxidase Inhibitors (MAOIs)&#039;, &#039;Mood Stabilizers&#039;,&lt;br /&gt;
	&#039;Muscle Relaxants (CNS-acting)&#039;, &#039;NBOMe / NBOH series&#039;, &#039;Natural opioids&#039;,&lt;br /&gt;
	&#039;Nootropics&#039;, &#039;Opioid Antagonists&#039;, &#039;Opioids&#039;, &#039;Orexin Receptor Antagonists&#039;,&lt;br /&gt;
	&#039;Phenethylamines&#039;, &#039;Psychedelics&#039;, &#039;Pyrrolidinophenones&#039;,&lt;br /&gt;
	&#039;Research Materials&#039;, &#039;Second-Generation Antipsychotics (SGAs / Atypicals)&#039;,&lt;br /&gt;
	&#039;Selective Serotonin Reuptake Inhibitors (SSRIs)&#039;, &#039;Semisynthetic opioids&#039;,&lt;br /&gt;
	&#039;Serotonin–Norepinephrine Reuptake Inhibitors (SNRIs)&#039;,&lt;br /&gt;
	&#039;Stimulants &amp;amp; Wake-Promoting Agents&#039;, &#039;Synthetic opioids&#039;,&lt;br /&gt;
	&#039;Tricyclic Antidepressants (TCAs)&#039;, &#039;Triptans (5-HT1B/1D Agonists)&#039;,&lt;br /&gt;
	&#039;Tryptamines&#039;, &#039;Xanthines&#039;, &#039;Z-Drugs (Non-Benzodiazepine Hypnotics)&#039;,&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function p.list(frame)&lt;br /&gt;
	local counts = {}&lt;br /&gt;
	for _, cat in ipairs(categories) do&lt;br /&gt;
		local n = mw.site.stats.pagesInCategory(cat, &#039;pages&#039;)&lt;br /&gt;
		if n &amp;gt; 0 then&lt;br /&gt;
			table.insert(counts, {name = cat, count = n})&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	-- Sort descending by count to pick top 10&lt;br /&gt;
	table.sort(counts, function(a, b) return a.count &amp;gt; b.count end)&lt;br /&gt;
	local top10 = {}&lt;br /&gt;
	for i = 1, math.min(10, #counts) do&lt;br /&gt;
		table.insert(top10, counts[i])&lt;br /&gt;
	end&lt;br /&gt;
	-- Re-sort top 10 alphabetically&lt;br /&gt;
	table.sort(top10, function(a, b) return a.name &amp;lt; b.name end)&lt;br /&gt;
	local lines = {}&lt;br /&gt;
	for _, item in ipairs(top10) do&lt;br /&gt;
		table.insert(lines, &#039;* [[:Category:&#039; .. item.name .. &#039;|&#039; .. item.name .. &#039;]]&#039;)&lt;br /&gt;
	end&lt;br /&gt;
	return table.concat(lines, &#039;\n&#039;)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Mixed_amphetamine_salts&amp;diff=3350</id>
		<title>Mixed amphetamine salts</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Mixed_amphetamine_salts&amp;diff=3350"/>
		<updated>2026-05-14T15:18:40Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic           = Mixed amphetamine salts&lt;br /&gt;
| brand             = Adderall, Adderall XR, Mydayis&lt;br /&gt;
| structure         = Amphetamine-white.svg&lt;br /&gt;
| classes           = Psychostimulant, Amphetamine&lt;br /&gt;
| uses              = &amp;lt;vote slug=&amp;quot;inattention&amp;quot;&amp;gt;Inattention&amp;lt;/vote&amp;gt;, &amp;lt;vote slug=&amp;quot;narcolepsy&amp;quot;&amp;gt;Narcolepsy&amp;lt;/vote&amp;gt;, &amp;lt;vote slug=&amp;quot;hyperactivity&amp;quot;&amp;gt;Hyperactivity&amp;lt;/vote&amp;gt;, &amp;lt;vote slug=&amp;quot;impulsivity&amp;quot;&amp;gt;Impulsivity&amp;lt;/vote&amp;gt;, &amp;lt;vote slug=&amp;quot;irritability&amp;quot;&amp;gt;Irritability&amp;lt;/vote&amp;gt;&lt;br /&gt;
| starting_dose     = 2.5 mg IR, 5 mg XR, or 12.5mg Mydayis&lt;br /&gt;
| preparations      = IR tabs 5, 7.5, 10, 12.5, 15, 20, 30 mg; XR caps 5, 10, 15, 20, 25, 30 mg; Mydayis caps 12.5, 25, 37.5, 50 mg&lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes            = Oral&lt;br /&gt;
| onset             = IR: 30–60 min; XR: 1–2 h to peak effect&lt;br /&gt;
| duration          = IR 4–6 h; XR 10–12 h; Mydayis 14–16 h&lt;br /&gt;
| halflife          = D-amphetamine ~10 h; L-amphetamine ~13 h (adults)&lt;br /&gt;
| bioavailability   = ~75–90% (oral)&lt;br /&gt;
| pregnancy         = Category C&lt;br /&gt;
| legal             = Schedule II&lt;br /&gt;
| mechanism         = TAAR1 agonism, VMAT2 substrate, DAT/NET reverse transport — net release of dopamine and norepinephrine&lt;br /&gt;
| intro             = &#039;&#039;&#039;Mixed amphetamine salts (MAS)&#039;&#039;&#039; — marketed primarily as &#039;&#039;&#039;Adderall&#039;&#039;&#039; — is a 3:1 mixture of dextroamphetamine and levoamphetamine salts (dextroamphetamine sulfate, amphetamine sulfate, dextroamphetamine saccharate, and amphetamine aspartate). &lt;br /&gt;
Amphetamine was first synthesized in 1887 by Lazăr Edeleanu, then developed as a medicine in the late 1920s. &amp;quot;Adderall&amp;quot; was approved by the FDA in 1996, and has since become one of the most popular medicines in the United States. Adderall/MAS is FDA-approved for attention-deficit hyperactivity disorder and narcolepsy. It is listed in Schedule II of the Controlled Substances Act, and so is tightly regulated in the United States as well as many other countries around the world.&lt;br /&gt;
| indications       = &amp;lt;indication ref=&amp;quot;adhd&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;narcolepsy&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;trd-augment&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Off-label.&lt;br /&gt;
&amp;lt;/indication&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;shift-work&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Off-label.&lt;br /&gt;
&amp;lt;/indication&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;chronic-illness-cog&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Off-label.&lt;br /&gt;
&amp;lt;/indication&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;impulsivity&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;distractibility&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Impoved sustained attention by decreasing distractibility&lt;br /&gt;
&amp;lt;/indication&amp;gt;&lt;br /&gt;
| dosing            = &amp;lt;titration slug=&amp;quot;typical-adult&amp;quot; title=&amp;quot;Typical Adult&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Start at 5 mg XR; may increase by 5 mg each day until the desired effect is reached, up to 30 mg XR to start, and up to 60 mg XR eventually if necessary, in 10 mg increments.&lt;br /&gt;
&lt;br /&gt;
Occasionally can go higher if no notable effects (good or bad) at 60 mg — proceed with caution.&lt;br /&gt;
&lt;br /&gt;
If not long enough acting: add a tail dose of Adderall IR at [XR dose]/2.&lt;br /&gt;
If too long acting (e.g. disrupting sleep): switch to IR entirely (again at half the XR dose).&lt;br /&gt;
&amp;lt;/titration&amp;gt;&lt;br /&gt;
| effects           = &lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;attention&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Improved sustained attention, particularly on uninteresting things.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;reduced-impulsivity&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;wakefulness&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;motivation&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;euphoria&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;decreased-appetite&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;dry-mouth&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;hr-bp-elevation&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;bruxism&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;insomnia&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;(with proper am dosing)&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;irritability&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;anxiety&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;headache&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;weight-loss&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;palpitations&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;stereotypies&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Repetitive movements, e.g. skin picking, muscle twitches, tics&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;cardiac-event&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;agitation&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;psychosis&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;mania&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;dependence&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;tolerance&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;growth-suppression&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;(well documented effect with chronic use in children)&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;serotonin-syndrome&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Especially in combination with MAOIs&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;vasculopathy&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Raynaud-like phenomenon, rare digital ischemia.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;seizure&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;hyperthermia&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Risk in hot environments or with vigorous exercise.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;withdrawal&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Low motivation, low mood, hypersomnia, increased appetite on abrupt discontinuation.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;urinary-retention&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Difficult/slow urination&amp;lt;/effect&amp;gt;&lt;br /&gt;
| pk_absorption     = Excellent oral bioavailability — sources report &amp;quot;&amp;gt;75%&amp;quot; to &amp;quot;~90%&amp;quot;. Food does not significantly affect total absorption but can delay peak concentration.&lt;br /&gt;
| pk_distribution   = Volume of distribution ~4 L/kg; plasma protein binding less than 20%. Crosses the blood–brain barrier and placenta.&lt;br /&gt;
| pk_metabolism     = Amphetamine is oxidized to 4-hydroxyamphetamine, α-hydroxyamphetamine, or norephedrine. Norephedrine and 4-hydroxyamphetamine are active metabolites and are further metabolized to 4-hydroxy-norephedrine. Deamination of α-hydroxyamphetamine yields phenylacetone, which is metabolized to benzoic acid and conjugated to its glucuronide and hippuric acid. &#039;&#039;&#039;CYP2D6&#039;&#039;&#039; is crucial for amphetamine metabolism; genetic polymorphism causes significant inter-patient variability in clearance. Amphetamine itself inhibits monoamine oxidase (MAO), and both CYP1A2 and CYP3A4 contribute to its metabolism.&amp;lt;ref&amp;gt;https://www.ncbi.nlm.nih.gov/sites/books/NBK507808/&amp;lt;/ref&amp;gt;&lt;br /&gt;
| pk_elimination    = Primarily renal — ~30–40% recovered as unchanged amphetamine, the rest as metabolites. Due to its pK&amp;lt;sub&amp;gt;a&amp;lt;/sub&amp;gt; of 9.9, urinary elimination is highly pH-dependent: alkaline urine reduces ionization and decreases renal clearance, while acidic urine and high flow rates accelerate clearance via active tubular secretion. &#039;&#039;&#039;Half-life:&#039;&#039;&#039; D-enantiomer 9 h (children 6–12 y), 11 h (adolescents 13–17 y), 10 h (adults); L-enantiomer 11 h, 13–14 h, 13 h respectively.&lt;br /&gt;
| pharmacodynamics  = Amphetamine purportedly works via several converging mechanisms at monoaminergic terminals:&lt;br /&gt;
* &#039;&#039;&#039;Trace amine-associated receptor 1 (TAAR1) agonism&#039;&#039;&#039; — activates TAAR1 in monoaminergic neurons, triggering PKA/PKC signaling that phosphorylates the dopamine and norepinephrine transporters (DAT, NET), causing them to internalize and reverse direction.&lt;br /&gt;
* &#039;&#039;&#039;VMAT2 substrate&#039;&#039;&#039; — enters the presynaptic terminal, displaces dopamine and norepinephrine from vesicles into the cytoplasm.&lt;br /&gt;
* &#039;&#039;&#039;Reverse transport via DAT/NET&#039;&#039;&#039; — the elevated cytoplasmic monoamine pool is then ejected into the synaptic cleft via the now-reversed transporters. &#039;&#039;&#039;This is the primary mechanism of action — release, not reuptake inhibition.&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;Weak reuptake inhibition&#039;&#039;&#039; at DAT and NET (secondary to release).&lt;br /&gt;
* &#039;&#039;&#039;MAO inhibition&#039;&#039;&#039; at higher concentrations, slowing presynaptic catabolism of monoamines.&lt;br /&gt;
* &#039;&#039;&#039;Serotonergic effects&#039;&#039;&#039; at high or supratherapeutic doses (relevant to overdose and serotonin syndrome risk).&lt;br /&gt;
&lt;br /&gt;
The net result is a robust increase in synaptic dopamine and norepinephrine in prefrontal cortex, striatum, and nucleus accumbens — underlying both therapeutic (attention, executive function, wakefulness) and reinforcing (euphoria, abuse liability) effects.&lt;br /&gt;
| interactions      = Minimal in practice. Caution with other psychostimulants, including caffeine. metabolized by 2D6, so relevant caution applies.&lt;br /&gt;
&amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details = [https://www.ncbi.nlm.nih.gov/books/NBK501307/ Category C]. Crosses the placenta. Prenatal amphetamine exposure has been associated with low birth weight, premature delivery, and neonatal withdrawal (agitation, dysphoria, lassitude). Long-term neurodevelopmental outcomes from prescribed therapeutic exposure are less clear and likely modest, but illicit-dose exposure is associated with significant developmental impact. Decision should be individualized; many patients defer ADHD treatment during pregnancy. Excreted in breast milk in clinically significant amounts — breastfeeding generally discouraged.&lt;br /&gt;
| monitoring        = * Baseline: cardiovascular history, weight/height, mental health history (especially for psychosis/bipolar/substance use risk), (optional) blood pressure, (optional) heart rate,&lt;br /&gt;
* At each visit: efficacy, side effects, general well-being&lt;br /&gt;
* Periodically reassess continued need; consider drug holidays to assess ongoing benefit&lt;br /&gt;
* Sleep quality (insomnia is dose-limiting)&lt;br /&gt;
| counseling        = * Take first thing in the morning to minimize insomnia; avoid (late) afternoon dosing.&lt;br /&gt;
* &#039;&#039;&#039;Do not crush, chew, or split Adderall XR or Mydayis capsules&#039;&#039;&#039; — disrupts the controlled-release mechanism. (Capsules may be opened and sprinkled on applesauce if needed.)&lt;br /&gt;
* Take with or without food; high-acid beverages (orange juice, vitamin C) may reduce absorption.&lt;br /&gt;
* Stay well-hydrated, especially in heat or during exercise.&lt;br /&gt;
* Eat regular meals despite appetite suppression.&lt;br /&gt;
* Report any chest pain, palpitations, severe agitation, hallucinations, or signs of poor circulation in extremities.&lt;br /&gt;
* Sudden discontinuation can cause a fatigue/depression &amp;quot;crash&amp;quot; — plan for it.&lt;br /&gt;
* Take caution: make increase bowel motility and increase risk of expelled fecal content.&lt;br /&gt;
| anecdotes         = &lt;br /&gt;
| seealso           = [[Dextroamphetamine]], [[Lisdexamfetamine]], [[Methylphenidate]], [[Dexmethylphenidate]], [[Modafinil]], [[Atomoxetine]], [[Methamphetamine]]&lt;br /&gt;
| references        = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Stimulants &amp;amp; Wake-Promoting Agents]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Sertraline&amp;diff=3347</id>
		<title>Sertraline</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Sertraline&amp;diff=3347"/>
		<updated>2026-05-14T15:14:58Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic           = Sertraline&lt;br /&gt;
| brand             = Zoloft, Lustral&lt;br /&gt;
| structure         = Sertraline.svg&lt;br /&gt;
| classes           = SSRI, Antidepressant, Anxiolytic&lt;br /&gt;
| mechanism         = SSRI; weak DRI&lt;br /&gt;
| uses              = Depression, anxiety disorders, OCD, PTSD, panic disorder&lt;br /&gt;
| formula           = C17H17Cl2N&lt;br /&gt;
| routes            = Oral&lt;br /&gt;
| onset             = 2–4 weeks for full effect&lt;br /&gt;
| duration          = &lt;br /&gt;
| halflife          = 26 hours (parent); norsertraline 62–104 hours&lt;br /&gt;
| bioavailability   = ~44%&lt;br /&gt;
| pregnancy         = Category C&lt;br /&gt;
| legal             = Rx-only&lt;br /&gt;
| intro             = &#039;&#039;&#039;Sertraline&#039;&#039;&#039; is a selective serotonin reuptake inhibitor (SSRI) commonly prescribed for depression, anxiety disorders, OCD, PTSD, and panic disorder. In the US, it is one of the [https://www.definitivehc.com/resources/healthcare-insights/top-antidepressants-by-prescription-volume most frequently utilized SSRIs at this time].&lt;br /&gt;
| pharmacokinetics  = Well-absorbed orally, ~44% bioavailability. Metabolized hepatically via CYP3A4/CYP2C19/CYP2D6 to N-desmethylsertraline (less active). Half-life ~26h; steady state in ~1 week.&lt;br /&gt;
| pharmacodynamics  = Highly selective inhibitor of the serotonin reuptake transporter (SERT). Mild dopamine reuptake inhibition at higher doses. Minimal affinity for muscarinic, histaminic, or adrenergic receptors — hence cleaner adverse effect profile than TCAs.&lt;br /&gt;
| indications       = * Major depressive disorder&lt;br /&gt;
* Generalized anxiety disorder&lt;br /&gt;
* Obsessive-compulsive disorder&lt;br /&gt;
* Post-traumatic stress disorder&lt;br /&gt;
* Panic disorder&lt;br /&gt;
* Premenstrual dysphoric disorder&lt;br /&gt;
| dosing            = Start 25–50 mg PO daily. Titrate by 25–50 mg every 1–2 weeks based on response. Typical effective dose 50–200 mg/day; max 200 mg/day.&lt;br /&gt;
| effects = &lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;mood-improvement&amp;quot;&amp;gt;Onset typically 2–4 weeks.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;anxiolysis&amp;quot;&amp;gt;Onset typically 2–4 weeks.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;ocd-improvement&amp;quot;&amp;gt;Delayed onset; full benefit often takes 4+ weeks.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;nausea&amp;quot;&amp;gt;Often improves over the first 1–2 weeks.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;diarrhea&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;sexual-dysfunction&amp;quot;&amp;gt;Decreased libido, delayed orgasm, anorgasmia. Can persist long-term in some patients (PSSD).&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;insomnia&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;somnolence&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;sweating&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;serotonin-syndrome&amp;quot;&amp;gt;Especially with other serotonergic agents (triptans, tramadol, MAOIs, linezolid).&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;qt-prolongation&amp;quot;&amp;gt;Dose-dependent; check ECG in cardiac risk.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;hyponatremia&amp;quot;&amp;gt;Especially in elderly patients.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;bleeding-risk&amp;quot;&amp;gt;Particularly with concurrent NSAIDs or anticoagulants.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;suicidality&amp;quot;&amp;gt;Black box warning in patients under 25; close monitoring in first 4 weeks.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;discontinuation-syndrome&amp;quot;&amp;gt;&amp;quot;Brain zaps,&amp;quot; dizziness, irritability, flu-like symptoms with abrupt cessation. Taper to avoid.&amp;lt;/effect&amp;gt;&lt;br /&gt;
| adverse           = Serotonin syndrome (especially with other serotonergic agents), QT prolongation at high doses, hyponatremia (SIADH, esp. elderly), bleeding risk, suicidality warning in young adults, discontinuation syndrome.&lt;br /&gt;
| interactions      = MAOIs (serotonin syndrome — contraindicated), triptans, tramadol, linezolid, lithium, NSAIDs/anticoagulants (bleeding), CYP2D6 substrates.&lt;br /&gt;
&amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details = Category C. SSRIs in third trimester associated with persistent pulmonary hypertension of the newborn (PPHN) and neonatal adaptation syndrome. Risk-benefit decision; sertraline often preferred in pregnancy among SSRIs.&lt;br /&gt;
| monitoring        = Mood/suicidality (especially first 4 weeks), sodium (elderly), QT in cardiac risk, response and side effects.&lt;br /&gt;
| counseling        = Take with or without food. Effect emerges over 2–4 weeks. Don&#039;t stop abruptly — taper to avoid withdrawal. Report serotonin-syndrome symptoms.&lt;br /&gt;
| anecdotes         = &lt;br /&gt;
| seealso           = [[Fluoxetine]], [[Paroxetine]], [[Citalopram]], [[Escitalopram]]&lt;br /&gt;
| references        = &lt;br /&gt;
}}&amp;lt;h2 id=&amp;quot;Pharmacokinetics&amp;quot;&amp;gt;Pharmacokinetics&amp;lt;/h2&amp;gt;&lt;br /&gt;
Well-absorbed orally, ~44% bioavailability. Metabolized hepatically via CYP3A4/CYP2C19/CYP2D6 to N-desmethylsertraline (less active). Half-life ~26h; steady state in ~1 week.&amp;lt;h2 id=&amp;quot;Pharmacodynamics&amp;quot;&amp;gt;Pharmacodynamics&amp;lt;/h2&amp;gt;&lt;br /&gt;
Highly selective inhibitor of the serotonin reuptake transporter (SERT). Mild dopamine reuptake inhibition at higher doses. Minimal affinity for muscarinic, histaminic, or adrenergic receptors — hence cleaner adverse effect profile than TCAs.&amp;lt;h2 id=&amp;quot;Indications&amp;quot;&amp;gt;Indications&amp;lt;/h2&amp;gt;&lt;br /&gt;
*Major depressive disorder&lt;br /&gt;
*Generalized anxiety disorder&lt;br /&gt;
*Obsessive-compulsive disorder&lt;br /&gt;
*Post-traumatic stress disorder&lt;br /&gt;
*Panic disorder&lt;br /&gt;
*Premenstrual dysphoric disorder&amp;lt;h2 id=&amp;quot;Dosing&amp;quot;&amp;gt;Dosing and titration&amp;lt;/h2&amp;gt;&lt;br /&gt;
Start 25–50 mg PO daily. Titrate by 25–50 mg every 1–2 weeks based on response. Typical effective dose 50–200 mg/day; max 200 mg/day.&amp;lt;h2 id=&amp;quot;Effects&amp;quot;&amp;gt;Effects&amp;lt;/h2&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&#039;&#039;Therapeutic:&#039;&#039; improved mood, reduced anxiety, fewer obsessive thoughts (delayed 2–4 weeks).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Common adverse:&#039;&#039; nausea, diarrhea, sexual dysfunction, insomnia, somnolence, sweating.&amp;lt;h2 id=&amp;quot;Adverse&amp;quot;&amp;gt;Adverse effects&amp;lt;/h2&amp;gt;&lt;br /&gt;
Serotonin syndrome (especially with other serotonergic agents), QT prolongation at high doses, hyponatremia (SIADH, esp. elderly), bleeding risk, suicidality warning in young adults, discontinuation syndrome.&amp;lt;h2 id=&amp;quot;Contraindications&amp;quot;&amp;gt;Contraindications&amp;lt;/h2&amp;gt;&lt;br /&gt;
MAOIs (within 14 days), pimozide, severe hepatic impairment. Caution: bipolar disorder (mood switching risk), seizure disorders.&amp;lt;h2 id=&amp;quot;Interactions&amp;quot;&amp;gt;Interactions&amp;lt;/h2&amp;gt;&lt;br /&gt;
MAOIs (serotonin syndrome — contraindicated), triptans, tramadol, linezolid, lithium, NSAIDs/anticoagulants (bleeding), CYP2D6 substrates.&amp;lt;h2 id=&amp;quot;Pregnancy&amp;quot;&amp;gt;Pregnancy and lactation&amp;lt;/h2&amp;gt;&lt;br /&gt;
Category C. SSRIs in third trimester associated with persistent pulmonary hypertension of the newborn (PPHN) and neonatal adaptation syndrome. Risk-benefit decision; sertraline often preferred in pregnancy among SSRIs.&amp;lt;h2 id=&amp;quot;Monitoring&amp;quot;&amp;gt;Monitoring&amp;lt;/h2&amp;gt;&lt;br /&gt;
Mood/suicidality (especially first 4 weeks), sodium (elderly), QT in cardiac risk, response and side effects.&amp;lt;h2 id=&amp;quot;Counseling&amp;quot;&amp;gt;Patient counseling&amp;lt;/h2&amp;gt;&lt;br /&gt;
Take with or without food. Effect emerges over 2–4 weeks. Don&#039;t stop abruptly — taper to avoid withdrawal. Report serotonin-syndrome symptoms.&amp;lt;h2 id=&amp;quot;SeeAlso&amp;quot;&amp;gt;See also&amp;lt;/h2&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
[[Fluoxetine]], [[Paroxetine]], [[Citalopram]], [[Escitalopram]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Antidepressants]]&lt;br /&gt;
[[Category:Selective Serotonin Reuptake Inhibitors (SSRIs)]]&lt;br /&gt;
[[Category:Medicines]]&lt;br /&gt;
&amp;lt;h2 id=&amp;quot;Pharmacokinetics&amp;quot;&amp;gt;Pharmacokinetics&amp;lt;/h2&amp;gt;&lt;br /&gt;
Well-absorbed orally, ~44% bioavailability. Metabolized hepatically via CYP3A4/CYP2C19/CYP2D6 to N-desmethylsertraline (less active). Half-life ~26h; steady state in ~1 week.&amp;lt;h2 id=&amp;quot;Pharmacodynamics&amp;quot;&amp;gt;Pharmacodynamics&amp;lt;/h2&amp;gt;&lt;br /&gt;
Highly selective inhibitor of the serotonin reuptake transporter (SERT). Mild dopamine reuptake inhibition at higher doses. Minimal affinity for muscarinic, histaminic, or adrenergic receptors — hence cleaner adverse effect profile than TCAs.&amp;lt;h2 id=&amp;quot;Indications&amp;quot;&amp;gt;Indications&amp;lt;/h2&amp;gt;&lt;br /&gt;
*Major depressive disorder&lt;br /&gt;
*Generalized anxiety disorder&lt;br /&gt;
*Obsessive-compulsive disorder&lt;br /&gt;
*Post-traumatic stress disorder&lt;br /&gt;
*Panic disorder&lt;br /&gt;
*Premenstrual dysphoric disorder&amp;lt;h2 id=&amp;quot;Dosing&amp;quot;&amp;gt;Dosing and titration&amp;lt;/h2&amp;gt;&lt;br /&gt;
Start 25–50 mg PO daily. Titrate by 25–50 mg every 1–2 weeks based on response. Typical effective dose 50–200 mg/day; max 200 mg/day.&amp;lt;h2 id=&amp;quot;Effects&amp;quot;&amp;gt;Effects&amp;lt;/h2&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&#039;&#039;Therapeutic:&#039;&#039; improved mood, reduced anxiety, fewer obsessive thoughts (delayed 2–4 weeks).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Common adverse:&#039;&#039; nausea, diarrhea, sexual dysfunction, insomnia, somnolence, sweating.&amp;lt;h2 id=&amp;quot;Adverse&amp;quot;&amp;gt;Adverse effects&amp;lt;/h2&amp;gt;&lt;br /&gt;
Serotonin syndrome (especially with other serotonergic agents), QT prolongation at high doses, hyponatremia (SIADH, esp. elderly), bleeding risk, suicidality warning in young adults, discontinuation syndrome.&amp;lt;h2 id=&amp;quot;Contraindications&amp;quot;&amp;gt;Contraindications&amp;lt;/h2&amp;gt;&lt;br /&gt;
MAOIs (within 14 days), pimozide, severe hepatic impairment. Caution: bipolar disorder (mood switching risk), seizure disorders.&amp;lt;h2 id=&amp;quot;Interactions&amp;quot;&amp;gt;Interactions&amp;lt;/h2&amp;gt;&lt;br /&gt;
MAOIs (serotonin syndrome — contraindicated), triptans, tramadol, linezolid, lithium, NSAIDs/anticoagulants (bleeding), CYP2D6 substrates.&amp;lt;h2 id=&amp;quot;Pregnancy&amp;quot;&amp;gt;Pregnancy and lactation&amp;lt;/h2&amp;gt;&lt;br /&gt;
Category C. SSRIs in third trimester associated with persistent pulmonary hypertension of the newborn (PPHN) and neonatal adaptation syndrome. Risk-benefit decision; sertraline often preferred in pregnancy among SSRIs.&amp;lt;h2 id=&amp;quot;Monitoring&amp;quot;&amp;gt;Monitoring&amp;lt;/h2&amp;gt;&lt;br /&gt;
Mood/suicidality (especially first 4 weeks), sodium (elderly), QT in cardiac risk, response and side effects.&amp;lt;h2 id=&amp;quot;Counseling&amp;quot;&amp;gt;Patient counseling&amp;lt;/h2&amp;gt;&lt;br /&gt;
Take with or without food. Effect emerges over 2–4 weeks. Don&#039;t stop abruptly — taper to avoid withdrawal. Report serotonin-syndrome symptoms.&amp;lt;h2 id=&amp;quot;SeeAlso&amp;quot;&amp;gt;See also&amp;lt;/h2&amp;gt;&amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
[[Fluoxetine]], [[Paroxetine]], [[Citalopram]], [[Escitalopram]]&lt;br /&gt;
[[Category:Medicines]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Fluoxetine&amp;diff=3346</id>
		<title>Fluoxetine</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Fluoxetine&amp;diff=3346"/>
		<updated>2026-05-14T15:14:58Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic           = Fluoxetine&lt;br /&gt;
| brand             = Prozac&lt;br /&gt;
| structure         = Fluoxwhite.svg&lt;br /&gt;
| classes           = SSRI, Anxiolytic, Antidepressant&lt;br /&gt;
| uses              = &amp;lt;vote slug=&amp;quot;anxiety-use&amp;quot;&amp;gt;Anxiety&amp;lt;/vote&amp;gt;, &amp;lt;vote slug=&amp;quot;premature-ejaculation-use&amp;quot;&amp;gt;Premature ejaculation&amp;lt;/vote&amp;gt;, &amp;lt;vote slug=&amp;quot;low-mood-use&amp;quot;&amp;gt;Low mood&amp;lt;/vote&amp;gt;&lt;br /&gt;
| starting_dose     = 10 mg&lt;br /&gt;
| preparations      = 10 mg, 20 mg, 40 mg caps&lt;br /&gt;
| fda_max           = 40 mg/d&lt;br /&gt;
| routes            = Oral&lt;br /&gt;
| onset             = &lt;br /&gt;
| duration          = Very long&lt;br /&gt;
| halflife          = 1–4 days (7–15 days for norfluoxetine)&lt;br /&gt;
| bioavailability   = 70–90% (oral)&lt;br /&gt;
| pregnancy         = Category C&amp;lt;ref name=&amp;quot;lactmed&amp;quot;&amp;gt;https://www.ncbi.nlm.nih.gov/books/NBK501186/&amp;lt;/ref&amp;gt;&lt;br /&gt;
| legal             = Rx-only in US&lt;br /&gt;
| mechanism         = TrkB/BDNF&amp;lt;ref name=&amp;quot;trkb&amp;quot;&amp;gt;https://pmc.ncbi.nlm.nih.gov/articles/PMC9666396/&amp;lt;/ref&amp;gt; &amp;lt;vote slug=&amp;quot;ssri-claim&amp;quot;&amp;gt;Fluoxetine is a selective serotonin reuptake inhibitor.&amp;lt;/vote&amp;gt;&lt;br /&gt;
| intro             = Fluoxetine was the first of a long line of SSRIs. It is notable for its extremely long half-life and relative lack of withdrawal syndrome. It can also be useful in helping taper and discontinue other SxRI medicines.&lt;br /&gt;
| indications       = &amp;lt;indication ref=&amp;quot;depression&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;anxiety-disorders&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Including generalized anxiety, panic, and social anxiety.&lt;br /&gt;
&amp;lt;/indication&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;panic&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;social-anxiety&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;ocd&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;indication ref=&amp;quot;ptsd&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Potentially.&lt;br /&gt;
&amp;lt;/indication&amp;gt;&lt;br /&gt;
| dosing            = &amp;lt;titration slug=&amp;quot;standard&amp;quot; author=&amp;quot;MDElliottMD&amp;quot; title=&amp;quot;Standard adult or child&amp;quot;&amp;gt;&lt;br /&gt;
Start no higher than 10 mg for the first dose. May increase by 10 mg every 2–12 weeks, or remain at 10 mg if the response is adequate, up to a typical starting maximum of 40 mg. Absolute max: 80 mg.&lt;br /&gt;
&amp;lt;/titration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;titration slug=&amp;quot;ocd&amp;quot; author=&amp;quot;MDElliottMD&amp;quot; title=&amp;quot;OCD&amp;quot;&amp;gt;&lt;br /&gt;
Start at 10 mg daily; increase by 10–20 mg every 2–6 weeks, up to 80 mg. OCD typically requires elevated doses (60–80 mg).&lt;br /&gt;
&amp;lt;/titration&amp;gt;&lt;br /&gt;
| effects           = &lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;anxiolysis&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Classically starting at 3–4 weeks and improving for another 8–12.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;delayed-ejaculation&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;mood-enhancement&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;nausea&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Common, often improves over 1–2 weeks.&amp;lt;/effect&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;decreased-libido&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;temporary-erectile-dysfunction&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
* &amp;lt;effect ref=&amp;quot;persistent-sexual-dysfunction&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;Historically [https://pmc.ncbi.nlm.nih.gov/articles/PMC11450419/ associated with SSRIs].&amp;lt;/effect&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;effect ref=&amp;quot;anorgasmia&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;/&amp;gt;&lt;br /&gt;
| pk_absorption     = 70–90%&amp;lt;ref name=&amp;quot;statpearls&amp;quot;&amp;gt;https://www.ncbi.nlm.nih.gov/books/NBK459223/&amp;lt;/ref&amp;gt; oral bioavailability.&lt;br /&gt;
| pk_distribution   = Fluoxetine has plasma protein binding of approximately 94.5%, bound to albumin and alpha-1 glycoprotein. Fluoxetine readily crosses the blood–brain barrier, with a brain-to-plasma ratio of 2.6:1 in humans. The volume of distribution (Vd) of fluoxetine and its metabolite ranges between 20 to 42 L/kg. Some studies report that fluoxetine has the maximum volume of distribution (Vd) of any SSRI (between 14 and 100 L/kg).&amp;lt;ref name=&amp;quot;statpearls&amp;quot;/&amp;gt;&lt;br /&gt;
| pk_metabolism     = Fluoxetine&#039;s active metabolite is norfluoxetine, produced when the cytochrome P450 enzyme (CYP2D6) acts on it. Prescribers must remember that fluoxetine has several drug-drug interactions due to its metabolism through the CYP2D6 isoenzyme. Additionally, norfluoxetine can have an inhibitory effect on CYP3A4. Fluoxetine has a half-life of 2 to 4 days, and its active metabolite norfluoxetine has a half-life of 7 to 9 days. Approximately 7% of individuals definitively exhibit poor metabolism of fluoxetine due to reduced activity of CYP2D6.&lt;br /&gt;
| pk_elimination    = &lt;br /&gt;
| pharmacodynamics  = &lt;br /&gt;
| interactions      = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details = &lt;br /&gt;
| monitoring        = None required&lt;br /&gt;
| counseling        = &lt;br /&gt;
| anecdotes         = &amp;lt;anecdote slug=&amp;quot;2026-05-12&amp;quot; perspective=&amp;quot;provider&amp;quot; author=&amp;quot;MDElliottMD&amp;quot;&amp;gt;&lt;br /&gt;
Fluoxetine is great for getting off other SxRIs! Especially venlafaxine and duloxetine.&lt;br /&gt;
&amp;lt;/anecdote&amp;gt;&lt;br /&gt;
| seealso           = [[Sertraline]], [[Duloxetine]]&lt;br /&gt;
| references        = &amp;lt;references/&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Selective Serotonin Reuptake Inhibitors (SSRIs)]]&lt;br /&gt;
[[Category:Antidepressants]]&lt;br /&gt;
[[Category:Medicines]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Acacia_confusa&amp;diff=3344</id>
		<title>Acacia confusa</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Acacia_confusa&amp;diff=3344"/>
		<updated>2026-05-14T15:07:20Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Acacia confusa&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Botanical&lt;br /&gt;
| mechanism          = DMT-containing plant used in psychedelic preparations&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=5-HTP&amp;diff=3343</id>
		<title>5-HTP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=5-HTP&amp;diff=3343"/>
		<updated>2026-05-14T15:07:20Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 5-HTP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Nootropic, Oneirogen&lt;br /&gt;
| mechanism          = Serotonin precursor; 5-hydroxytryptophan&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=RTI-111&amp;diff=3342</id>
		<title>RTI-111</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=RTI-111&amp;diff=3342"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = RTI-111&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Stimulant&lt;br /&gt;
| mechanism          = Dopamine reuptake inhibitor; tropane analogue&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=MCPP&amp;diff=3341</id>
		<title>MCPP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=MCPP&amp;diff=3341"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = mCPP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Piperazine&lt;br /&gt;
| mechanism          = 5-HT2C agonist; 5-HT2A antagonist; serotonin releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Nitromethaqualone&amp;diff=3340</id>
		<title>Nitromethaqualone</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Nitromethaqualone&amp;diff=3340"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Nitromethaqualone&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, GABAergic&lt;br /&gt;
| mechanism          = Methaqualone analogue; GABAA potentiator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=NM-2-AI&amp;diff=3339</id>
		<title>NM-2-AI</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=NM-2-AI&amp;diff=3339"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = NM-2-AI&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Stimulant&lt;br /&gt;
| mechanism          = N-methyl analogue of 2-AI&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=2-AI&amp;diff=3338</id>
		<title>2-AI</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=2-AI&amp;diff=3338"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 2-AI&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Stimulant&lt;br /&gt;
| mechanism          = Alpha-methylated amphetamine analogue; norepinephrine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Pyrazolam&amp;diff=3337</id>
		<title>Pyrazolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Pyrazolam&amp;diff=3337"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Pyrazolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Anxiolytic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator; low sedation&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Nifoxipam&amp;diff=3336</id>
		<title>Nifoxipam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Nifoxipam&amp;diff=3336"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Nifoxipam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Metizolam&amp;diff=3335</id>
		<title>Metizolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Metizolam&amp;diff=3335"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Metizolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Thienodiazepine, Anxiolytic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Flunitrazolam&amp;diff=3334</id>
		<title>Flunitrazolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Flunitrazolam&amp;diff=3334"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Flunitrazolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Flubromazolam&amp;diff=3333</id>
		<title>Flubromazolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Flubromazolam&amp;diff=3333"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Flubromazolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = Extremely potent GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Flubromazepam&amp;diff=3332</id>
		<title>Flubromazepam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Flubromazepam&amp;diff=3332"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Flubromazepam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator; very long half-life&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Flualprazolam&amp;diff=3331</id>
		<title>Flualprazolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Flualprazolam&amp;diff=3331"/>
		<updated>2026-05-14T15:07:19Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Flualprazolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Etizolam&amp;diff=3330</id>
		<title>Etizolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Etizolam&amp;diff=3330"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Etizolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Thienodiazepine, Anxiolytic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Deschloroetizolam&amp;diff=3329</id>
		<title>Deschloroetizolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Deschloroetizolam&amp;diff=3329"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Deschloroetizolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Thienodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Diclazepam&amp;diff=3328</id>
		<title>Diclazepam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Diclazepam&amp;diff=3328"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Diclazepam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Clonazolam&amp;diff=3327</id>
		<title>Clonazolam</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Clonazolam&amp;diff=3327"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Clonazolam&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Benzodiazepine, Sedative-Hypnotic&lt;br /&gt;
| mechanism          = GABAA positive allosteric modulator&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Benzodiazepines]]&lt;br /&gt;
[[Category:Sedative-Hypnotics]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=O-PCE&amp;diff=3326</id>
		<title>O-PCE</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=O-PCE&amp;diff=3326"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = O-PCE&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Methoxetamine&amp;diff=3325</id>
		<title>Methoxetamine</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Methoxetamine&amp;diff=3325"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Methoxetamine&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; SERT inhibitor; sigma-1 agonist&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Eticyclidine&amp;diff=3324</id>
		<title>Eticyclidine</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Eticyclidine&amp;diff=3324"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Eticyclidine&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; more stimulating than PCP&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Deschloroketamine&amp;diff=3323</id>
		<title>Deschloroketamine</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Deschloroketamine&amp;diff=3323"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Deschloroketamine&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; ketamine analogue&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=4-MeO-PCP&amp;diff=3322</id>
		<title>4-MeO-PCP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=4-MeO-PCP&amp;diff=3322"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 4-MeO-PCP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3-MeO-PCP&amp;diff=3321</id>
		<title>3-MeO-PCP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3-MeO-PCP&amp;diff=3321"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3-MeO-PCP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; sigma receptor agonist; dopaminergic&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3-MeO-PCE&amp;diff=3320</id>
		<title>3-MeO-PCE</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3-MeO-PCE&amp;diff=3320"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3-MeO-PCE&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; sigma receptor agonist&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3-HO-PCP&amp;diff=3319</id>
		<title>3-HO-PCP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3-HO-PCP&amp;diff=3319"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3-HO-PCP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; potent opioid agonist&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3-HO-PCE&amp;diff=3318</id>
		<title>3-HO-PCE</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3-HO-PCE&amp;diff=3318"/>
		<updated>2026-05-14T15:07:18Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3-HO-PCE&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; opioid agonist&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=2-FDCK&amp;diff=3317</id>
		<title>2-FDCK</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=2-FDCK&amp;diff=3317"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 2-FDCK&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Dissociative&lt;br /&gt;
| mechanism          = NMDA antagonist; fluorinated ketamine analogue&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Arylcyclohexylamines]]&lt;br /&gt;
[[Category:Dissociatives]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Methylnaphthidate&amp;diff=3316</id>
		<title>Methylnaphthidate</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Methylnaphthidate&amp;diff=3316"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Methylnaphthidate&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Phenidate, Stimulant&lt;br /&gt;
| mechanism          = Dopamine/norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Methylphenidates (Phenidates)]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Isopropylphenidate&amp;diff=3315</id>
		<title>Isopropylphenidate</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Isopropylphenidate&amp;diff=3315"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Isopropylphenidate&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Phenidate, Stimulant&lt;br /&gt;
| mechanism          = Dopamine/norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Methylphenidates (Phenidates)]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Ethylphenidate&amp;diff=3314</id>
		<title>Ethylphenidate</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Ethylphenidate&amp;diff=3314"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Ethylphenidate&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Phenidate, Stimulant&lt;br /&gt;
| mechanism          = Dopamine/norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Methylphenidates (Phenidates)]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=4F-MPH&amp;diff=3313</id>
		<title>4F-MPH</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=4F-MPH&amp;diff=3313"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 4F-MPH&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Phenidate, Stimulant&lt;br /&gt;
| mechanism          = Dopamine/norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Methylphenidates (Phenidates)]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=4F-EPH&amp;diff=3312</id>
		<title>4F-EPH</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=4F-EPH&amp;diff=3312"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 4F-EPH&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Phenidate, Stimulant&lt;br /&gt;
| mechanism          = Dopamine/norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Methylphenidates (Phenidates)]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3,4-CTMP&amp;diff=3311</id>
		<title>3,4-CTMP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3,4-CTMP&amp;diff=3311"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3,4-CTMP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Phenidate, Stimulant&lt;br /&gt;
| mechanism          = Potent dopamine/norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Methylphenidates (Phenidates)]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=4-FMA&amp;diff=3310</id>
		<title>4-FMA</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=4-FMA&amp;diff=3310"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 4-FMA&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Amphetamine, Stimulant&lt;br /&gt;
| mechanism          = Monoamine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=4-FA&amp;diff=3309</id>
		<title>4-FA</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=4-FA&amp;diff=3309"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 4-FA&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Amphetamine, Stimulant, Empathogen&lt;br /&gt;
| mechanism          = Monoamine releasing agent; serotonergic at higher doses&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3-FMA&amp;diff=3308</id>
		<title>3-FMA</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3-FMA&amp;diff=3308"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3-FMA&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Amphetamine, Stimulant&lt;br /&gt;
| mechanism          = Monoamine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=3-FA&amp;diff=3307</id>
		<title>3-FA</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=3-FA&amp;diff=3307"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 3-FA&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Amphetamine, Stimulant&lt;br /&gt;
| mechanism          = Monoamine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=2-FMA&amp;diff=3306</id>
		<title>2-FMA</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=2-FMA&amp;diff=3306"/>
		<updated>2026-05-14T15:07:17Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 2-FMA&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Amphetamine, Stimulant&lt;br /&gt;
| mechanism          = Monoamine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=2-FA&amp;diff=3305</id>
		<title>2-FA</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=2-FA&amp;diff=3305"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = 2-FA&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Amphetamine, Stimulant&lt;br /&gt;
| mechanism          = Monoamine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Amphetamines]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=MDPV&amp;diff=3304</id>
		<title>MDPV</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=MDPV&amp;diff=3304"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = MDPV&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Pyrrolidinophenone, Stimulant&lt;br /&gt;
| mechanism          = Potent dopamine and norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Cathinones]]&lt;br /&gt;
[[Category:Pyrrolidinophenones]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Alpha-PVP&amp;diff=3303</id>
		<title>Alpha-PVP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Alpha-PVP&amp;diff=3303"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = alpha-PVP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Pyrrolidinophenone, Stimulant&lt;br /&gt;
| mechanism          = Dopamine and norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Cathinones]]&lt;br /&gt;
[[Category:Pyrrolidinophenones]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Alpha-PHP&amp;diff=3302</id>
		<title>Alpha-PHP</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Alpha-PHP&amp;diff=3302"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = alpha-PHP&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Pyrrolidinophenone, Stimulant&lt;br /&gt;
| mechanism          = Dopamine and norepinephrine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Cathinones]]&lt;br /&gt;
[[Category:Pyrrolidinophenones]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=Pentedrone&amp;diff=3301</id>
		<title>Pentedrone</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=Pentedrone&amp;diff=3301"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = Pentedrone&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Cathinone, Stimulant&lt;br /&gt;
| mechanism          = Norepinephrine/dopamine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Cathinones]]&lt;br /&gt;
[[Category:Pyrrolidinophenones]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=N-Ethylpentedrone&amp;diff=3300</id>
		<title>N-Ethylpentedrone</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=N-Ethylpentedrone&amp;diff=3300"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = N-Ethylpentedrone&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Cathinone, Stimulant&lt;br /&gt;
| mechanism          = Cathinone analogue; monoamine reuptake inhibitor&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Cathinones]]&lt;br /&gt;
[[Category:Pyrrolidinophenones]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
	<entry>
		<id>https://pharmacopedia.wiki/index.php?title=N-Ethylhexedrone&amp;diff=3299</id>
		<title>N-Ethylhexedrone</title>
		<link rel="alternate" type="text/html" href="https://pharmacopedia.wiki/index.php?title=N-Ethylhexedrone&amp;diff=3299"/>
		<updated>2026-05-14T15:07:16Z</updated>

		<summary type="html">&lt;p&gt;MediaWiki default: Assign pharmacological categories from List_of_CNS-active_medicines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{MedTemplate&lt;br /&gt;
| generic            = N-Ethylhexedrone&lt;br /&gt;
| brand              = &lt;br /&gt;
| structure          = &lt;br /&gt;
| classes            = Research material, Cathinone, Stimulant&lt;br /&gt;
| mechanism          = Norepinephrine/dopamine releasing agent&lt;br /&gt;
| uses               = &lt;br /&gt;
| starting_dose      = &lt;br /&gt;
| preparations       = &lt;br /&gt;
| fda_max           = &lt;br /&gt;
| routes             = &lt;br /&gt;
| onset              = &lt;br /&gt;
| duration           = &lt;br /&gt;
| halflife           = &lt;br /&gt;
| bioavailability    = &lt;br /&gt;
| pregnancy          = &lt;br /&gt;
| legal              = &lt;br /&gt;
| intro              = &lt;br /&gt;
| pharmacokinetics   = &lt;br /&gt;
| pharmacodynamics   = &lt;br /&gt;
| indications        = &lt;br /&gt;
| dosing             = &lt;br /&gt;
| effects            = &lt;br /&gt;
| interactions       = &amp;lt;pharmaInteractions/&amp;gt;&lt;br /&gt;
| pregnancy_details  = &lt;br /&gt;
| monitoring         = &lt;br /&gt;
| counseling         = &lt;br /&gt;
| anecdotes          = &lt;br /&gt;
| seealso            = &lt;br /&gt;
| references         = &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Research Materials]]&lt;br /&gt;
[[Category:Cathinones]]&lt;br /&gt;
[[Category:Pyrrolidinophenones]]&lt;br /&gt;
[[Category:Psychostimulants]]&lt;/div&gt;</summary>
		<author><name>MediaWiki default</name></author>
	</entry>
</feed>