BUNDLE - 3 X500 Bottles
– RevGenetics
Ir directamente al contenido
icon-search
Cerrar (esc)
BUNDLE - 3 X500 Bottles
*These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.
Equivalent Dosages
Species
Equivalent Dose (mg/kg)
Total Amount / Day (mg)
Method
* Research reference only. Uses FDA Km factors: Human 37, Dog 20, Rat 6, Mouse 3. Estimated Km for Worm 1000, Fly 500. Conversion: DoseB = DoseA × (KmA / KmB ). Total mg computed from assumed weights above. © 2025 RevGenetics, LLC. Unauthorized reproduction prohibited (ID: RG-CALC-20250907).
/* Universal fallback (v2): force meaningful titles on ALL elements
- Runs on DOMContentLoaded, after load, and watches the DOM with MutationObserver
- Skips anchors that already have a non-trivial title
- Normalizes special cases (#, #MainContent, tel:, mailto:)
- Includes a wide TITLE_MAP for common RevGenetics paths
Paste this near the end of layout/theme.liquid, just before
*/
(function(){
var RUN_ATTR = 'data-title-locked';
function humanize(slug){
if(!slug) return '';
return slug
.replace(/[-_]+/g,' ')
.replace(/\s+/g,' ')
.trim()
.replace(/\b[a-z]/g, function(s){ return s.toUpperCase(); });
}
// Known paths on revgenetics.com
var TITLE_MAP = {
'/': 'Home',
'/cart': 'Cart',
'/search': 'Search',
'/a/news/': 'News',
'/a/news': 'News',
'/a/subscriptions/login': 'Subscription Login',
'/apps/trackingmore': 'Order Tracking',
'/blogs/news': 'News',
'/collections/advanced-nad-products': 'Advanced NAD Products',
'/collections/advanced-nmn': 'Advanced NMN',
'/collections/curcumin': 'Curcumin',
'/collections/discontinued': 'Discontinued',
'/collections/longevity-supplements': 'Longevity Supplements',
'/collections/resveratrol-supplements': 'Resveratrol Supplements',
'/collections/senolytics-supplements': 'Senolytics Supplements',
'/collections/spermidine': 'Spermidine',
'/pages/30-day-money-back-guarantee': '30-Day Money-Back Guarantee',
'/pages/about-us': 'About RevGenetics',
'/pages/contact-us': 'Contact RevGenetics',
'/pages/privacy': 'Privacy Policy',
'/pages/reviews': 'Customer Reviews',
'/pages/terms': 'Terms of Service',
'/policies/refund-policy': 'Refund Policy',
'/pages/get-manufacturer-discounts': 'Manufacturer Discounts',
'/pages/metacurcumin-277x-super-curcumin': 'MetaCurcumin 277× Super Curcumin'
};
// Simple host-based map for social, etc.
var HOST_MAP = {
'facebook.com': 'RevGenetics on Facebook',
'www.facebook.com': 'RevGenetics on Facebook',
'twitter.com': 'RevGenetics on X',
'x.com': 'RevGenetics on X',
'www.twitter.com': 'RevGenetics on X',
'www.x.com': 'RevGenetics on X',
'instagram.com': 'RevGenetics on Instagram',
'www.instagram.com': 'RevGenetics on Instagram',
'www.youtube.com': 'RevGenetics on YouTube',
'youtube.com': 'RevGenetics on YouTube',
'www.tiktok.com': 'RevGenetics on TikTok',
'tiktok.com': 'RevGenetics on TikTok',
'web.archive.org': 'Wayback Snapshot',
'shopify.com': 'Powered by Shopify'
};
function bestLabel(a){
if(!a) return '';
// aria-label wins
var aria = a.getAttribute('aria-label');
if(aria && aria.trim()) return aria.trim();
// visible text next
var text = (a.textContent || '').replace(/\s+/g,' ').trim();
if(text) return text;
var href = a.getAttribute('href') || '';
if(!href) return '';
// fragment links
if(href.charAt(0) === '#'){
if(href === '#MainContent') return 'Skip to main content';
return 'Skip link';
}
// tel/mailto
if(href.indexOf('tel:') === 0) return 'Call RevGenetics';
if(href.indexOf('mailto:') === 0) return 'Email RevGenetics';
try{
var url = href.startsWith('http') ? new URL(href) : new URL(href, location.origin);
var host = url.hostname.replace(/^www\./,'');
if(HOST_MAP[host]) return HOST_MAP[host];
var path = url.pathname;
if(TITLE_MAP[path]) return TITLE_MAP[path];
if(TITLE_MAP[path + '/']) return TITLE_MAP[path + '/'];
var last = path.split('/').filter(Boolean).pop() || '';
return humanize(last) || url.hostname.replace(/^www\./,'');
}catch(e){
return '';
}
}
function needsTitle(a){
if(!a || a.hasAttribute(RUN_ATTR)) return false;
var t = a.getAttribute('title');
// Missing or trivial titles should be fixed
if(!t || !t.trim() || t === '/' || t === '#') return true;
return false;
}
function setTitle(a){
if(!needsTitle(a)) return;
var label = bestLabel(a);
if(label){
a.setAttribute('title', label);
if(!a.getAttribute('aria-label')){
a.setAttribute('aria-label', label);
}
a.setAttribute(RUN_ATTR, '1');
}
}
function scan(root){
var links = (root || document).querySelectorAll('a');
for(var i=0;i