CINXE.COM

Terms, Cookies, & Privacy | Lexico.com

<!DOCTYPE html><html lang="en" data-theme="light"><!--[if lt IE 7]><html class="no-js ie6 oldie" lang="en"></html><![endif]--><!--[if IE 7]><html class="no-js ie7 oldie" lang="en"></html><![endif]--><!--[if IE 8]><html class="no-js ie8 oldie" lang="en"></html><![endif]--><!--[if gte IE 8]><html class="no-js" lang="en"></html><![endif]--><head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.lexico.com/cookies-terms-privacy","20211115165426","https://web.archive.org/","web","/_static/", "1636995266"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <title>Terms, Cookies, &amp; Privacy | Lexico.com</title> <meta name="description" content="Terms, Cookies, &amp; PrivacyTERMS OF SERVICEAGREEMENT AND GENERAL TERMS OF USELexico.com is owned and operated by Dictionary..."> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:title" content="Terms, Cookies, &amp; Privacy | Lexico.com"> <meta name="twitter:description" content="Terms, Cookies, &amp;amp; PrivacyTERMS OF SERVICEAGREEMENT AND GENERAL TERMS OF USELexico.com is owned and operated by Dictionary..."> <meta name="twitter:image" content="https://web.archive.org/web/20211115165426im_/https://www.lexico.com/lexico-logo.png"> <meta property="og:title" content="Terms, Cookies, &amp; Privacy | Lexico.com"> <meta property="og:description" content="Terms, Cookies, &amp;amp; PrivacyTERMS OF SERVICEAGREEMENT AND GENERAL TERMS OF USELexico.com is owned and operated by Dictionary..."> <meta property="og:type" content="website"> <meta property="og:url" content="https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy"> <meta property="og:locale" content="en_GB"> <meta property="og:site_name" content="Lexico Dictionaries | English"> <meta property="og:image" content="https://web.archive.org/web/20211115165426im_/https://www.lexico.com/lexico-logo.png"><meta charset="utf-8"/><meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/><meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/><meta itemprop="copyrightHolder" content="Lexico Dictionaries"/><meta itemprop="copyrightYear" content="2021"/><meta itemprop="inLanguage" content="en"/><meta itemprop="publisher" content="Lexico Dictionaries"/><link href="https://www.lexico.com" rel="publisher"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/en_dictionary.xml" rel="search" title="Lexico UK Dictionary search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/noad.xml" rel="search" title="Lexico US Dictionary search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/thesaurus.xml" rel="search" title="Lexico Synonyms search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/en_grammar.xml" rel="search" title="Lexico English Grammar search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/es_dictionary.xml" rel="search" title="Lexico Spanish search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/to_english.xml" rel="search" title="Lexico Spanish - English search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/from_english.xml" rel="search" title="Lexico English - Spanish search" type="application/opensearchdescription+xml"/><link href="/web/20211115165426/https://www.lexico.com/opensearch/es_grammar.xml" rel="search" title="Lexico Spanish Grammar search" type="application/opensearchdescription+xml"/><script>/** * Copyright 2016 Google Inc. All Rights Reserved. * * Licensed under the W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE. * * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document * */ (function() { 'use strict'; // Exit early if we're not running in a browser. if (typeof window !== 'object') { return; } // Exit early if all IntersectionObserver and IntersectionObserverEntry // features are natively supported. if ('IntersectionObserver' in window && 'IntersectionObserverEntry' in window && 'intersectionRatio' in window.IntersectionObserverEntry.prototype) { // Minimal polyfill for Edge 15's lack of `isIntersecting` // See: https://github.com/w3c/IntersectionObserver/issues/211 if (!('isIntersecting' in window.IntersectionObserverEntry.prototype)) { Object.defineProperty(window.IntersectionObserverEntry.prototype, 'isIntersecting', { get: function () { return this.intersectionRatio > 0; } }); } return; } /** * Returns the embedding frame element, if any. * @param {!Document} doc * @return {!Element} */ function getFrameElement(doc) { try { return doc.defaultView && doc.defaultView.frameElement || null; } catch (e) { // Ignore the error. return null; } } /** * A local reference to the root document. */ var document = (function(startDoc) { var doc = startDoc; var frame = getFrameElement(doc); while (frame) { doc = frame.ownerDocument; frame = getFrameElement(doc); } return doc; })(window.document); /** * An IntersectionObserver registry. This registry exists to hold a strong * reference to IntersectionObserver instances currently observing a target * element. Without this registry, instances without another reference may be * garbage collected. */ var registry = []; /** * The signal updater for cross-origin intersection. When not null, it means * that the polyfill is configured to work in a cross-origin mode. * @type {function(DOMRect|ClientRect, DOMRect|ClientRect)} */ var crossOriginUpdater = null; /** * The current cross-origin intersection. Only used in the cross-origin mode. * @type {DOMRect|ClientRect} */ var crossOriginRect = null; /** * Creates the global IntersectionObserverEntry constructor. * https://w3c.github.io/IntersectionObserver/#intersection-observer-entry * @param {Object} entry A dictionary of instance properties. * @constructor */ function IntersectionObserverEntry(entry) { this.time = entry.time; this.target = entry.target; this.rootBounds = ensureDOMRect(entry.rootBounds); this.boundingClientRect = ensureDOMRect(entry.boundingClientRect); this.intersectionRect = ensureDOMRect(entry.intersectionRect || getEmptyRect()); this.isIntersecting = !!entry.intersectionRect; // Calculates the intersection ratio. var targetRect = this.boundingClientRect; var targetArea = targetRect.width * targetRect.height; var intersectionRect = this.intersectionRect; var intersectionArea = intersectionRect.width * intersectionRect.height; // Sets intersection ratio. if (targetArea) { // Round the intersection ratio to avoid floating point math issues: // https://github.com/w3c/IntersectionObserver/issues/324 this.intersectionRatio = Number((intersectionArea / targetArea).toFixed(4)); } else { // If area is zero and is intersecting, sets to 1, otherwise to 0 this.intersectionRatio = this.isIntersecting ? 1 : 0; } } /** * Creates the global IntersectionObserver constructor. * https://w3c.github.io/IntersectionObserver/#intersection-observer-interface * @param {Function} callback The function to be invoked after intersection * changes have queued. The function is not invoked if the queue has * been emptied by calling the `takeRecords` method. * @param {Object=} opt_options Optional configuration options. * @constructor */ function IntersectionObserver(callback, opt_options) { var options = opt_options || {}; if (typeof callback != 'function') { throw new Error('callback must be a function'); } if ( options.root && options.root.nodeType != 1 && options.root.nodeType != 9 ) { throw new Error('root must be a Document or Element'); } // Binds and throttles `this._checkForIntersections`. this._checkForIntersections = throttle( this._checkForIntersections.bind(this), this.THROTTLE_TIMEOUT); // Private properties. this._callback = callback; this._observationTargets = []; this._queuedEntries = []; this._rootMarginValues = this._parseRootMargin(options.rootMargin); // Public properties. this.thresholds = this._initThresholds(options.threshold); this.root = options.root || null; this.rootMargin = this._rootMarginValues.map(function(margin) { return margin.value + margin.unit; }).join(' '); /** @private @const {!Array<!Document>} */ this._monitoringDocuments = []; /** @private @const {!Array<function()>} */ this._monitoringUnsubscribes = []; } /** * The minimum interval within which the document will be checked for * intersection changes. */ IntersectionObserver.prototype.THROTTLE_TIMEOUT = 100; /** * The frequency in which the polyfill polls for intersection changes. * this can be updated on a per instance basis and must be set prior to * calling `observe` on the first target. */ IntersectionObserver.prototype.POLL_INTERVAL = null; /** * Use a mutation observer on the root element * to detect intersection changes. */ IntersectionObserver.prototype.USE_MUTATION_OBSERVER = true; /** * Sets up the polyfill in the cross-origin mode. The result is the * updater function that accepts two arguments: `boundingClientRect` and * `intersectionRect` - just as these fields would be available to the * parent via `IntersectionObserverEntry`. This function should be called * each time the iframe receives intersection information from the parent * window, e.g. via messaging. * @return {function(DOMRect|ClientRect, DOMRect|ClientRect)} */ IntersectionObserver._setupCrossOriginUpdater = function() { if (!crossOriginUpdater) { /** * @param {DOMRect|ClientRect} boundingClientRect * @param {DOMRect|ClientRect} intersectionRect */ crossOriginUpdater = function(boundingClientRect, intersectionRect) { if (!boundingClientRect || !intersectionRect) { crossOriginRect = getEmptyRect(); } else { crossOriginRect = convertFromParentRect(boundingClientRect, intersectionRect); } registry.forEach(function(observer) { observer._checkForIntersections(); }); }; } return crossOriginUpdater; }; /** * Resets the cross-origin mode. */ IntersectionObserver._resetCrossOriginUpdater = function() { crossOriginUpdater = null; crossOriginRect = null; }; /** * Starts observing a target element for intersection changes based on * the thresholds values. * @param {Element} target The DOM element to observe. */ IntersectionObserver.prototype.observe = function(target) { var isTargetAlreadyObserved = this._observationTargets.some(function(item) { return item.element == target; }); if (isTargetAlreadyObserved) { return; } if (!(target && target.nodeType == 1)) { throw new Error('target must be an Element'); } this._registerInstance(); this._observationTargets.push({element: target, entry: null}); this._monitorIntersections(target.ownerDocument); this._checkForIntersections(); }; /** * Stops observing a target element for intersection changes. * @param {Element} target The DOM element to observe. */ IntersectionObserver.prototype.unobserve = function(target) { this._observationTargets = this._observationTargets.filter(function(item) { return item.element != target; }); this._unmonitorIntersections(target.ownerDocument); if (this._observationTargets.length == 0) { this._unregisterInstance(); } }; /** * Stops observing all target elements for intersection changes. */ IntersectionObserver.prototype.disconnect = function() { this._observationTargets = []; this._unmonitorAllIntersections(); this._unregisterInstance(); }; /** * Returns any queue entries that have not yet been reported to the * callback and clears the queue. This can be used in conjunction with the * callback to obtain the absolute most up-to-date intersection information. * @return {Array} The currently queued entries. */ IntersectionObserver.prototype.takeRecords = function() { var records = this._queuedEntries.slice(); this._queuedEntries = []; return records; }; /** * Accepts the threshold value from the user configuration object and * returns a sorted array of unique threshold values. If a value is not * between 0 and 1 and error is thrown. * @private * @param {Array|number=} opt_threshold An optional threshold value or * a list of threshold values, defaulting to [0]. * @return {Array} A sorted list of unique and valid threshold values. */ IntersectionObserver.prototype._initThresholds = function(opt_threshold) { var threshold = opt_threshold || [0]; if (!Array.isArray(threshold)) threshold = [threshold]; return threshold.sort().filter(function(t, i, a) { if (typeof t != 'number' || isNaN(t) || t < 0 || t > 1) { throw new Error('threshold must be a number between 0 and 1 inclusively'); } return t !== a[i - 1]; }); }; /** * Accepts the rootMargin value from the user configuration object * and returns an array of the four margin values as an object containing * the value and unit properties. If any of the values are not properly * formatted or use a unit other than px or %, and error is thrown. * @private * @param {string=} opt_rootMargin An optional rootMargin value, * defaulting to '0px'. * @return {Array<Object>} An array of margin objects with the keys * value and unit. */ IntersectionObserver.prototype._parseRootMargin = function(opt_rootMargin) { var marginString = opt_rootMargin || '0px'; var margins = marginString.split(/\s+/).map(function(margin) { var parts = /^(-?\d*\.?\d+)(px|%)$/.exec(margin); if (!parts) { throw new Error('rootMargin must be specified in pixels or percent'); } return {value: parseFloat(parts[1]), unit: parts[2]}; }); // Handles shorthand. margins[1] = margins[1] || margins[0]; margins[2] = margins[2] || margins[0]; margins[3] = margins[3] || margins[1]; return margins; }; /** * Starts polling for intersection changes if the polling is not already * happening, and if the page's visibility state is visible. * @param {!Document} doc * @private */ IntersectionObserver.prototype._monitorIntersections = function(doc) { var win = doc.defaultView; if (!win) { // Already destroyed. return; } if (this._monitoringDocuments.indexOf(doc) != -1) { // Already monitoring. return; } // Private state for monitoring. var callback = this._checkForIntersections; var monitoringInterval = null; var domObserver = null; // If a poll interval is set, use polling instead of listening to // resize and scroll events or DOM mutations. if (this.POLL_INTERVAL) { monitoringInterval = win.setInterval(callback, this.POLL_INTERVAL); } else { addEvent(win, 'resize', callback, true); addEvent(doc, 'scroll', callback, true); if (this.USE_MUTATION_OBSERVER && 'MutationObserver' in win) { domObserver = new win.MutationObserver(callback); domObserver.observe(doc, { attributes: true, childList: true, characterData: true, subtree: true }); } } this._monitoringDocuments.push(doc); this._monitoringUnsubscribes.push(function() { // Get the window object again. When a friendly iframe is destroyed, it // will be null. var win = doc.defaultView; if (win) { if (monitoringInterval) { win.clearInterval(monitoringInterval); } removeEvent(win, 'resize', callback, true); } removeEvent(doc, 'scroll', callback, true); if (domObserver) { domObserver.disconnect(); } }); // Also monitor the parent. var rootDoc = (this.root && (this.root.ownerDocument || this.root)) || document; if (doc != rootDoc) { var frame = getFrameElement(doc); if (frame) { this._monitorIntersections(frame.ownerDocument); } } }; /** * Stops polling for intersection changes. * @param {!Document} doc * @private */ IntersectionObserver.prototype._unmonitorIntersections = function(doc) { var index = this._monitoringDocuments.indexOf(doc); if (index == -1) { return; } var rootDoc = (this.root && (this.root.ownerDocument || this.root)) || document; // Check if any dependent targets are still remaining. var hasDependentTargets = this._observationTargets.some(function(item) { var itemDoc = item.element.ownerDocument; // Target is in this context. if (itemDoc == doc) { return true; } // Target is nested in this context. while (itemDoc && itemDoc != rootDoc) { var frame = getFrameElement(itemDoc); itemDoc = frame && frame.ownerDocument; if (itemDoc == doc) { return true; } } return false; }); if (hasDependentTargets) { return; } // Unsubscribe. var unsubscribe = this._monitoringUnsubscribes[index]; this._monitoringDocuments.splice(index, 1); this._monitoringUnsubscribes.splice(index, 1); unsubscribe(); // Also unmonitor the parent. if (doc != rootDoc) { var frame = getFrameElement(doc); if (frame) { this._unmonitorIntersections(frame.ownerDocument); } } }; /** * Stops polling for intersection changes. * @param {!Document} doc * @private */ IntersectionObserver.prototype._unmonitorAllIntersections = function() { var unsubscribes = this._monitoringUnsubscribes.slice(0); this._monitoringDocuments.length = 0; this._monitoringUnsubscribes.length = 0; for (var i = 0; i < unsubscribes.length; i++) { unsubscribes[i](); } }; /** * Scans each observation target for intersection changes and adds them * to the internal entries queue. If new entries are found, it * schedules the callback to be invoked. * @private */ IntersectionObserver.prototype._checkForIntersections = function() { if (!this.root && crossOriginUpdater && !crossOriginRect) { // Cross origin monitoring, but no initial data available yet. return; } var rootIsInDom = this._rootIsInDom(); var rootRect = rootIsInDom ? this._getRootRect() : getEmptyRect(); this._observationTargets.forEach(function(item) { var target = item.element; var targetRect = getBoundingClientRect(target); var rootContainsTarget = this._rootContainsTarget(target); var oldEntry = item.entry; var intersectionRect = rootIsInDom && rootContainsTarget && this._computeTargetAndRootIntersection(target, targetRect, rootRect); var rootBounds = null; if (!this._rootContainsTarget(target)) { rootBounds = getEmptyRect(); } else if (!crossOriginUpdater || this.root) { rootBounds = rootRect; } var newEntry = item.entry = new IntersectionObserverEntry({ time: now(), target: target, boundingClientRect: targetRect, rootBounds: rootBounds, intersectionRect: intersectionRect }); if (!oldEntry) { this._queuedEntries.push(newEntry); } else if (rootIsInDom && rootContainsTarget) { // If the new entry intersection ratio has crossed any of the // thresholds, add a new entry. if (this._hasCrossedThreshold(oldEntry, newEntry)) { this._queuedEntries.push(newEntry); } } else { // If the root is not in the DOM or target is not contained within // root but the previous entry for this target had an intersection, // add a new record indicating removal. if (oldEntry && oldEntry.isIntersecting) { this._queuedEntries.push(newEntry); } } }, this); if (this._queuedEntries.length) { this._callback(this.takeRecords(), this); } }; /** * Accepts a target and root rect computes the intersection between then * following the algorithm in the spec. * TODO(philipwalton): at this time clip-path is not considered. * https://w3c.github.io/IntersectionObserver/#calculate-intersection-rect-algo * @param {Element} target The target DOM element * @param {Object} targetRect The bounding rect of the target. * @param {Object} rootRect The bounding rect of the root after being * expanded by the rootMargin value. * @return {?Object} The final intersection rect object or undefined if no * intersection is found. * @private */ IntersectionObserver.prototype._computeTargetAndRootIntersection = function(target, targetRect, rootRect) { // If the element isn't displayed, an intersection can't happen. if (window.getComputedStyle(target).display == 'none') return; var intersectionRect = targetRect; var parent = getParentNode(target); var atRoot = false; while (!atRoot && parent) { var parentRect = null; var parentComputedStyle = parent.nodeType == 1 ? window.getComputedStyle(parent) : {}; // If the parent isn't displayed, an intersection can't happen. if (parentComputedStyle.display == 'none') return null; if (parent == this.root || parent.nodeType == /* DOCUMENT */ 9) { atRoot = true; if (parent == this.root || parent == document) { if (crossOriginUpdater && !this.root) { if (!crossOriginRect || crossOriginRect.width == 0 && crossOriginRect.height == 0) { // A 0-size cross-origin intersection means no-intersection. parent = null; parentRect = null; intersectionRect = null; } else { parentRect = crossOriginRect; } } else { parentRect = rootRect; } } else { // Check if there's a frame that can be navigated to. var frame = getParentNode(parent); var frameRect = frame && getBoundingClientRect(frame); var frameIntersect = frame && this._computeTargetAndRootIntersection(frame, frameRect, rootRect); if (frameRect && frameIntersect) { parent = frame; parentRect = convertFromParentRect(frameRect, frameIntersect); } else { parent = null; intersectionRect = null; } } } else { // If the element has a non-visible overflow, and it's not the <body> // or <html> element, update the intersection rect. // Note: <body> and <html> cannot be clipped to a rect that's not also // the document rect, so no need to compute a new intersection. var doc = parent.ownerDocument; if (parent != doc.body && parent != doc.documentElement && parentComputedStyle.overflow != 'visible') { parentRect = getBoundingClientRect(parent); } } // If either of the above conditionals set a new parentRect, // calculate new intersection data. if (parentRect) { intersectionRect = computeRectIntersection(parentRect, intersectionRect); } if (!intersectionRect) break; parent = parent && getParentNode(parent); } return intersectionRect; }; /** * Returns the root rect after being expanded by the rootMargin value. * @return {ClientRect} The expanded root rect. * @private */ IntersectionObserver.prototype._getRootRect = function() { var rootRect; if (this.root && !isDoc(this.root)) { rootRect = getBoundingClientRect(this.root); } else { // Use <html>/<body> instead of window since scroll bars affect size. var doc = isDoc(this.root) ? this.root : document; var html = doc.documentElement; var body = doc.body; rootRect = { top: 0, left: 0, right: html.clientWidth || body.clientWidth, width: html.clientWidth || body.clientWidth, bottom: html.clientHeight || body.clientHeight, height: html.clientHeight || body.clientHeight }; } return this._expandRectByRootMargin(rootRect); }; /** * Accepts a rect and expands it by the rootMargin value. * @param {DOMRect|ClientRect} rect The rect object to expand. * @return {ClientRect} The expanded rect. * @private */ IntersectionObserver.prototype._expandRectByRootMargin = function(rect) { var margins = this._rootMarginValues.map(function(margin, i) { return margin.unit == 'px' ? margin.value : margin.value * (i % 2 ? rect.width : rect.height) / 100; }); var newRect = { top: rect.top - margins[0], right: rect.right + margins[1], bottom: rect.bottom + margins[2], left: rect.left - margins[3] }; newRect.width = newRect.right - newRect.left; newRect.height = newRect.bottom - newRect.top; return newRect; }; /** * Accepts an old and new entry and returns true if at least one of the * threshold values has been crossed. * @param {?IntersectionObserverEntry} oldEntry The previous entry for a * particular target element or null if no previous entry exists. * @param {IntersectionObserverEntry} newEntry The current entry for a * particular target element. * @return {boolean} Returns true if a any threshold has been crossed. * @private */ IntersectionObserver.prototype._hasCrossedThreshold = function(oldEntry, newEntry) { // To make comparing easier, an entry that has a ratio of 0 // but does not actually intersect is given a value of -1 var oldRatio = oldEntry && oldEntry.isIntersecting ? oldEntry.intersectionRatio || 0 : -1; var newRatio = newEntry.isIntersecting ? newEntry.intersectionRatio || 0 : -1; // Ignore unchanged ratios if (oldRatio === newRatio) return; for (var i = 0; i < this.thresholds.length; i++) { var threshold = this.thresholds[i]; // Return true if an entry matches a threshold or if the new ratio // and the old ratio are on the opposite sides of a threshold. if (threshold == oldRatio || threshold == newRatio || threshold < oldRatio !== threshold < newRatio) { return true; } } }; /** * Returns whether or not the root element is an element and is in the DOM. * @return {boolean} True if the root element is an element and is in the DOM. * @private */ IntersectionObserver.prototype._rootIsInDom = function() { return !this.root || containsDeep(document, this.root); }; /** * Returns whether or not the target element is a child of root. * @param {Element} target The target element to check. * @return {boolean} True if the target element is a child of root. * @private */ IntersectionObserver.prototype._rootContainsTarget = function(target) { var rootDoc = (this.root && (this.root.ownerDocument || this.root)) || document; return ( containsDeep(rootDoc, target) && (!this.root || rootDoc == target.ownerDocument) ); }; /** * Adds the instance to the global IntersectionObserver registry if it isn't * already present. * @private */ IntersectionObserver.prototype._registerInstance = function() { if (registry.indexOf(this) < 0) { registry.push(this); } }; /** * Removes the instance from the global IntersectionObserver registry. * @private */ IntersectionObserver.prototype._unregisterInstance = function() { var index = registry.indexOf(this); if (index != -1) registry.splice(index, 1); }; /** * Returns the result of the performance.now() method or null in browsers * that don't support the API. * @return {number} The elapsed time since the page was requested. */ function now() { return window.performance && performance.now && performance.now(); } /** * Throttles a function and delays its execution, so it's only called at most * once within a given time period. * @param {Function} fn The function to throttle. * @param {number} timeout The amount of time that must pass before the * function can be called again. * @return {Function} The throttled function. */ function throttle(fn, timeout) { var timer = null; return function () { if (!timer) { timer = setTimeout(function() { fn(); timer = null; }, timeout); } }; } /** * Adds an event handler to a DOM node ensuring cross-browser compatibility. * @param {Node} node The DOM node to add the event handler to. * @param {string} event The event name. * @param {Function} fn The event handler to add. * @param {boolean} opt_useCapture Optionally adds the even to the capture * phase. Note: this only works in modern browsers. */ function addEvent(node, event, fn, opt_useCapture) { if (typeof node.addEventListener == 'function') { node.addEventListener(event, fn, opt_useCapture || false); } else if (typeof node.attachEvent == 'function') { node.attachEvent('on' + event, fn); } } /** * Removes a previously added event handler from a DOM node. * @param {Node} node The DOM node to remove the event handler from. * @param {string} event The event name. * @param {Function} fn The event handler to remove. * @param {boolean} opt_useCapture If the event handler was added with this * flag set to true, it should be set to true here in order to remove it. */ function removeEvent(node, event, fn, opt_useCapture) { if (typeof node.removeEventListener == 'function') { node.removeEventListener(event, fn, opt_useCapture || false); } else if (typeof node.detatchEvent == 'function') { node.detatchEvent('on' + event, fn); } } /** * Returns the intersection between two rect objects. * @param {Object} rect1 The first rect. * @param {Object} rect2 The second rect. * @return {?Object|?ClientRect} The intersection rect or undefined if no * intersection is found. */ function computeRectIntersection(rect1, rect2) { var top = Math.max(rect1.top, rect2.top); var bottom = Math.min(rect1.bottom, rect2.bottom); var left = Math.max(rect1.left, rect2.left); var right = Math.min(rect1.right, rect2.right); var width = right - left; var height = bottom - top; return (width >= 0 && height >= 0) && { top: top, bottom: bottom, left: left, right: right, width: width, height: height } || null; } /** * Shims the native getBoundingClientRect for compatibility with older IE. * @param {Element} el The element whose bounding rect to get. * @return {DOMRect|ClientRect} The (possibly shimmed) rect of the element. */ function getBoundingClientRect(el) { var rect; try { rect = el.getBoundingClientRect(); } catch (err) { // Ignore Windows 7 IE11 "Unspecified error" // https://github.com/w3c/IntersectionObserver/pull/205 } if (!rect) return getEmptyRect(); // Older IE if (!(rect.width && rect.height)) { rect = { top: rect.top, right: rect.right, bottom: rect.bottom, left: rect.left, width: rect.right - rect.left, height: rect.bottom - rect.top }; } return rect; } /** * Returns an empty rect object. An empty rect is returned when an element * is not in the DOM. * @return {ClientRect} The empty rect. */ function getEmptyRect() { return { top: 0, bottom: 0, left: 0, right: 0, width: 0, height: 0 }; } /** * Ensure that the result has all of the necessary fields of the DOMRect. * Specifically this ensures that `x` and `y` fields are set. * * @param {?DOMRect|?ClientRect} rect * @return {?DOMRect} */ function ensureDOMRect(rect) { // A `DOMRect` object has `x` and `y` fields. if (!rect || 'x' in rect) { return rect; } // A IE's `ClientRect` type does not have `x` and `y`. The same is the case // for internally calculated Rect objects. For the purposes of // `IntersectionObserver`, it's sufficient to simply mirror `left` and `top` // for these fields. return { top: rect.top, y: rect.top, bottom: rect.bottom, left: rect.left, x: rect.left, right: rect.right, width: rect.width, height: rect.height }; } /** * Inverts the intersection and bounding rect from the parent (frame) BCR to * the local BCR space. * @param {DOMRect|ClientRect} parentBoundingRect The parent's bound client rect. * @param {DOMRect|ClientRect} parentIntersectionRect The parent's own intersection rect. * @return {ClientRect} The local root bounding rect for the parent's children. */ function convertFromParentRect(parentBoundingRect, parentIntersectionRect) { var top = parentIntersectionRect.top - parentBoundingRect.top; var left = parentIntersectionRect.left - parentBoundingRect.left; return { top: top, left: left, height: parentIntersectionRect.height, width: parentIntersectionRect.width, bottom: top + parentIntersectionRect.height, right: left + parentIntersectionRect.width }; } /** * Checks to see if a parent element contains a child element (including inside * shadow DOM). * @param {Node} parent The parent element. * @param {Node} child The child element. * @return {boolean} True if the parent node contains the child node. */ function containsDeep(parent, child) { var node = child; while (node) { if (node == parent) return true; node = getParentNode(node); } return false; } /** * Gets the parent node of an element or its host element if the parent node * is a shadow root. * @param {Node} node The node whose parent to get. * @return {Node|null} The parent node or null if no parent exists. */ function getParentNode(node) { var parent = node.parentNode; if (node.nodeType == /* DOCUMENT */ 9 && node != document) { // If this node is a document node, look for the embedding frame. return getFrameElement(node); } // If the parent has element that is assigned through shadow root slot if (parent && parent.assignedSlot) { parent = parent.assignedSlot.parentNode } if (parent && parent.nodeType == 11 && parent.host) { // If the parent is a shadow root, return the host element. return parent.host; } return parent; } /** * Returns true if `node` is a Document. * @param {!Node} node * @returns {boolean} */ function isDoc(node) { return node && node.nodeType === 9; } // Exposes the constructors globally. window.IntersectionObserver = IntersectionObserver; window.IntersectionObserverEntry = IntersectionObserverEntry; }()); </script><script type="application/ld+json" id="search_schema"> { "@context": "https://web.archive.org/web/20211115165426/https://schema.org", "@type": "WebSite", "url": "https://web.archive.org/web/20211115165426/https://www.lexico.com/en", "potentialAction": { "@type": "SearchAction", "target": "https://web.archive.org/web/20211115165426/https://www.lexico.com/en/definition/{search_term_string}", "query-input": "required name=search_term_string" } } </script><script type="application/ld+json"></script><link rel="canonical" href="https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy"/><script>// GTM (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://web.archive.org/web/20211115165426/https://www.googletagmanager.com/gtm.js?id='+i+dl;j.addEventListener('load', function() {var _ge = new CustomEvent('gtm_loaded', { bubbles: true });d.dispatchEvent(_ge);});f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-WDVJNM5'); // BING Webmaster Tools Clarity (function(c,l,a,r,i,t,y){c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};t=l.createElement(r);t.async=1;t.src="https://web.archive.org/web/20211115165426/https://www.clarity.ms/tag/"+i;y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);})(window, document, "clarity", "script", "4w9afsnc8y");</script><link href="/web/20211115165426im_/https://www.lexico.com/apple-touch-icon.png" rel="apple-touch-icon"/><link href="/web/20211115165426im_/https://www.lexico.com/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png"/><link href="/web/20211115165426im_/https://www.lexico.com/icon-192x192.png" rel="icon" sizes="192x192" type="image/png"/><link href="/web/20211115165426im_/https://www.lexico.com/icon-256x256.png" rel="icon" sizes="256x256" type="image/png"/><link href="/web/20211115165426im_/https://www.lexico.com/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png"/><link href="/web/20211115165426im_/https://www.lexico.com/favicon.ico?v2" rel="shortcut icon"/><link href="/web/20211115165426/https://www.lexico.com/manifest.json" rel="manifest"/><link color="#50b46c" href="/web/20211115165426im_/https://www.lexico.com/safari-pinned-tab.svg" rel="mask-icon"/><meta content="#50b46c" name="msapplication-TileColor"/><meta content="/mstile-144x144.png" name="msapplication-TileImage"/><meta content="#50b46c" name="theme-color"/><meta name="csrf-param" content="authenticity_token"/> <meta name="csrf-token" content="V0mn6WaWPeGDEq0oslQUY6e5ltdQN72wISpt14yxeILPZK+oDotv9cAJ1twovK4+Gz6CeeW4+xCjJYevEEvZLw=="/><script>var controller = "pages"; var action = "landing_page"; var csite = "EN"; var page_category = "- Non Lex Page ";</script></head><body class="controller__pages action__landing_page dictionary__odo partition_ dictionary__en " lang="en" id="" data-trending-words="{&quot;shouldLogTrendingWord&quot;:false,&quot;partition&quot;:null,&quot;word&quot;:null}"><link rel="stylesheet" media="all" href="/web/20211115165426cs_/https://www.lexico.com/assets/application_monolingual-ac132b3b256f669e2455102a0140ab845aba297f5b8a2a9cd4451e043a07fdae.css"/><!--[if lt IE 9] = javascript_include_tag 'ie'--><script src="/web/20211115165426js_/https://www.lexico.com/assets/application_monolingual-3d572164bc51e9595d9b47c633ca2d81138b625675f72daa1d387ef524416d4b.js"></script><noscript><iframe src="https://web.archive.org/web/20211115165426if_/https://www.googletagmanager.com/ns.html?id=GTM-WDVJNM5" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div id="wrapper"><header id="header"><div class="bg close transition"></div><div class="topHeader"><div class="container full"><div class="headerContent"><a class="logo" href="/web/20211115165426/https://www.lexico.com/"><img src="/web/20211115165426im_/https://www.lexico.com/assets/oup/logos/svg/lexico-logo-new-b9f707cb98e4c645833379725ea1e859c34b4668104de80dbafdf872cabaccb4.svg" alt="Lexico logo"/></a></div><nav class="nav main-nav"><ul><li><a data-behaviour="ga-event-menu" data-value="ENGLISH DICTIONARY" href="/web/20211115165426/https://www.lexico.com/">ENGLISH DICTIONARY</a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="SYNONYMS" href="/web/20211115165426/https://www.lexico.com/synonyms">SYNONYMS</a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="TRANSLATE" href="/web/20211115165426/https://www.lexico.com/translate">TRANSLATE</a></li><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR " href="/web/20211115165426/https://www.lexico.com/grammar">GRAMMAR </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - GRAMMAR A-Z " href="/web/20211115165426/https://www.lexico.com/grammar/grammar-a-z">GRAMMAR A-Z </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - SPELLING " href="/web/20211115165426/https://www.lexico.com/grammar/spelling">SPELLING </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - PUNCTUATION " href="/web/20211115165426/https://www.lexico.com/grammar/punctuation">PUNCTUATION </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - WRITING TIPS " href="/web/20211115165426/https://www.lexico.com/grammar/writing-help">WRITING TIPS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - USAGE " href="/web/20211115165426/https://www.lexico.com/grammar/usage">USAGE </a></li></ul></li><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE " href="/web/20211115165426/https://www.lexico.com/explore">EXPLORE </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD ORIGINS " href="/web/20211115165426/https://www.lexico.com/explore/word-origins">WORD ORIGINS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - LANGUAGE QUESTIONS " href="/web/20211115165426/https://www.lexico.com/explore/language-questions">LANGUAGE QUESTIONS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD LISTS" href="/web/20211115165426/https://www.lexico.com/explore/word-lists">WORD LISTS</a></li></ul></li><li class="mob"><a class="not-active" data-behaviour="ga-event-menu" data-value="SPANISH DICTIONARY" href="/web/20211115165426/https://www.lexico.com/es">SPANISH DICTIONARY</a></li><li class="drop more"><span>More</span><ul><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR " href="/web/20211115165426/https://www.lexico.com/grammar">GRAMMAR </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - GRAMMAR A-Z " href="/web/20211115165426/https://www.lexico.com/grammar/grammar-a-z">GRAMMAR A-Z </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - SPELLING " href="/web/20211115165426/https://www.lexico.com/grammar/spelling">SPELLING </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - PUNCTUATION " href="/web/20211115165426/https://www.lexico.com/grammar/punctuation">PUNCTUATION </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - WRITING TIPS " href="/web/20211115165426/https://www.lexico.com/grammar/writing-help">WRITING TIPS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="GRAMMAR - USAGE " href="/web/20211115165426/https://www.lexico.com/grammar/usage">USAGE </a></li></ul></li><li class="drop mob not-active"><span><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE " href="/web/20211115165426/https://www.lexico.com/explore">EXPLORE </a></span><ul><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD ORIGINS " href="/web/20211115165426/https://www.lexico.com/explore/word-origins">WORD ORIGINS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - LANGUAGE QUESTIONS " href="/web/20211115165426/https://www.lexico.com/explore/language-questions">LANGUAGE QUESTIONS </a></li><li><a class="not-active" data-behaviour="ga-event-menu" data-value="EXPLORE - WORD LISTS" href="/web/20211115165426/https://www.lexico.com/explore/word-lists">WORD LISTS</a></li></ul></li><li class="mob"><a class="not-active" data-behaviour="ga-event-menu" data-value="SPANISH DICTIONARY" href="/web/20211115165426/https://www.lexico.com/es">SPANISH DICTIONARY</a></li></ul></li></ul></nav><nav class="nav right" lang="en"><ul><li class="drop"><span>Site language</span><ul class="language_selector"><li><a rel="nofollow" data-locale="en" href="/web/20211115165426/https://www.lexico.com/cookies-terms-privacy">English</a></li><li><a rel="nofollow" data-locale="es" href="/web/20211115165426/https://www.lexico.com/cookies-terms-privacy">español</a></li></ul></li></ul></nav></div><span class="close"><svg enable-background="new -33 14 19.1 19.1" height="19" viewbox="-33 14 19.1 19.1" width="19" xmlns="http://www.w3.org/2000/svg"><path d="m-13.9 16.1l-2.1-2.1-7.4 7.4-7.5-7.4-2.1 2.1 7.4 7.5-7.4 7.4 2.1 2.1 7.5-7.4 7.4 7.4 2.1-2.1-7.4-7.4z" fill="#fff"/></svg></span></div><div class="mainHeader"><div class="container"><div class="headerContent"><a class="logo" href="/web/20211115165426/https://www.lexico.com/" data-behaviour="ga-event" data-value="Homepage anchor image"><img src="/web/20211115165426im_/https://www.lexico.com/assets/oup/logos/svg/lexico-logo-new-b9f707cb98e4c645833379725ea1e859c34b4668104de80dbafdf872cabaccb4.svg" alt="Lexico logo"/></a><div class="searchField"><h1>Oxford English and Spanish Dictionary, Synonyms, and Spanish to English Translator</h1><div class="beforeSearch"></div><div class="searchMain" data-locale="en" data-english-homepage="false" data-translate-homepage="false"><form class="search" action="/web/20211115165426/https://www.lexico.com/search" accept-charset="UTF-8" method="get"><input name="utf8" type="hidden" value="✓"/><select name="filter" id="filter" class="dictionary" data-ga-language-indicator="EN"><option value="en_dictionary">UK Dictionary</option> <option value="noad">US Dictionary</option> <option value="thesaurus">Synonyms</option> <option value="en_grammar">English Grammar</option> <option value="es_dictionary">Spanish</option> <option value="to_english">Spanish - English</option> <option value="from_english">English - Spanish</option> <option value="es_grammar">Spanish Grammar</option></select><fieldset><input type="hidden" name="dictionary" id="dictionary" value="en"/><input type="hidden" name="s" id="s" value="t"/><label class="sr-only" for="query">Search</label><input type="text" name="query" id="query" placeholder="Type word or phrase" autocomplete="off" maxlength="100" autocapitalize="none" class="autocomplete"/><div class="keyboard kBoxContent" data-behaviour="ga-event-search-scope" data-value="character keyboard"><svg enable-background="new 0 0 28 16.7" height="17" viewbox="0 0 28 16.7" width="28" xmlns="http://www.w3.org/2000/svg"><path d="m26.5 0h-25c-.8 0-1.5.6-1.5 1.4v13.9c0 .8.7 1.4 1.5 1.4h25.1c.8 0 1.5-.6 1.5-1.4v-13.9c-.1-.8-.8-1.4-1.6-1.4m-10.1 2.8h2.9v2.8h-2.9v-2.8m4.3 4.1v2.8h-2.9v-2.8h2.9m-8.7-4.1h2.9v2.8h-2.9v-2.8m4.4 4.1v2.8h-2.9v-2.8h2.9m-8.8-4.1h2.9v2.8h-2.9v-2.8m4.4 4.1v2.8h-2.9v-2.8h2.9m-9-4.1h3.2v2.8h-3.2v-2.8m0 4.1h4.6v2.8h-4.6v-2.8m3.2 7h-3.2v-2.8h3.1v2.8zm13.1 0h-11.7v-2.8h11.6v2.8zm5.8 0h-4.4v-2.8h4.4v2.8m0-4.2h-2.9v-2.8h2.9v2.8m0-4.1h-4.4v-2.8h4.4v2.8" fill="#999"/></svg> <svg enable-background="new 0 0 14 7" height="7" viewbox="0 0 14 7" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 4.4 2.6 0 0 0 6.1 6.1 7 7 7.9 6.1 14 0 11.4 0z" fill="#989898"/></svg></div><button type="submit" data-behaviour="ga-event-search-scope" data-value="Launch search" aria-label="Launch search"><svg enable-background="new 0 0 22 22" height="30" viewbox="-0.5 -0.5 22 22" width="30" xmlns="http://www.w3.org/2000/svg"><path d="m21.8 19.6l-4.5-4.5c2.7-3.7 2.3-8.9-1-12.3-3.7-3.7-9.8-3.7-13.5 0-3.7 3.7-3.7 9.7 0 13.5 3.4 3.4 8.6 3.7 12.3 1l4.5 4.5c.4.4 1 .3 1.5-.2l.5-.5c.5-.5.5-1.1.2-1.5m-7.6-5.3c-2.6 2.6-6.8 2.6-9.4 0-2.6-2.6-2.6-6.8 0-9.4 2.6-2.6 6.8-2.6 9.4 0 2.5 2.6 2.5 6.8 0 9.4" fill="#f77941"/></svg></button><div class="autocompleteBox"></div><div class="keyboardBox"><div class="kBoxContent"><ul><li><span>à</span></li><li><span>á</span></li><li><span>â</span></li><li><span>ä</span></li><li><span>ã</span></li><li><span>ă</span></li><li><span>ā</span></li><li><span>ç</span></li><li><span>č</span></li><li><span>è</span></li><li><span>é</span></li><li><span>ê</span></li><li><span>ë</span></li><li><span>ē</span></li><li><span>ģ</span></li><li><span>ì</span></li><li><span>í</span></li><li><span>î</span></li><li><span>ï</span></li><li><span>ī</span></li><li><span>ķ</span></li><li><span>ļ</span></li><li><span>ñ</span></li><li><span>ň</span></li><li><span>ņ</span></li><li><span>ò</span></li><li><span>ó</span></li><li><span>ô</span></li><li><span>ö</span></li><li><span>õ</span></li><li><span>ş</span></li><li><span>š</span></li><li><span>ţ</span></li><li><span>ù</span></li><li><span>ú</span></li><li><span>û</span></li><li><span>ü</span></li><li><span>ū</span></li><li><span>ý</span></li><li><span>ž</span></li><li><span>æ</span></li><li><span>œ</span></li><li><span>ß</span></li></ul><i class="upper"><svg enable-background="new 0 0 16.8 16" height="16" viewbox="0 0 16.8 16" width="16" xmlns="http://www.w3.org/2000/svg"><path d="m8.4 0l-8.4 8.4h5.1v7.6h6.6v-7.6h5.1z" fill="#2a2a2a"/></svg></i></div></div></fieldset></form></div></div></div><div class="burger"><img src="/web/20211115165426im_/https://www.lexico.com/assets/oup/svg/hamburger-menu-594799c23e03196ed910c5798976a15b1779b55f9c9824608c69cf0ff6191ee8.svg" height="18" width="28" alt="menu"/><span>menu</span></div></div></div></header><div id="main"><div class="errors__container headerHead"></div><script type="application/ld+json" id="article_schema"> //<![CDATA[ {"@context":"https://web.archive.org/web/20211115165426/https://schema.org","@type":"Article","headline":"Terms, Cookies, \u0026 Privacy","author":"Lexico.com Team","wordcount":"10016","publisher":{"@type":"Organization","name":"Lexico.com","logo":{"@type":"ImageObject","url":"https://web.archive.org/web/20211115165426/https://www.lexico.com/lexico-logo.svg"}},"url":"https://web.archive.org/web/20211115165426/https://lexico.com","mainEntityOfPage":{"@type":"WebPage","@id":"https://web.archive.org/web/20211115165426/https://lexico.com/explore"},"datePublished":"2019-05-13","dateCreated":"2019-05-13","dateModified":"2020-07-23","articleBody":"\u003cheader\u003e\u003cp align=\"center\"\u003eTerms, Cookies, \u0026amp; Privacy\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eTERMS OF SERVICE\u003c/p\u003e\u003cp\u003eAGREEMENT AND GENERAL TERMS OF USE\u003c/p\u003e\u003cp\u003eLexico.com is owned and operated by Dictionary.com, LLC (“Dictionary,” “we,” “us,” or “our”). These Terms of Service (the “Terms”) constitute the agreement between us and you as a user who accesses, subscribes to access, or otherwise establishes a connection (“user,” “you,” or “your”) to the world wide web sites known as Dictionary.com, Thesaurus.com, and Lexico.com (including any sub-domains) (the “Sites”) and any related Dictionary products and services. Our provision of the Site and related products and services, is collectively referred to as the “Services.”\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003ePLEASE NOTE THAT THESE TERMS OF USE CONTAIN A MANDATORY AND BINDING ARBITRATION, CLASS ACTION WAIVER, AND WAIVER OF RIGHT TO JURY TRIAL CLAUSE, WHICH AFFECTS YOUR RIGHTS REGARDING HOW TO RESOLVE ANY DISPUTE WITH DICTIONARY. PLEASE READ IT CAREFULLY.\u003c/p\u003e\u003cp\u003eThis Site may collect personal information from our users. By using the Services and/or agreeing to these Terms, you consent to the collection, storage, and processing of your data as set forth in our Privacy \u0026amp; Cookie Policy.\u003c/p\u003e\u003cp\u003eOur Services are intended for general audiences over the age of 16 years old. We do not knowingly collect information from children under the age of 16 years old.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp align=\"center\"\u003eIF YOU ARE NOT AT LEAST 16 YEARS OLD, DO NOT USE THE SERVICES.\u003c/p\u003e\u003cp\u003eYou must agree to abide by all of the provisions of these Terms in order to remain an authorized user of the Site and your use of the Site constitutes your agreement to abide by these Terms. You are solely responsible for your use of the Site and for ensuring that your use complies fully with the provisions of these Terms. Your rights are personal and non-assignable. This means that you will be responsible for the acts of anyone accessing the Site through you or using your name and password.\u003c/p\u003e\u003cp\u003eWe reserve the right, in our sole discretion, to change any or all of the provisions of these Terms at any time. We will notify you of any material changes by posting them on the Site or through other reasonable means of providing notice. Any changes to these Terms will be effective immediately upon notice to you unless we advise otherwise. Your use of the Site after notice of changes to this agreement will be deemed your acceptance of the changes. We reserve the right, in our sole discretion, to change, limit, or discontinue any aspect, content, or feature of the Site, as well as any aspect pertaining to the use of the Services.\u003c/p\u003e\u003cp\u003eIF YOU DO NOT AGREE TO THE PROVISIONS OF THESE TERMS OR ARE NOT SATISFIED WITH THE SITE OR SERVICES, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE YOUR USE OF THE SITE AND/OR SERVICES, AS APPLICABLE.\u003c/p\u003e\u003cp\u003eUSER ACTIVITIES AND INFORMATION ON THE SITE; LINKS\u003c/p\u003e\u003cp\u003eYou will use the Site, Services, and any tools, features, content, material, or information found on the Site solely for lawful, non-commercial purposes. You will not allow any third party to access the Site through your account, upload to, distribute to, or otherwise disseminate through the Site any material or information of any kind that is libelous, defamatory, obscene, pornographic, abusive, or otherwise violates any law or infringes or violates any rights of any other person or entity, or contains a solicitation of funds, advertising, or a solicitation for goods or services.\u003c/p\u003e\u003cp\u003eYou warrant that any material or information that you make available through the Site, including, for example, postings to comment sections and forums, is solely your original work, or that you have all necessary rights to make the material or information of any other person or entity available on the Site. You will be solely responsible for the content of any material or information that you make available through the Site. You will also be liable for any damage resulting from making any material or information available through the Site.\u003c/p\u003e\u003cp\u003eBy making any material or information available through the Site, you automatically grant to Dictionary a worldwide, royalty-free, perpetual, irrevocable, and non-exclusive right and license to use, reproduce, modify, adapt, publish, translate, distribute and sublicense any such material or information (in whole or in part) and/or to incorporate it in other works regardless of form, media, or technology. By making any material or information available through the Site, you also grant to users other than yourself the right and license to access, view, store, or reproduce your material and information for that user’s personal use.\u003c/p\u003e\u003cp\u003eWe have no obligation to, and does not and cannot, review every item of material or information that you and users other than yourself made available through the Site, and we are not responsible for any content of this material or information. However, we reserve the right to delete, move, or edit any material or information that it deems, in its sole discretion, unacceptable, libelous, defamatory, obscene, pornographic, abusive, or otherwise in violation of any law or that infringes or violates any rights of any other person or entity. Further, we reserve the right at all times to disclose any material or information as necessary to satisfy any law, regulation, or governmental request.\u003c/p\u003e\u003cp\u003eWe reserve the right to collect, use, and distribute demographic data about you and your use of the Site in forms that do not identify you individually or reveal your identity.\u003c/p\u003e\u003cp\u003eThe Site and Services may provide links to other sites or resources. Because we do not review or have control over such sites and resources, we shall not be responsible or liable for use of or reliance on any content, products, services or information at such sites or resources. Inclusion of any links does not imply any endorsement, affiliation, approval, association or sponsorship by Dictionary of the linked websites, resources, their operators or owners. When you select a link, you may be leaving our Site. The information available on third party websites may have certain restrictions on its use or distribution which differ from this agreement.\u003c/p\u003e\u003cp\u003eRIGHTS IN SITE CONTENT AND THE SITE\u003c/p\u003e\u003cp\u003eAll content provided on the Site is protected by copyright, trademark, and other applicable intellectual property and proprietary rights laws and is owned, controlled, and/or licensed by Dictionary. The Site is protected by copyright, patent, trademark, and other applicable intellectual property and proprietary rights laws and is owned, controlled, and/or licensed by Dictionary. Any and all trademarks appearing on the Site are the property of Dictionary or their respective owners.\u003c/p\u003e\u003cp\u003eYou will not modify, publish, transmit, participate in the transfer or sale, create derivative works, or in any way exploit, any of the content, in whole or in part, found on the Site. You agree that all rights to the Site, content, and any derivative work will remain with us. You will download copyrighted content solely for your personal use, but will make no other use of the content without the express written permission of Dictionary and the copyright owner. You will not make any changes to any content that you are permitted to download under these Terms, and in particular you will not delete or alter any proprietary rights or attribution notices in any content. You agree that you do not acquire any ownership rights in any downloaded content.\u003c/p\u003e\u003cp\u003eDISCLAIMER OF WARRANTIES \u0026amp; LIMITATION OF LIABILITY\u003c/p\u003e\u003cp\u003eYOU EXPRESSLY AGREE THAT USE OF THE SITE IS AT YOUR SOLE RISK. NEITHER DICTIONARY, NOR ANY OF ITS AFFILIATES, EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS, OR LICENSORS WARRANT THAT THE SITE WILL BE UNINTERRUPTED OR ERROR FREE NOR DO THEY MAKE ANY WARRANTY AS TO THE RESULTS THAT MAY BE OBTAINED FROM THE USE OF THE SITE, OR AS TO THE ACCURACY, RELIABILITY, COMPLETENESS, OR CONTENTS OF ANY CONTENT, INFORMATION, MATERIAL, POSTINGS, OR POSTING RESPONSES FOUND ON THE SITE, ANY MERCHANDISE OR SERVICES PROVIDED THROUGH THE SITE, OR ANY LINKS TO OTHER SITES MADE AVAILABLE ON THE SITE.\u003c/p\u003e\u003cp\u003eTO THE EXTENT PERMITTED BY APPLICABLE LAW, THE SITE AND ALL CONTENT, MATERIAL, INFORMATION, POSTINGS, OR POSTING RESPONSES FOUND ON THE SITE ARE PROVIDED ON AN “AS IS” BASIS WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE OR NON-INFRINGEMENT OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\u003c/p\u003e\u003cp\u003eUNDER NO CIRCUMSTANCES, INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE, WILL DICTIONARY.COM (OR ANY OF ITS PARENTS, SUBSIDIARIES, AFFILIATES, EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS, OR LICENSORS, AND THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AND AGENTS), BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES THAT RESULT FROM THE USE OF, OR THE INABILITY TO USE, ANY TOOL, CONTENT, INFORMATION, MATERIAL, POSTINGS, OR POSTING RESPONSES ON THE SITE OR THE SITE ITSELF. THESE LIMITATIONS APPLY REGARDLESS OF WHETHER THE PARTY LIABLE OR ALLEGEDLY LIABLE WAS ADVISED, HAD OTHER REASON TO KNOW, OR IN FACT KNEW OF THE POSSIBILITY OF SUCH DAMAGES. YOU SPECIFICALLY ACKNOWLEDGE AND AGREE THAT DICTIONARY (AND ANY OF ITS PARENTS, SUBSIDIARIES, AFFILIATES, EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS, OR LICENSORS, AND THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AND AGENTS), IS NOT LIABLE FOR ANY DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF ANY USER, INCLUDING YOU.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eINDEMNIFICATION.\u003c/strong\u003e You agree to defend, indemnify and hold harmless Dictionary (and any of its parents, subsidiaries, affiliates, employees, agents, third party content providers, or licensors, and their respective directors, officers, employees, and agents) from and against all claims, liability, and expenses, including attorneys’ fees and legal fees and costs, arising out of your use of the Site or your breach of any provision of this agreement. We reserve the right, in its sole discretion and at its own expense, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you. You will cooperate as fully as reasonably required in the defense of any claim.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eNOTICES BETWEEN US.\u003c/strong\u003e You will contact us by submitting your message via \u003ca href=\"https://www.dictionary.com/e/contact/\"\u003eour form\u003c/a\u003e. We will contact you by the e-mail address you provide to us, or by posting a notice on the Site.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eTERMINATION.\u003c/strong\u003e We may terminate this agreement and your use of the Site at any time. We also have the right to immediately terminate your use of the Site in the event of any conduct by you which we, in our sole discretion, consider to be unacceptable, or in the event of any breach by you of these Terms.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eLAW GOVERNING PERFORMANCE AND DISPUTES.\u003c/strong\u003e Any dispute arising from the Site and your use of the Services will be governed by and construed and enforced in accordance with the laws of the state of Michigan, except to the extent preempted by U.S. federal law, without regard to conflict of law rules or principles (whether of Michigan or any other jurisdiction) that would cause the application of the laws of any other jurisdiction. Any dispute between the parties that is not subject to arbitration or cannot be heard in small claims court will be resolved in the state or federal courts of Michigan and the United States, respectively, sitting in Wayne County, Michigan.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eCLAIMS SUBJECT TO MANDATORY AND BINDING ARBITRATION, CLASS WAIVER, AND JURY TRIAL WAIVER.\u0026nbsp;\u003c/strong\u003ePlease read the following important section carefully.\u003cbr\u003e\u003c!--[if !supportLineBreakNewLine]--\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eExcept for small claims disputes or claims related to intellectual property, you and we waive our rights to a jury trial and to have any dispute arising out of or related to the Sites or Services resolved in court. Instead, disputes relating in any way to the Sites or Services must be submitted to binding arbitration administered by JAMS. The Federal Arbitration Act and federal arbitration law apply to this agreement. The most recent version of the JAMS Rules are available at www.jamsadr.com/rules-download and are hereby incorporated by reference. The arbitrator, not the court, will resolve the issue of arbitrability.\u003c/li\u003e\u003cli\u003eYou and we agree that any dispute arising out of or related to the Sites or our Services is personal to you and us and that any dispute will be resolved solely through individual action, and will not be brought as a class arbitration, class action, or any other type of representative proceeding.\u003c/li\u003e\u003cli\u003eYou and we agree that for any arbitration you initiate, you will pay the filing fee (up to a maximum of $250 if you are a consumer), and we will pay the remaining JAMS fees and costs. For any arbitration initiated by us, we will pay all JAMS fees and costs. You have the right to an in-person arbitration hearing in your hometown area. Any state or federal court having jurisdiction thereof may enter judgment of any award the arbitrator renders.\u003c/li\u003e\u003cli\u003eYou have the right to opt out of binding arbitration within 30 days of the date you first accepted the terms of this section by sending an email to \u003ca href=\"mailto:privacy@dictionary.com\"\u003eprivacy@dictionary.com\u003c/a\u003e. In order to be effective, the opt-out notice must include your full name and address and clearly indicate your intent to opt out of binding arbitration. By opting out of binding arbitration, you are agreeing to resolve disputes in accordance with the section, \"Governing Law and Forum Selection.\"\u003c/li\u003e\u003cli\u003eIf any portion of this section is found to be unenforceable or unlawful for any reason, (a) the unenforceable or unlawful provision shall be severed from these Terms of Use; (b) severance of the unenforceable or unlawful provision shall have no impact whatsoever on the remainder of this section or the parties' ability to compel arbitration of any remaining claims on an individual basis pursuant to this section; and (c) to the extent that any claims must therefore proceed on a class, collective, consolidated, or representative basis, such claims must be litigated in a civil court of competent jurisdiction and not in arbitration, and the parties agree that litigation of those claims shall be stayed pending the outcome of any individual claims in arbitration. Further, if any part of this section is found to prohibit an individual claim seeking public injunctive relief, that provision will have no effect to the extent such relief is allowed to be sought out of arbitration, and the remainder of this section will be enforceable.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eGENERAL TERMS.\u003c/strong\u003e These Terms and any posted rules on the Site constitute the entire agreement of the parties with respect to the subject matter hereof. No waiver by Dictionary of any breach or default under these Terms will be deemed to be a waiver of any preceding or subsequent breach or default. Our agreement will be binding upon and inure to the benefit of Dictionary and its successors, trustees, and permitted assignees. We may assign this agreement or any of its rights or obligations under these Terms with or without notice to you.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003ePRIVACY \u0026amp; COOKIE POLICY\u003c/p\u003e\u003cp\u003eLast Updated on: [July 9, 2020]\u003c/p\u003e\u003cp\u003eDictionary.com, LLC (“Dictionary,” “we,” “us,” or “our”) respects your privacy and is committed to being transparent about the tracking technologies we use. This Privacy \u0026amp; Cookie Policy describes our practices concerning the personal information collected through our websites, including Dictionary.com, Thesaurus.com, and Lexico.com (including any subdomains) (the “Sites”) and any related Dictionary products and services (provision of the Sites and related products and services, is collectively referred to as the “Services.”) and explains how cookies, web beacons, pixel tags, clear gifs, and other similar files or technologies may be used to collect and store the information automatically collected about your computer, device, and Service usage and how you can control the use of these technologies.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eIf you do not accept the use of cookies, please disable them as described in the Cookie Controls.\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eINTRODUCTION AND SCOPE. Below we describe what information we collect when you use our Services, how we protect that information, how long we retain it, with whom we share it, and what your privacy and cookie options are. By using the Services, you consent to our collection and use of your information as described in this Privacy \u0026amp; Cookie Policy.\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eThe Services are controlled and offered by Dictionary.com from the United States of America and, regardless of your place of residence, your use of them is governed by the laws of the State of Michigan, USA. Dictionary.com makes no representations that the Services are appropriate for use in other locations or are legal in all jurisdictions. Those who access or use the Services from other locations do so at their own risk and are responsible for compliance with local law. You hereby consent to the transfer and processing of your data in the United States of America and any other jurisdiction throughout the world, which may or may not have different levels of privacy protection than those in your jurisdiction.\u003c/p\u003e\u003cp\u003eWe will continue to evaluate this Privacy \u0026amp; Cookie Policy against new technologies, applicable laws, business practices, and our user’s needs, and may make changes accordingly. Please check this page periodically for updates. If we make any material changes, we will post the updated Privacy \u0026amp; Cookie Policy here, along with its effective date, and notify you by email or by means of a notice on the Sites. Except in connection with updates that materially change the ways in which we process your information, your continued use of the Services after our posting of changes to this Privacy \u0026amp; Cookie Policy means that you agree to be bound by such changes. We will provide notice in advance of the effective date with regard to any updates that materially change the ways in which we process your personal information.\u003c/p\u003e\u003cp\u003eThe Services may provide links to third-party websites, plug-ins and applications. Clicking on those links or enabling those connections may allow third parties to collect or share data about you. We do not control these third-party websites and are not responsible for their privacy practices.\u003c/p\u003e\u003cp\u003eOur Services are intended for general audiences over the age of 16 years old. We do not knowingly collect information from children under the age of 16 years old.\u003c/p\u003e\u003cp\u003eWe are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u003cu\u003eIF YOU ARE NOT AT LEAST 16 YEARS OLD, DO NOT USE THE SERVICES.\u003c/u\u003e\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eYOUR PRIVACY CHOICES. You have choices when it comes to the privacy practices described in this Privacy \u0026amp; Cookie Policy, including your choices related to:\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eTargeted Advertising. See Web Browser Controls and Third Party Advertising Controls\u003c/p\u003e\u003cp\u003eWebsite Analytics. See Web Browser Controls and Google Analytics Controls\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eINFORMATION WE COLLECT AND MEANS OF COLLECTION. We collect information about you from a variety of sources, including from you directly providing it to us (e.g., when you open an account or contact us), from cookies and other tracking technologies that automatically collect information in the course of your use of the Services (see the “\u003c/strong\u003e\u003cstrong\u003eCookies and Other Trackers\u003c/strong\u003e\u003cstrong\u003e” section) and from various third parties and public sources. You can use some of the Services without directly providing any information, but if you do not provide certain information or limit the operation of some cookies, you may not be able to use some of the Services we offer.\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u003cu\u003eInformation you Provide directly to us.\u003c/u\u003e\u003c/strong\u003e Access to the general content on our Sites does not require you to provide us any personal (e.g., name, date of birth), contact (e.g., email address, phone number) and/or account (username and password) information. You may provide personal information to us, if you choose to:\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eOpen an account or sign up for one of our newsletters;\u003c/li\u003e\u003cli\u003ePurchase a subscription or sign up to receive any additional services like Dictionary.com Premium;\u003c/li\u003e\u003cli\u003eSubmit a help request, a customer services inquiry or other inquiry to us, or fill in any other forms for the purposes of receiving our Services;\u003c/li\u003e\u003cli\u003eParticipate in some of the features accessible via the Services (for example, message boards, chat groups, social networking, games, surveys, polls, promotions, contests, or sweepstakes);\u003c/li\u003e\u003cli\u003eContact us about employment opportunities posted on the Sites; or\u003c/li\u003e\u003cli\u003eOtherwise use the Services in a manner that you have requested.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eDepending on which of these or any other Services you use, the personal information you provide may include your name, email address, user name, home address, telephone number, demographic information (age, gender, etc.), information posted by you on sites accessed via the Services and/or information provided by you in any help request or inquiry you make to us.\u003c/p\u003e\u003cp\u003eThere is no need to provide to us, and we strongly discourage you from, providing any \u003cu\u003esensitive information\u003c/u\u003e about you or anyone else including, details about your race or ethnicity, religious or philosophical beliefs, sex life, sexual orientation, political opinions, trade union membership or information about your health.\u003c/p\u003e\u003cp\u003e\u003cstrong style=\"background-color: initial;\"\u003e\u003cu\u003e\u003cbr\u003eInformation collected via automated technologies and interactions.\u003c/u\u003e\u003c/strong\u003e\u003cspan style=\"background-color: initial;\"\u003e\u0026nbsp;As you interact with the Services, we may collect information via automated means about your computer or mobile device, your preference settings, your location and your activities, including:\u003c/span\u003e\u003cstrong\u003e\u003cu\u003e\u0026nbsp;\u003c/u\u003e\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eIP address of your computer;\u003c/li\u003e\u003cli\u003eUnique mobile device identifier;\u003c/li\u003e\u003cli\u003eTechnical information about your computer or mobile device such as type of device, mobile device ID number, screen resolution, web browser information and operating system or platform;\u003c/li\u003e\u003cli\u003eYour preferences and settings (time zone, language, etc.);\u003c/li\u003e\u003cli\u003eInternet provider or mobile carrier name;\u003c/li\u003e\u003cli\u003eThe URL of the last webpage you visited before visiting the Site;\u003c/li\u003e\u003cli\u003eInformation about your activity on the Services (e.g., your search queries, mis-formatted DNS entries, search results selected, clicks, pages viewed, search history, comments);\u003c/li\u003e\u003cli\u003eIf you are using a mobile device, your mobile device’s geographic location (specific geographic location if you’ve enabled collection of that information, or general geographic location automatically); and\u003c/li\u003e\u003cli\u003eIf you installed an Application, we may also collect information about that Application (e.g. the specific release date and distribution source of your Application, a unique Application ID, Application partner ID, the ads you click on, and information contained in error log files or cookies, aggregate query or click data and erroneous domain name system requests).Third-parties who provide us with products and services may also place cookies, ad tags and/or beacons that collect the information outlined above in order to provide us with products and services including, analytics tools (\u003ca href=\"https://support.google.com/analytics/answer/6004245?hl=en\u0026ref_topic=2919631\" target=\"_blank\"\u003eGoogle Analytics\u003c/a\u003e), functionalities like playing video content (\u003ca href=\"https://www.brightcove.com/en/legal/privacy\" target=\"_blank\"\u003eBrightcove\u003c/a\u003e), and targeted advertising. These third parties may also collect information about you from other sources and combine it with other information collected about you from third party websites not affiliated with us. For example, advertiser and advertising networks, as well as data analytics companies who service them, may participate in Online Behavioral Advertising and track your activity across various sites and/or devices where they display ads and record your activities, so they can show ads that they consider relevant to you.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cu\u003eMobile Device Location Information:\u003c/u\u003e When you use one of our location-enabled services (for example, when you access Services from a mobile device), we may need to collect and process information about your specific GPS location (including the latitude, longitude or altitude of your mobile device) and the time the location information was recorded, and we may use that information to customize the Services with location-based information, advertising, and features. Some of these services require us to associate location data with your device ID and other information we hold about you.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003eCookies and other Trackers.\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cu\u003e\u0026nbsp;\u003c/u\u003e\u003c/p\u003e\u003cp\u003e\u003cu\u003eWHAT IS A COOKIE?\u003c/u\u003e \u003cu\u003eCookies\u003c/u\u003e are text files containing small amounts of information which are downloaded to your computer or mobile device when you visit a website. Cookies are then sent back to the originating website on each subsequent visit, or to another website that recognizes that cookie. A \u003cu\u003epixel tag\u003c/u\u003e (also called a \u003cu\u003eweb beacon\u003c/u\u003e or clear \u003cu\u003eGIF\u003c/u\u003e) is a tiny graphic with a unique identifier, embedded invisibly on a webpage (or an online ad or email) that links web pages to particular web servers and their cookies, and may be used for a variety of purposes, such as counting the number of visitors to the Sites, analyzing how users navigate around the Sites, assessing what content or ads are viewed or clicked on by our visitors. Some ad companies and game developers use “\u003cu\u003eflash cookies\u003c/u\u003e” for ads and games that use Flash media technology. \u003cu\u003eWe use the term “cookies” in this policy to refer to cookies and all such similar technologies.\u0026nbsp;\u003c/u\u003eCookies are widely used in order to make websites work, or to work more efficiently, as well as to provide information to the owners of the site. We use these technologies to let you navigate between pages efficiently, remember your preferences, track your use of the Services and generally improve your experience. Ad companies we work with place cookies on your computer to track your activities across various sites so that they can display ads on our Sites and third-party websites that are more relevant to you and your interests.\u003cbr\u003e\u003c!--[if !supportLineBreakNewLine]--\u003e\u003c/p\u003e\u003cp\u003eThere are two broad categories of cookies:\u003cbr\u003e\u003c!--[if !supportLineBreakNewLine]--\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eFirst party cookies, served directly by us to your computer or mobile device.\u003c/li\u003e\u003cli\u003eThird party cookies, which are served by a third party on our behalf. We use third party cookies for functionality, performance / analytics, advertising and social media purposes.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eCookies can remain on your computer or mobile device for different periods of time. Some cookies are ‘session cookies’, meaning that they exist only while your browser is open. These are deleted automatically once you close your browser. Other cookies are ‘permanent cookies’, meaning that they survive after your browser is closed. They can be used by websites to recognize your computer when you open your browser and browse the Internet again.\u003c/p\u003e\u003cp\u003e\u003cu\u003eHOW DO WE USE COOKIES?\u003c/u\u003e We use cookies to:\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003eTrack traffic flow and patterns of travel in connection with our Services;\u003c/li\u003e\u003cli\u003eUnderstand the total number of visitors to our sites on an ongoing basis and the types of internet browsers (e.g. Chrome, Safari or Edge), operating systems (e.g. Windows or Mac OS), and screen resolutions used by our visitors;\u003c/li\u003e\u003cli\u003eMonitor and analyze the performance of our Services and to continually improve them;\u003c/li\u003e\u003cli\u003eCustomize and enhance your online experience; and\u003c/li\u003e\u003cli\u003eEnable Dictionary and third-party advertising both on and off our Sites.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eThird parties whose products or services are accessible or advertised through the Services, including social networking services, may also use cookies or similar tools, and we advise you to check their privacy policies for information about their cookies and other practices. We do not control the practices of such partners and their privacy policies govern their interactions with you. We encourage you to read their privacy policies.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cu\u003eWHAT TYPES OF COOKIES DO WE USE?\u003c/u\u003e The types of cookies used by us and our partners in connection with the Services can be classified into one of the five categories below. We’ve set out some further information about each category, and the purposes of the cookies we and third parties set in the following table.\u003c/p\u003e\u003ctable style=\"width: 100%;\"\u003e\u003ctbody\u003e\u003ctr\u003e\u003ctd style=\"width: 50%; text-align: center; vertical-align: top;\"\u003e\u003cstrong\u003eTYPE OF COOKIE\u003c/strong\u003e\u003cbr\u003e\u003c/td\u003e\u003ctd style=\"width: 50%; text-align: center; vertical-align: middle;\"\u003e\u003cp\u003e\u003cstrong\u003eWHAT IT DOES\u003c/strong\u003e\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"width: 50.0000%;\"\u003e\u003cp\u003eStrictly Necessary Cookies\u003c/p\u003e\u003c/td\u003e\u003ctd style=\"width: 50.0000%;\"\u003eThese cookies are essential to operate the Sites and provide the Services by helping us provide basic functionality such as loading and rendering pages on the Sites and enabling your navigation around the Sites and use of certain features. They are also used to identify and prevent fraud and improve security.\u003cbr\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"width: 50.0000%;\"\u003eFunctionality Cookies\u003cbr\u003e\u003c/td\u003e\u003ctd style=\"width: 50.0000%;\"\u003eFunctionality cookies record information about choices you’ve made and allow us to tailor the Sites to you. These cookies mean that when you continue to use or come back to the Sites, we can provide you with our Services as you have asked for them to be provided. For example, these cookies allow us to store language preference. They may also be used to provide certain functionality such as playing video content.\u003cbr\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"width: 50.0000%;\"\u003ePerformance / Analytics Cookies\u003cbr\u003e\u003c/td\u003e\u003ctd style=\"width: 50.0000%;\"\u003eWe use performance/analytics cookies to analyze how the Sites are accessed, used, or is performing in order to provide you with a better user experience and to maintain, operate and continually improve the Sites. For example, these cookies allow us to:\u003cbr\u003e• Better understand our website visitors so that we can improve how we present our content;\u003cbr\u003e• Test different design ideas for particular pages, such as our homepage;\u003cbr\u003e• Collect information about site visitors such as where they are located and what browsers they are using;\u003cbr\u003e• Determine the number of unique users of the Sites;\u003cbr\u003e• Improve the Sites by measuring any errors that occur; and\u003cbr\u003e• Conduct research and diagnostics to improve product offerings.\u003cbr\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"width: 50.0000%;\"\u003eAdvertising and Tracking Cookies\u003cbr\u003e\u003c/td\u003e\u003ctd style=\"width: 50.0000%;\"\u003eAs you use our Sites, you will notice that it includes advertising. We allow third party advertising companies to place cookies on our Sites. These cookies enable such companies to track your activity across various sites where they display ads and record your activities so they can show ads that they consider relevant to you as you browse the web.\u003cbr\u003eCookies also allow us and third parties to know whether you’ve seen an ad or a type of ad, and how long it has been since you’ve last seen it. This information is used for frequency capping purposes, to help tailor the ads you see, and to measure the effectiveness of ads.\u003cbr\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd style=\"width: 50.0000%;\"\u003eSocial Media Cookies\u003cbr\u003e\u003c/td\u003e\u003ctd style=\"width: 50.0000%;\"\u003eThird parties that make their applications available through/on our Sites may set their own cookies in order to track the performance of their applications or customize those applications for you. For example, when you share an article using a social media sharing button on our Sites (e.g., Facebook, Twitter, or Instagram), the social network that has created the button will record that you have done this. Because of how cookies work, we cannot access these cookies, nor can the third parties access the data in cookies used by us. Some pages of our website may also contain embedded content, such as video content from YouTube, and these sites may set their own cookies.\u003cbr\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/tbody\u003e\u003c/table\u003e\u003cp\u003e\u003cu\u003e\u0026nbsp;\u003c/u\u003e\u003c/p\u003e\u003cp\u003e\u003cu\u003eCOOKIE CONTROLS.\u003c/u\u003e You can control your cookie settings as explained below. We may disclose your opt-out choices to third parties so that they can honor your preferences in accordance with applicable laws.\u003c/p\u003e\u003cp\u003e\u003cu\u003e\u0026nbsp;\u003c/u\u003e\u003c/p\u003e\u003cp\u003e\u003cu\u003eWeb Browser Controls.\u003c/u\u003e Most browsers allow you to change your cookie settings. Users can usually set their browsers to block all third-party cookies (which are those set by third-party companies collecting information on websites operated by other companies), block all cookies (including first-party cookies such as the ones We uses to collect search activity information about its users), or block specific cookies. These settings will typically be found in the “options” or “preferences” menu of your browser. In order to understand these settings, the following links may be helpful, otherwise you should use the “Help” option in your browser for more details.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://privacy.microsoft.com/en-us/windows-10-microsoft-edge-and-privacy\" target=\"_blank\"\u003eCookie settings in Microsoft Edge\u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://support.microsoft.com/en-us/help/17442/windows-internet-explorer-delete-manage-cookies\"\u003eCookie settings in Internet Explorer\u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://support.mozilla.com/en-US/kb/Cookies\" target=\"_blank\"\u003eCookie settings in Firefox\u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://www.google.com/support/chrome/bin/answer.py?hl=en\u0026answer=95647\" target=\"_blank\"\u003eCookie settings in Chrome\u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://support.apple.com/kb/PH5042\" target=\"_blank\"\u003eCookie settings in Safari web\u003c/a\u003e and \u003ca href=\"http://support.apple.com/kb/HT1677\" target=\"_blank\"\u003eiOS\u003c/a\u003e.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eWe note that an optional browser setting known as Do Not Track allows you to express your preferences regarding tracking by advertisers and other third-parties. However, we do not recognize or respond to browser-initiated DNT signals, as the Internet industry is currently still working toward defining exactly what DNT means, what it means to comply with DNT, and a common approach to responding to DNT.\u003c/p\u003e\u003cp\u003e\u003cu\u003eFlash Cookie Controls.\u003c/u\u003e You can manage the use of Flash technologies with the Flash management tools available at Adobe’s website.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cu\u003eWeb-Beacons.\u003c/u\u003e You can usually prevent the operation of web-beacons by changing your web-browser cookie settings and your ad choices, or for those in emails, by switching off images in your email client or viewing emails using only the “text” display (rather than “HTML” display”). See the “Help” section of your email client for instructions. Please see the All About Cookies website for further information about managing your options.\u003c/li\u003e\u003cli\u003e\u003cu\u003eMobile Apps.\u003c/u\u003e With respect to our mobile apps, you can stop all collection of information via an app by uninstalling the app. Also, you may be able to exercise specific privacy choices, such as enabling or disabling certain location-based services, by adjusting the permissions in your mobile device.\u003c/li\u003e\u003cli\u003e\u003cu\u003eGoogle Analytics Controls.\u003c/u\u003e To see an overview of privacy at Google and how to opt out of certain Google practices, visit https://www.google.com/intl/en/policies/privacy. You can prevent your data from being collected by Google Analytics by downloading the Google Analytics Opt-out Browser Add-on. Opting-out is generally done by the third party dropping a cookie on your browser indicating your intent to opt-out. If you get a new device, install a new browser, erase, or otherwise alter the third party’s browser cookie file, you may clear the opt-out cookie and no longer be subject to its opt-out.\u003c/li\u003e\u003cli\u003e\u003cu\u003eThird Party Advertising Controls.\u003c/u\u003e You may exercise choices regarding certain third-party advertising cookies through the following organizations:\u003cbr\u003e\u003c!--[if !supportLineBreakNewLine]--\u003e\u003c/li\u003e\u003cli\u003eDigital Advertising Alliance (“DAA”) Self-Regulatory Program for Online Behavioral Advertising. You exercise the DAA choices regarding Interest-based Advertising \u003ca href=\"https://youradchoices.com/\"\u003ehere\u003c/a\u003e. You can also download the DAA AppChoices app for control over how information about your interests is used for in-app advertising on your mobile device \u003ca href=\"https://youradchoices.com/appchoices\"\u003ehere\u003c/a\u003e.\u003cbr\u003e\u003c!--[if !supportLineBreakNewLine]--\u003e\u003c/li\u003e\u003cli\u003eEuropean Interactive Digital Advertising Alliance (“EDAA”). To learn more about the EDAA and your opt out options, see \u003ca href=\"https://www.edaa.eu/\"\u003ehttps://www.edaa.eu/\u003c/a\u003e.\u003c/li\u003e\u003cli\u003eNetwork Advertising Initiative (“NAI”). To learn more about the NAI and your opt out options for their members, see \u003ca href=\"http://www.networkadvertising.org/choices/\"\u003ehttp://www.networkadvertising.org/choices/\u003c/a\u003e.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003ePlease be aware that, even if you are able to opt out of certain Interest/behavioral/targeted -based advertising, you may continue to receive other types of ads. Opting out only means that those selected members should no longer deliver certain Interest/behavioral/targeted -based ads to you, but does not mean you will no longer receive any targeted content and/or ads (e.g., from other ad networks). Dictionary is not responsible for effectiveness of, or compliance with, any third-parties’ opt out options or programs or the accuracy of their statements regarding their programs.\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cu\u003ePromotional Communications.\u003c/u\u003e You can opt-out of receiving certain promotional communications (e-mails and push notifications) from us at any time by (i) for e-mails, following the instructions as provided in e-mails to click on the unsubscribe link; and (ii) for push notifications or in-app messages, adjusting the permissions in your mobile device.\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cstrong\u003eHOW WE USE YOUR INFORMATION. We may use your information for the following purposes:\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cstrong\u003eIdentification and authentication: We use your identification information to verify your identity when you access and use our Services and to ensure the security of your personal information. This is so we can comply with our contractual obligations to you.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eProvide the Services: We process your personal information to facilitate the sale of and provide the Services you have requested. This is so we can comply with our contractual obligations to you.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eImproving our Services: We analyze information about how you use our Services to provide an improved experience for our customers of all our Services, including product testing and site analytics. It is in our legitimate business interests to use the information provided to us for this purpose, so we can understand any issues with our Services and improve them.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eCompensating our partners: We process your personal information for purposes of calculating compensation to be paid to our third party product/service providers and distributors and to analyze usage across products, services and distribution partner/channel. It is in our legitimate interest to appropriately determine amounts to be paid to our partners and inform our product roadmap and distribution strategy.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eCommunicating with you: We may use your personal information when we communicate with you, for example if we are providing information about changes to the terms and conditions or if you contact us with questions. It is in our legitimate interest that we are able to provide you with appropriate responses and provide you with notices about our Services.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eMarketing: We may use your personal information to deliver relevant advertisements to you and measure the effectiveness of the advertising we serve to you. It is in our legitimate interest to provide more relevant and interesting advertising messages and inform our marketing strategy. We may use automated decision-making to deliver tailored advertisements based on your personal information. Where necessary, we will obtain your consent before sending such marketing messages.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eExercising our rights: We may use your personal information to exercise our legal rights where it is necessary to do so, for example to detect, prevent and respond to fraud claims, intellectual property infringement claims or violations of law or our Terms of Service.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eComplying with our obligations: We may process your personal information to, for example, carry out fraud prevention checks or comply with other legal or regulatory requirements, where this is explicitly required by law.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eCustomizing your experience: When you use the Services, we may use your personal information to improve your experience of the Services, such as by providing interactive or personalized elements on the Services and providing you with content based on your interests. We may use automated decision-making to customize your experience based on your personal information.\u003cbr\u003eWe may also aggregate and de-identify your information in such a way that you may not reasonably be re-identified by us or any other company, and may use this information for any other purpose.\u003c/strong\u003e\u003c/li\u003e\u003c/ul\u003e\u003cp\u003e\u003cstrong\u003eHOW WE SHARE YOUR INFORMATION. We share user information with others for various reasons. What information we make available to other companies depends on the nature of our relationships with them.\u003c/strong\u003e\u003c/p\u003e\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cstrong\u003eService Providers: We may share your information with vendors who provide services on our behalf such as payment processing, voice transcription, email messaging, customer service, trouble shooting, survey providers, video players.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eContests/Sweepstakes Partners: When you sign up to participate in a contest or sweepstakes, your information may be provided to our sweepstakes or contest advertisers, operators, or sponsors and the use of that information will be also governed by those advertisers, operators, or sponsors’ privacy policies or practices.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eGroup Companies: We may share your information with our affiliates, which are entities under common ownership or control of our ultimate parent company, Rock Holdings Inc. for security, internal reporting and regulatory compliance.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eFraud prevention: We may disclose your information when we believe disclosure is necessary to investigate, prevent, or respond to suspected illegal or fraudulent activity or to protect the safety, rights, or property of us, our users, or others.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eLaw enforcement purposes and public safety: If requested or required by government authorities, such as law enforcement authorities, courts, or regulators, or otherwise to comply with the law, we may disclose any information we have about our users. We may disclose information collected about you in order to exercise or protect legal rights or defend against legal claims. We also may be required to disclose an individual’s personal information in response to a lawful request by public authorities, including to meet national security or law enforcement requirements.\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eSale or merger of our business: We may transfer your information to a third party if we or any of our affiliates are involved in a corporate restructuring (e.g., a sale, merger, or other transfer of assets).\u003c/strong\u003e\u003c/li\u003e\u003cli\u003e\u003cstrong\u003eAdvertisers and advertising networks: Advertisers and advertising networks place ads on our Sites. These companies may collect information, such as your computer’s IP address, browser information, mobile device ID, and search queries, as you use our Site and Services. They also may use cookies and other technologies to collect this information when you use our Service as described above (Cookie \u0026amp; other Trackers).\u003cbr\u003e\u003c!--[if !supportLineBreakNewLine]--\u003e\u003cbr\u003e\u003c/strong\u003e\u003c/li\u003e\u003c/ul\u003e\u003cstrong\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eWe require all third parties to respect your privacy and to treat your information in accordance with the law. We only permit third parties to process your personal data for specified purposes and in accordance with our agreements with them.\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eSECURITY. We take the security of your information seriously and use appropriate technical and organizational measures to protect your information against unauthorized or unlawful processing and against accidental loss, destruction or damage. We also limit access to information about you to employees who reasonably need access to it to provide products or services to you, or in order to do their jobs. However, because no security system can be 100% effective, we cannot completely guarantee the security of any information we may have collected from or about you.\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eRETENTION. We retain the information we collect about and from you for as long as necessary to fulfill the purpose we collected it for and for the purpose of satisfying any legal, accounting, or reporting requirements. To determine the appropriate retention period for personal information we process, we consider the amount, nature, and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your information, the purposes for which we process your personal data and whether we can achieve those purposes through other means, and the applicable legal, accounting, or reporting requirements. In some circumstances we may aggregate and de-identify your information in such a way that you may not reasonably be re-identified by us or any other company in which case we may use this information indefinitely without further notice to you. In some circumstances you can ask us to delete your data: see ACCESS, REVIEW, REVISION \u0026amp; DELETION RIGHTS below for further information.\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eYOUR CALIFORNIA PRIVACY RIGHTS. Consumers residing in California have certain rights with respect to their personal information under the California Consumer Privacy Act or (“CCPA”) (California Civil Code Section 1798.100 et seq.) and the “Shine the Light” Law (California Civil Code Section 1798.83). If you are a California resident, this section applies to you.\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u003cem\u003eCalifornia Consumer Privacy Act\u003c/em\u003e\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cem\u003eAdditional Disclosures Related to the Collection, Use, Disclosure and Sale of Personal Information\u003c/em\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eCollection and Use of Personal Information:\u0026nbsp;\u003c/strong\u003eIn the preceding 12 months, we have collected the following categories of personal information: identifiers, such as name, email address, mailing address, phone number, and IP address; categories of personal information described in subdivision (e) of Section 1798.80, such as name, address, credit card number, debit card number, or other financial information; commercial information, such as record of purchases; internet or other electronic network activity information, such as log data and information about the devices and computers you use to access the Services; geolocation data, such as GPS, Bluetooth, or WiFi signals, where you have allowed access to that information; other information you choose to provide, such as messages to customer service; inferences drawn from any of this information, including about the content or ads that may be of interest to you. For details about the precise data points we collect and the categories of sources of such collection, please see Section 3, “INFORMATION WE COLLECT AND MEANS OF COLLECTION” above. We collect personal information for the business and commercial purposes described in Section 4, “HOW WE USE YOUR INFORMATION” above.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003ca name=\"_Hlk42192501\"\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/a\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eDisclosure of Personal Information:\u0026nbsp;\u003c/strong\u003eWe may share your personal information with third parties as described in Section 5, “HOW WE SHARE YOUR INFORMATION” above. In the preceding 12 months, we have disclosed the following categories of personal information for business or commercial purposes to the following categories of recipients.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003ctable border=\"1\" cellpadding=\"0\" cellspacing=\"0\"\u003e\u003ctbody\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003e\u003cstrong\u003e\u003cem\u003eCategory of Personal Information\u0026nbsp;\u003c/em\u003e\u003c/strong\u003e\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003e\u003cstrong\u003e\u003cem\u003eCategories of Recipients\u0026nbsp;\u003c/em\u003e\u003c/strong\u003e\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eIdentifiers\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks, data analytics providers, data brokers, operating systems and platforms, email service providers, data storage providers, customer support providers, payment processing providers, account management providers\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eCommercial information\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003ePayment processing providers\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eInternet or other electronic network activity information\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks, data analytics providers, data brokers, operating systems and platforms, data storage providers\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eGeolocation data\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks, data analytics providers, operating systems and platforms, data storage providers\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eInferences\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks, data analytics providers, operating systems and platforms, data storage providers\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/tbody\u003e\u003c/table\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eSale of Personal Information\u003c/strong\u003e: California law requires that we provide transparency about personal information we “sell,” which for the purposes of the CCPA, broadly means scenarios in which Dictionary has shared personal information with third parties in exchange for valuable consideration. In the preceding 12 months, we have “sold” the following categories of personal information, depending on how the CCPA is interpreted, to the following categories of third parties:\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003ctable border=\"1\" cellpadding=\"0\" cellspacing=\"0\"\u003e\u003ctbody\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003e\u003cstrong\u003e\u003cem\u003eCategory of Personal Information\u0026nbsp;\u003c/em\u003e\u003c/strong\u003e\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003e\u003cstrong\u003e\u003cem\u003eCategories of Recipients\u0026nbsp;\u003c/em\u003e\u003c/strong\u003e\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eIdentifiers\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eInternet or other electronic network activity information\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003ctr\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eInferences\u003c/p\u003e\u003c/td\u003e\u003ctd valign=\"top\" width=\"312\"\u003e\u003cp\u003eAdvertising networks\u003c/p\u003e\u003c/td\u003e\u003c/tr\u003e\u003c/tbody\u003e\u003c/table\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003ca name=\"_Hlk41991251\"\u003eWe “sell” personal information for the following commercial purposes:\u0026nbsp;\u003c/a\u003e to provide you with targeted advertising. California consumers above the age of 16 have the right to opt out of these sales at any time. We do not knowingly sell personal information about consumers under the age of 16. Please visit our “Do Not Sell My Info” webpage \u003ca href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__privacyportal.onetrust.com_webform_b7274337-2D1a89-2D410c-2Db2c8-2D1d563f27053a_draft_291e3f46-2D17e2-2D4417-2Db88e-2D843d45f1b775\u0026d=DwMGaQ\u0026c=XRWvQHnpdBDRh-yzrHjqLpXuHNC_9nanQc6pPG_SpT0\u0026r=a_09kzNoh240RRfs1MZExyTSkbMl4260-b00r2zDWik\u0026m=JqLK6mRjXzIfiLNRYFCmEtX2c68-6IigW_YRZaHX5n4\u0026s=M-L-GHa6uoGgX35nLqjzCLDkGe6gbnB1NIIhoiX9yMw\u0026e=\"\u003ehere\u003c/a\u003e to learn more about how we sell information and to make an opt-out request.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cem\u003e\u0026nbsp;\u003c/em\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cem\u003eYour Consumer Rights\u003c/em\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003eIf you are a California resident, subject to certain limitations, you have the right to (1) request more information about the categories and specific pieces of personal information we have collected, sold and disclosed for a business purpose in the last 12 months, (2) deletion of your personal information, and (3) opt out of the sale of your personal information, if applicable, and (4) be free from discrimination for exercising your rights under the CCPA. You may make these requests by visiting \u003ca href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__privacyportal.onetrust.com_webform_b7274337-2D1a89-2D410c-2Db2c8-2D1d563f27053a_draft_d1e5169c-2D8ea0-2D47a2-2Db4fc-2D5c467c7fe7e4\u0026d=DwMGaQ\u0026c=XRWvQHnpdBDRh-yzrHjqLpXuHNC_9nanQc6pPG_SpT0\u0026r=a_09kzNoh240RRfs1MZExyTSkbMl4260-b00r2zDWik\u0026m=JqLK6mRjXzIfiLNRYFCmEtX2c68-6IigW_YRZaHX5n4\u0026s=YwoMnubJ85rqf1npMQCrZ6jnCOiVtnSrhFUES6JQpQI\u0026e=\"\u003ethis webpage\u003c/a\u003e or emailing us at \u003ca href=\"mailto:privacy@dictionary.com\"\u003eprivacy@dictionary.com\u003c/a\u003e. To opt out of sales, you can also visit our “Do Not Sell My Info” webpage \u003ca href=\"https://urldefense.proofpoint.com/v2/url?u=https-3A__privacyportal.onetrust.com_webform_b7274337-2D1a89-2D410c-2Db2c8-2D1d563f27053a_draft_291e3f46-2D17e2-2D4417-2Db88e-2D843d45f1b775\u0026d=DwMGaQ\u0026c=XRWvQHnpdBDRh-yzrHjqLpXuHNC_9nanQc6pPG_SpT0\u0026r=a_09kzNoh240RRfs1MZExyTSkbMl4260-b00r2zDWik\u0026m=JqLK6mRjXzIfiLNRYFCmEtX2c68-6IigW_YRZaHX5n4\u0026s=M-L-GHa6uoGgX35nLqjzCLDkGe6gbnB1NIIhoiX9yMw\u0026e=\"\u003ehere\u003c/a\u003e. We will verify your request by confirming the email address we have on file for you.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003eIf we receive your request from an authorized agent, we may ask for evidence that you have provided such agent with a power of attorney or that the agent otherwise has valid written authority to submit requests to exercise rights on your behalf. If you are an authorized agent seeking to make a request, please contact us at \u003ca href=\"mailto:privacy@dictionary.com\"\u003eprivacy@dictionary.com\u003c/a\u003e.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u003cem\u003eShine the Light\u003c/em\u003e\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003eIf you are a resident of the State of California, under the California Civil Code, you have the right to request from companies conducting business in California a list of all third parties to which the company has disclosed personal information (as defined by California law) during the preceding year for direct marketing purposes. Alternatively, the law provides that if a company has a privacy policy that gives either an opt-out for use of your personal information by third parties for their own marketing purposes, the company may instead provide you with information on how to exercise your disclosure choice options. We qualify for the alternative option. If you are a California resident and you want to opt out of such sharing, please send your request via email to \u003ca href=\"mailto:privacy@dictionary.com\"\u003eprivacy@dictionary.com\u003c/a\u003e and include your name, street address, city, state, and zip code (your street address is optional if you wish to receive a response to your request via email. Please include your zip code for our own record-keeping).\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u003cu\u003eLegal rights applicable to personal data collected in the EEA.\u003c/u\u003e\u003c/strong\u003e Pursuant to the \u003ca href=\"http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.119.01.0001.01.ENG\u0026toc=OJ:L:2016:119:TOC\"\u003eEU General Data Protection Regulation (Regulation 2016/679)\u003c/a\u003e (“GDPR”) natural persons (called data subjects) are afforded certain rights regarding their personal data, including the right to access, correct, delete, restrict or object to our use of, and receive a portable copy in a usable electronic format of your personal information. You also have the right to withdraw any consent that you have previously provided to us.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003eIf you would like to exercise any of the rights outlined above, and the law of your jurisdiction requires us to honor that request, please send your request in writing to \u003ca href=\"mailto:privacy@dictionary.com\"\u003eprivacy@dictionary.com\u003c/a\u003e. To assist us in processing your request in timely manner, please make your request in English if you are able to do so. Your request should include any information relevant to your request, including, without limitation: (i) your name, email and postal address; (ii) the specific right you are asserting (e.g., removal); and (iii) if you are requesting removal, a brief explanation of why you believe such information should be removed.\u003c/p\u003e\u0026nbsp;\u003cp\u003eTo help us prevent fraudulent removal requests, please also include a legible copy of a document that verifies your identity. You need not provide a government-issued document; a utility bill or similar mailing will suffice. You may also obscure parts of the document such as identifying numbers so long as the document continues to clearly identify you. If you are making the request on behalf of another person, please indicate your relationship to that person and provide evidence of your authority to make such request. All requests for removal will be reviewed by Dictionary’s legal and compliance team and we reserve the right, in compliance with applicable laws, to accept or reject, or make further inquiries regarding, any requests.\u003c/p\u003e\u0026nbsp;\u003cp\u003eYou will not have to pay a fee to access your personal data (or to exercise any of the other rights). However, we may charge a reasonable fee if your request is clearly unfounded, repetitive, or excessive. Alternatively, we may refuse to comply with your request in these circumstances.\u003c/p\u003e\u0026nbsp;\u003cp\u003eWe try to respond to all legitimate requests within one month. Occasionally it may take us longer than a month if your request is particularly complex or you have made a number of requests. In this case, we will notify you and keep you updated.\u003c/p\u003e\u0026nbsp;\u003cp\u003eWe are committed to working with you to obtain a fair resolution of any complaint or concern about privacy. If, however, you believe that we have not been able to assist with your complaint or concern, you may have the right to make a complaint to the data protection authority of your country of residence.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eINTERNATIONAL TRANSFER. If you are receiving the Services from outside the United States, your data will be transferred to and stored in our servers in the U.S. By using the Services, you consent to our collection and use of your data as described in this Privacy \u0026amp; Cookie Policy. Further, if you are receiving the Services from the European Economic Area (the “EEA”) we note your information may be transferred to, stored, and processed in a country that is not regarded as providing the same level of protection for personal information as the laws of your home country, and may be available to the government of those countries under a lawful order made in those countries. However, whenever we transfer your personal data out of the EEA, we ensure a similar degree of protection is afforded to it by ensuring at least one of the following safeguards is implemented:\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cul\u003e\u003cli\u003eModel Contracts. Where appropriate, we put in place specific contractual commitments in accordance with applicable legal requirements to provide adequate protections for your information. For further details, see European Commission: Model contracts for the transfer of personal data to third countries.\u003c/li\u003e\u003cli\u003ePrivacy Shield. We may also transfer data to the U.S. under the Privacy Shield framework which requires them to provide similar protection to personal data shared between the EU and the US.\u003c/li\u003e\u003c/ul\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003e\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cstrong\u003eCONTACT INFORMATION. If you have any questions or concerns about this Privacy \u0026amp; Cookie Policy or the manner in which your information is processed, collected (in the EEA), or would like to submit a request to us, please contact us by using our\u0026nbsp;\u003c/strong\u003e\u003ca href=\"https://www.dictionary.com/e/contact/\"\u003e\u003cstrong\u003eContact Us\u003c/strong\u003e\u003c/a\u003e\u003cstrong\u003e\u0026nbsp;web page or by emailing\u0026nbsp;\u003c/strong\u003e\u003ca href=\"mailto:privacy@dictionary.com\"\u003e\u003cstrong\u003eprivacy@dictionary.com\u003c/strong\u003e\u003c/a\u003e\u003cstrong\u003e.\u0026nbsp;\u003c/strong\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003cp\u003eDictionary.com is the controller (as provided under laws applicable to EEA jurisdictions) responsible for the personal information we collect and process. Dictionary.com takes their clients’ (and the customers of their clients) data protection seriously, and has appointed DPR Group as their Data Protection Representative in the European Union which can be contacted by sending an email to DPR Group at \u003ca href=\"mailto:dictionary@dpr.eu.com\"\u003edictionary@dpr.eu.com\u003c/a\u003e. Please note that this email address is only for privacy-related inquiries. General web site assistance can be obtained through our \u003ca href=\"https://www.dictionary.com/e/contact/\"\u003eContact Us\u003c/a\u003e web page or by emailing \u003ca href=\"mailto:support@dictionary.zendesk.com\"\u003esupport@dictionary.zendesk.com\u003c/a\u003e.\u003c/p\u003e\u0026nbsp;\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u0026nbsp;\u003c/strong\u003e\u003c/header\u003e"} //]]> </script><div id="content"><div class="lex-container"><div class="banbox mobile_banner"><div class="container content-ban"><aside class="banner adUnit"><div id="lexi_serp_dkt_atf_728x90_10"></div><div id="lexi_serp_mweb_atf_320x50_1"></div></aside></div></div><div class="main-content"><div class="container layout"><div class="lex-content"><div class="lex-filling"><div><div class="breadcrumbs layout"><p><a href="/web/20211115165426/https://www.lexico.com/" data-behaviour="ga-event-breadcrumb" data-value="Homepage anchor">Home</a><span class="chevron"></span> <a data-behaviour="ga-event" data-value="secondary breadcrumb" href="/web/20211115165426/https://www.lexico.com/cookies-terms-privacy">Terms, Cookies, &amp; Privacy</a></p></div><div class="non-lexical-socials"><div class="socials"><ul><li><a class="ico-fb" href="https://web.archive.org/web/20211115165426/https://www.facebook.com/dialog/share?app_id=292327308384887&amp;display=page&amp;href=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy&amp;redirect_uri=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy" target="_blank" rel="noopener" title="Share on Facebook" onclick="javascript:ga('send', 'event', 'share_this_entry', 'facebook', 'https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy');" data-behaviour="ga-event-entry-sharing" data-value="Facebook"><i class="transition"><svg enable-background="new 0 0 30 30" viewbox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="m15 0c-8.284 0-15 6.716-15 15 0 8.285 6.716 15 15 15 8.284 0 15-6.715 15-15 0-8.284-6.716-15-15-15m3.214 15.01h-2.102c0 3.357 0 7.495 0 7.495h-3.115c0 0 0-4.095 0-7.495h-1.482v-2.647h1.482v-1.714c0-1.227.582-3.144 3.143-3.144l2.307.009v2.571c0 0-1.404 0-1.676 0-.271 0-.66.136-.66.722v1.556h2.375l-.272 2.647" fill="#37589a"/></svg></i></a></li> <li><a class="ico-tw" href="https://web.archive.org/web/20211115165426/https://twitter.com/intent/tweet?text=Terms%2C%20Cookies%2C%20%26%20Privacy%20-%20Lexico.com&amp;url=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy" target="_blank" rel="noopener" title="Share on Twitter" onclick="javascript:ga('send', 'event', 'share_this_entry', 'twitter', 'https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy');" data-behaviour="ga-event-entry-sharing" data-value="Twitter"><i class="transition"><svg enable-background="new 0 0 30 30" viewbox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="m15 0c-8.284 0-15 6.716-15 15 0 8.285 6.716 15 15 15 8.283 0 15-6.715 15-15 0-8.284-6.717-15-15-15m5.965 11.943c.006.132.001.264.001.397 0 4.066-3.095 8.755-8.757 8.755-1.738 0-3.356-.509-4.718-1.382.242.028.486.041.734.041 1.443 0 2.769-.489 3.821-1.314-1.345-.025-2.483-.916-2.874-2.136.188.033.38.053.579.053.281 0 .553-.039.81-.107-1.407-.284-2.468-1.527-2.468-3.02 0-.013 0-.026 0-.039.416.231.891.368 1.395.384-.825-.551-1.369-1.494-1.369-2.562 0-.564.152-1.093.417-1.547 1.517 1.863 3.786 3.087 6.342 3.215-.052-.226-.08-.459-.08-.701 0-1.699 1.377-3.076 3.079-3.076.885 0 1.685.374 2.246.97.699-.137 1.359-.394 1.955-.748-.232.719-.719 1.322-1.354 1.703.624-.073 1.217-.24 1.768-.483-.413.618-.936 1.16-1.536 1.595" fill="#38a8e0"/></svg></i></a></li> <li><a class="ico-lin" href="https://web.archive.org/web/20211115165426/https://www.linkedin.com/cws/share?url=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy" target="_blank" rel="noopener" title="Share on Linkedin+" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600'); ga('send', 'event', 'share_this_entry', 'linkedin', 'https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy'); return false;" data-behaviour="ga-event-entry-sharing" data-value="LinkedIn"><i class="transition"><svg enable-background="new 0 0 32 32" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><g fill="#006799"><path d="m16.959 14.824v-.033c-.006.012-.015.023-.022.033h.022"/><path d="m16 0c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16 8.836 0 16-7.162 16-16 0-8.836-7.164-16-16-16m-4.367 23.646h-3.431v-10.316h3.431v10.316m-1.716-11.726h-.022c-1.151 0-1.895-.793-1.895-1.783 0-1.012.768-1.783 1.939-1.783 1.174 0 1.896.771 1.918 1.783 0 .99-.744 1.783-1.94 1.783m14.08 11.726h-3.43v-5.52c0-1.387-.496-2.333-1.738-2.333-.946 0-1.512.64-1.76 1.255-.091.221-.113.525-.113.836v5.762h-3.429c0 0 .044-9.349 0-10.316h3.429v1.461c.457-.705 1.271-1.703 3.092-1.703 2.256 0 3.949 1.473 3.949 4.642v5.916"/></g></svg></i></a></li> </ul></div> </div><div class="textBlock layout"><h1><span>Terms, Cookies, &amp; Privacy</span></h1><p><header><p align="center">Terms, Cookies, &amp; Privacy</p><p><br></p><p>TERMS OF SERVICE</p><p>AGREEMENT AND GENERAL TERMS OF USE</p><p>Lexico.com is owned and operated by Dictionary.com, LLC (“Dictionary,” “we,” “us,” or “our”). These Terms of Service (the “Terms”) constitute the agreement between us and you as a user who accesses, subscribes to access, or otherwise establishes a connection (“user,” “you,” or “your”) to the world wide web sites known as Dictionary.com, Thesaurus.com, and Lexico.com (including any sub-domains) (the “Sites”) and any related Dictionary products and services. Our provision of the Site and related products and services, is collectively referred to as the “Services.”</p><p><br></p><p>PLEASE NOTE THAT THESE TERMS OF USE CONTAIN A MANDATORY AND BINDING ARBITRATION, CLASS ACTION WAIVER, AND WAIVER OF RIGHT TO JURY TRIAL CLAUSE, WHICH AFFECTS YOUR RIGHTS REGARDING HOW TO RESOLVE ANY DISPUTE WITH DICTIONARY. PLEASE READ IT CAREFULLY.</p><p>This Site may collect personal information from our users. By using the Services and/or agreeing to these Terms, you consent to the collection, storage, and processing of your data as set forth in our Privacy &amp; Cookie Policy.</p><p>Our Services are intended for general audiences over the age of 16 years old. We do not knowingly collect information from children under the age of 16 years old.</p><p><br></p><p align="center">IF YOU ARE NOT AT LEAST 16 YEARS OLD, DO NOT USE THE SERVICES.</p><p>You must agree to abide by all of the provisions of these Terms in order to remain an authorized user of the Site and your use of the Site constitutes your agreement to abide by these Terms. You are solely responsible for your use of the Site and for ensuring that your use complies fully with the provisions of these Terms. Your rights are personal and non-assignable. This means that you will be responsible for the acts of anyone accessing the Site through you or using your name and password.</p><p>We reserve the right, in our sole discretion, to change any or all of the provisions of these Terms at any time. We will notify you of any material changes by posting them on the Site or through other reasonable means of providing notice. Any changes to these Terms will be effective immediately upon notice to you unless we advise otherwise. Your use of the Site after notice of changes to this agreement will be deemed your acceptance of the changes. We reserve the right, in our sole discretion, to change, limit, or discontinue any aspect, content, or feature of the Site, as well as any aspect pertaining to the use of the Services.</p><p>IF YOU DO NOT AGREE TO THE PROVISIONS OF THESE TERMS OR ARE NOT SATISFIED WITH THE SITE OR SERVICES, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE YOUR USE OF THE SITE AND/OR SERVICES, AS APPLICABLE.</p><p>USER ACTIVITIES AND INFORMATION ON THE SITE; LINKS</p><p>You will use the Site, Services, and any tools, features, content, material, or information found on the Site solely for lawful, non-commercial purposes. You will not allow any third party to access the Site through your account, upload to, distribute to, or otherwise disseminate through the Site any material or information of any kind that is libelous, defamatory, obscene, pornographic, abusive, or otherwise violates any law or infringes or violates any rights of any other person or entity, or contains a solicitation of funds, advertising, or a solicitation for goods or services.</p><p>You warrant that any material or information that you make available through the Site, including, for example, postings to comment sections and forums, is solely your original work, or that you have all necessary rights to make the material or information of any other person or entity available on the Site. You will be solely responsible for the content of any material or information that you make available through the Site. You will also be liable for any damage resulting from making any material or information available through the Site.</p><p>By making any material or information available through the Site, you automatically grant to Dictionary a worldwide, royalty-free, perpetual, irrevocable, and non-exclusive right and license to use, reproduce, modify, adapt, publish, translate, distribute and sublicense any such material or information (in whole or in part) and/or to incorporate it in other works regardless of form, media, or technology. By making any material or information available through the Site, you also grant to users other than yourself the right and license to access, view, store, or reproduce your material and information for that user’s personal use.</p><p>We have no obligation to, and does not and cannot, review every item of material or information that you and users other than yourself made available through the Site, and we are not responsible for any content of this material or information. However, we reserve the right to delete, move, or edit any material or information that it deems, in its sole discretion, unacceptable, libelous, defamatory, obscene, pornographic, abusive, or otherwise in violation of any law or that infringes or violates any rights of any other person or entity. Further, we reserve the right at all times to disclose any material or information as necessary to satisfy any law, regulation, or governmental request.</p><p>We reserve the right to collect, use, and distribute demographic data about you and your use of the Site in forms that do not identify you individually or reveal your identity.</p><p>The Site and Services may provide links to other sites or resources. Because we do not review or have control over such sites and resources, we shall not be responsible or liable for use of or reliance on any content, products, services or information at such sites or resources. Inclusion of any links does not imply any endorsement, affiliation, approval, association or sponsorship by Dictionary of the linked websites, resources, their operators or owners. When you select a link, you may be leaving our Site. The information available on third party websites may have certain restrictions on its use or distribution which differ from this agreement.</p><p>RIGHTS IN SITE CONTENT AND THE SITE</p><p>All content provided on the Site is protected by copyright, trademark, and other applicable intellectual property and proprietary rights laws and is owned, controlled, and/or licensed by Dictionary. The Site is protected by copyright, patent, trademark, and other applicable intellectual property and proprietary rights laws and is owned, controlled, and/or licensed by Dictionary. Any and all trademarks appearing on the Site are the property of Dictionary or their respective owners.</p><p>You will not modify, publish, transmit, participate in the transfer or sale, create derivative works, or in any way exploit, any of the content, in whole or in part, found on the Site. You agree that all rights to the Site, content, and any derivative work will remain with us. You will download copyrighted content solely for your personal use, but will make no other use of the content without the express written permission of Dictionary and the copyright owner. You will not make any changes to any content that you are permitted to download under these Terms, and in particular you will not delete or alter any proprietary rights or attribution notices in any content. You agree that you do not acquire any ownership rights in any downloaded content.</p><p>DISCLAIMER OF WARRANTIES &amp; LIMITATION OF LIABILITY</p><p>YOU EXPRESSLY AGREE THAT USE OF THE SITE IS AT YOUR SOLE RISK. NEITHER DICTIONARY, NOR ANY OF ITS AFFILIATES, EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS, OR LICENSORS WARRANT THAT THE SITE WILL BE UNINTERRUPTED OR ERROR FREE NOR DO THEY MAKE ANY WARRANTY AS TO THE RESULTS THAT MAY BE OBTAINED FROM THE USE OF THE SITE, OR AS TO THE ACCURACY, RELIABILITY, COMPLETENESS, OR CONTENTS OF ANY CONTENT, INFORMATION, MATERIAL, POSTINGS, OR POSTING RESPONSES FOUND ON THE SITE, ANY MERCHANDISE OR SERVICES PROVIDED THROUGH THE SITE, OR ANY LINKS TO OTHER SITES MADE AVAILABLE ON THE SITE.</p><p>TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE SITE AND ALL CONTENT, MATERIAL, INFORMATION, POSTINGS, OR POSTING RESPONSES FOUND ON THE SITE ARE PROVIDED ON AN “AS IS” BASIS WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE OR NON-INFRINGEMENT OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.</p><p>UNDER NO CIRCUMSTANCES, INCLUDING, BUT NOT LIMITED TO, NEGLIGENCE, WILL DICTIONARY.COM (OR ANY OF ITS PARENTS, SUBSIDIARIES, AFFILIATES, EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS, OR LICENSORS, AND THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AND AGENTS), BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES THAT RESULT FROM THE USE OF, OR THE INABILITY TO USE, ANY TOOL, CONTENT, INFORMATION, MATERIAL, POSTINGS, OR POSTING RESPONSES ON THE SITE OR THE SITE ITSELF. THESE LIMITATIONS APPLY REGARDLESS OF WHETHER THE PARTY LIABLE OR ALLEGEDLY LIABLE WAS ADVISED, HAD OTHER REASON TO KNOW, OR IN FACT KNEW OF THE POSSIBILITY OF SUCH DAMAGES. YOU SPECIFICALLY ACKNOWLEDGE AND AGREE THAT DICTIONARY (AND ANY OF ITS PARENTS, SUBSIDIARIES, AFFILIATES, EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS, OR LICENSORS, AND THEIR RESPECTIVE DIRECTORS, OFFICERS, EMPLOYEES, AND AGENTS), IS NOT LIABLE FOR ANY DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF ANY USER, INCLUDING YOU.</p><p><strong>INDEMNIFICATION.</strong> You agree to defend, indemnify and hold harmless Dictionary (and any of its parents, subsidiaries, affiliates, employees, agents, third party content providers, or licensors, and their respective directors, officers, employees, and agents) from and against all claims, liability, and expenses, including attorneys’ fees and legal fees and costs, arising out of your use of the Site or your breach of any provision of this agreement. We reserve the right, in its sole discretion and at its own expense, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you. You will cooperate as fully as reasonably required in the defense of any claim.</p><p><strong>&nbsp;</strong></p><p><strong>NOTICES BETWEEN US.</strong> You will contact us by submitting your message via <a href="https://web.archive.org/web/20211115165426/https://www.dictionary.com/e/contact/">our form</a>. We will contact you by the e-mail address you provide to us, or by posting a notice on the Site.</p><p><strong>&nbsp;</strong></p><p><strong>TERMINATION.</strong> We may terminate this agreement and your use of the Site at any time. We also have the right to immediately terminate your use of the Site in the event of any conduct by you which we, in our sole discretion, consider to be unacceptable, or in the event of any breach by you of these Terms.</p><p><br></p><p><strong>LAW GOVERNING PERFORMANCE AND DISPUTES.</strong> Any dispute arising from the Site and your use of the Services will be governed by and construed and enforced in accordance with the laws of the state of Michigan, except to the extent preempted by U.S. federal law, without regard to conflict of law rules or principles (whether of Michigan or any other jurisdiction) that would cause the application of the laws of any other jurisdiction. Any dispute between the parties that is not subject to arbitration or cannot be heard in small claims court will be resolved in the state or federal courts of Michigan and the United States, respectively, sitting in Wayne County, Michigan.</p><p><strong>&nbsp;</strong></p><p><strong>CLAIMS SUBJECT TO MANDATORY AND BINDING ARBITRATION, CLASS WAIVER, AND JURY TRIAL WAIVER.&nbsp;</strong>Please read the following important section carefully.<br><!--[if !supportLineBreakNewLine]--></p><ul><li>Except for small claims disputes or claims related to intellectual property, you and we waive our rights to a jury trial and to have any dispute arising out of or related to the Sites or Services resolved in court. Instead, disputes relating in any way to the Sites or Services must be submitted to binding arbitration administered by JAMS. The Federal Arbitration Act and federal arbitration law apply to this agreement. The most recent version of the JAMS Rules are available at www.jamsadr.com/rules-download and are hereby incorporated by reference. The arbitrator, not the court, will resolve the issue of arbitrability.</li><li>You and we agree that any dispute arising out of or related to the Sites or our Services is personal to you and us and that any dispute will be resolved solely through individual action, and will not be brought as a class arbitration, class action, or any other type of representative proceeding.</li><li>You and we agree that for any arbitration you initiate, you will pay the filing fee (up to a maximum of $250 if you are a consumer), and we will pay the remaining JAMS fees and costs. For any arbitration initiated by us, we will pay all JAMS fees and costs. You have the right to an in-person arbitration hearing in your hometown area. Any state or federal court having jurisdiction thereof may enter judgment of any award the arbitrator renders.</li><li>You have the right to opt out of binding arbitration within 30 days of the date you first accepted the terms of this section by sending an email to <a href="https://web.archive.org/web/20211115165426/mailto:privacy@dictionary.com">privacy@dictionary.com</a>. In order to be effective, the opt-out notice must include your full name and address and clearly indicate your intent to opt out of binding arbitration. By opting out of binding arbitration, you are agreeing to resolve disputes in accordance with the section, "Governing Law and Forum Selection."</li><li>If any portion of this section is found to be unenforceable or unlawful for any reason, (a) the unenforceable or unlawful provision shall be severed from these Terms of Use; (b) severance of the unenforceable or unlawful provision shall have no impact whatsoever on the remainder of this section or the parties' ability to compel arbitration of any remaining claims on an individual basis pursuant to this section; and (c) to the extent that any claims must therefore proceed on a class, collective, consolidated, or representative basis, such claims must be litigated in a civil court of competent jurisdiction and not in arbitration, and the parties agree that litigation of those claims shall be stayed pending the outcome of any individual claims in arbitration. Further, if any part of this section is found to prohibit an individual claim seeking public injunctive relief, that provision will have no effect to the extent such relief is allowed to be sought out of arbitration, and the remainder of this section will be enforceable.</li></ul><p><strong>&nbsp;</strong></p><p><strong>GENERAL TERMS.</strong> These Terms and any posted rules on the Site constitute the entire agreement of the parties with respect to the subject matter hereof. No waiver by Dictionary of any breach or default under these Terms will be deemed to be a waiver of any preceding or subsequent breach or default. Our agreement will be binding upon and inure to the benefit of Dictionary and its successors, trustees, and permitted assignees. We may assign this agreement or any of its rights or obligations under these Terms with or without notice to you.</p><p><br></p><p>PRIVACY &amp; COOKIE POLICY</p><p>Last Updated on: [July 9, 2020]</p><p>Dictionary.com, LLC (“Dictionary,” “we,” “us,” or “our”) respects your privacy and is committed to being transparent about the tracking technologies we use. This Privacy &amp; Cookie Policy describes our practices concerning the personal information collected through our websites, including Dictionary.com, Thesaurus.com, and Lexico.com (including any subdomains) (the “Sites”) and any related Dictionary products and services (provision of the Sites and related products and services, is collectively referred to as the “Services.”) and explains how cookies, web beacons, pixel tags, clear gifs, and other similar files or technologies may be used to collect and store the information automatically collected about your computer, device, and Service usage and how you can control the use of these technologies.</p><p><br></p><p><strong>If you do not accept the use of cookies, please disable them as described in the Cookie Controls.</strong></p><p><strong>&nbsp;</strong></p><p><strong>INTRODUCTION AND SCOPE. Below we describe what information we collect when you use our Services, how we protect that information, how long we retain it, with whom we share it, and what your privacy and cookie options are. By using the Services, you consent to our collection and use of your information as described in this Privacy &amp; Cookie Policy.</strong></p><p><br></p><p>The Services are controlled and offered by Dictionary.com from the United States of America and, regardless of your place of residence, your use of them is governed by the laws of the State of Michigan, USA. Dictionary.com makes no representations that the Services are appropriate for use in other locations or are legal in all jurisdictions. Those who access or use the Services from other locations do so at their own risk and are responsible for compliance with local law. You hereby consent to the transfer and processing of your data in the United States of America and any other jurisdiction throughout the world, which may or may not have different levels of privacy protection than those in your jurisdiction.</p><p>We will continue to evaluate this Privacy &amp; Cookie Policy against new technologies, applicable laws, business practices, and our user’s needs, and may make changes accordingly. Please check this page periodically for updates. If we make any material changes, we will post the updated Privacy &amp; Cookie Policy here, along with its effective date, and notify you by email or by means of a notice on the Sites. Except in connection with updates that materially change the ways in which we process your information, your continued use of the Services after our posting of changes to this Privacy &amp; Cookie Policy means that you agree to be bound by such changes. We will provide notice in advance of the effective date with regard to any updates that materially change the ways in which we process your personal information.</p><p>The Services may provide links to third-party websites, plug-ins and applications. Clicking on those links or enabling those connections may allow third parties to collect or share data about you. We do not control these third-party websites and are not responsible for their privacy practices.</p><p>Our Services are intended for general audiences over the age of 16 years old. We do not knowingly collect information from children under the age of 16 years old.</p><p>We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.</p><p><strong><u>IF YOU ARE NOT AT LEAST 16 YEARS OLD, DO NOT USE THE SERVICES.</u></strong></p><p><br></p><p><strong>YOUR PRIVACY CHOICES. You have choices when it comes to the privacy practices described in this Privacy &amp; Cookie Policy, including your choices related to:</strong></p><p><br></p><p>Targeted Advertising. See Web Browser Controls and Third Party Advertising Controls</p><p>Website Analytics. See Web Browser Controls and Google Analytics Controls</p><p><strong>INFORMATION WE COLLECT AND MEANS OF COLLECTION. We collect information about you from a variety of sources, including from you directly providing it to us (e.g., when you open an account or contact us), from cookies and other tracking technologies that automatically collect information in the course of your use of the Services (see the “</strong><strong>Cookies and Other Trackers</strong><strong>” section) and from various third parties and public sources. You can use some of the Services without directly providing any information, but if you do not provide certain information or limit the operation of some cookies, you may not be able to use some of the Services we offer.</strong></p><p><br></p><p><strong><u>Information you Provide directly to us.</u></strong> Access to the general content on our Sites does not require you to provide us any personal (e.g., name, date of birth), contact (e.g., email address, phone number) and/or account (username and password) information. You may provide personal information to us, if you choose to:</p><p><br></p><ul><li>Open an account or sign up for one of our newsletters;</li><li>Purchase a subscription or sign up to receive any additional services like Dictionary.com Premium;</li><li>Submit a help request, a customer services inquiry or other inquiry to us, or fill in any other forms for the purposes of receiving our Services;</li><li>Participate in some of the features accessible via the Services (for example, message boards, chat groups, social networking, games, surveys, polls, promotions, contests, or sweepstakes);</li><li>Contact us about employment opportunities posted on the Sites; or</li><li>Otherwise use the Services in a manner that you have requested.</li></ul><p><br></p><p>Depending on which of these or any other Services you use, the personal information you provide may include your name, email address, user name, home address, telephone number, demographic information (age, gender, etc.), information posted by you on sites accessed via the Services and/or information provided by you in any help request or inquiry you make to us.</p><p>There is no need to provide to us, and we strongly discourage you from, providing any <u>sensitive information</u> about you or anyone else including, details about your race or ethnicity, religious or philosophical beliefs, sex life, sexual orientation, political opinions, trade union membership or information about your health.</p><p><strong style="background-color: initial;"><u><br>Information collected via automated technologies and interactions.</u></strong><span style="background-color: initial;">&nbsp;As you interact with the Services, we may collect information via automated means about your computer or mobile device, your preference settings, your location and your activities, including:</span><strong><u>&nbsp;</u></strong></p><p><br></p><ul><li>IP address of your computer;</li><li>Unique mobile device identifier;</li><li>Technical information about your computer or mobile device such as type of device, mobile device ID number, screen resolution, web browser information and operating system or platform;</li><li>Your preferences and settings (time zone, language, etc.);</li><li>Internet provider or mobile carrier name;</li><li>The URL of the last webpage you visited before visiting the Site;</li><li>Information about your activity on the Services (e.g., your search queries, mis-formatted DNS entries, search results selected, clicks, pages viewed, search history, comments);</li><li>If you are using a mobile device, your mobile device’s geographic location (specific geographic location if you’ve enabled collection of that information, or general geographic location automatically); and</li><li>If you installed an Application, we may also collect information about that Application (e.g. the specific release date and distribution source of your Application, a unique Application ID, Application partner ID, the ads you click on, and information contained in error log files or cookies, aggregate query or click data and erroneous domain name system requests).Third-parties who provide us with products and services may also place cookies, ad tags and/or beacons that collect the information outlined above in order to provide us with products and services including, analytics tools (<a href="https://web.archive.org/web/20211115165426/https://support.google.com/analytics/answer/6004245?hl=en&amp;ref_topic=2919631" target="_blank">Google Analytics</a>), functionalities like playing video content (<a href="https://web.archive.org/web/20211115165426/https://www.brightcove.com/en/legal/privacy" target="_blank">Brightcove</a>), and targeted advertising. These third parties may also collect information about you from other sources and combine it with other information collected about you from third party websites not affiliated with us. For example, advertiser and advertising networks, as well as data analytics companies who service them, may participate in Online Behavioral Advertising and track your activity across various sites and/or devices where they display ads and record your activities, so they can show ads that they consider relevant to you.</li></ul><p><br></p><p><u>Mobile Device Location Information:</u> When you use one of our location-enabled services (for example, when you access Services from a mobile device), we may need to collect and process information about your specific GPS location (including the latitude, longitude or altitude of your mobile device) and the time the location information was recorded, and we may use that information to customize the Services with location-based information, advertising, and features. Some of these services require us to associate location data with your device ID and other information we hold about you.</p><p><br></p><p><strong>Cookies and other Trackers.</strong></p><p><u>&nbsp;</u></p><p><u>WHAT IS A COOKIE?</u> <u>Cookies</u> are text files containing small amounts of information which are downloaded to your computer or mobile device when you visit a website. Cookies are then sent back to the originating website on each subsequent visit, or to another website that recognizes that cookie. A <u>pixel tag</u> (also called a <u>web beacon</u> or clear <u>GIF</u>) is a tiny graphic with a unique identifier, embedded invisibly on a webpage (or an online ad or email) that links web pages to particular web servers and their cookies, and may be used for a variety of purposes, such as counting the number of visitors to the Sites, analyzing how users navigate around the Sites, assessing what content or ads are viewed or clicked on by our visitors. Some ad companies and game developers use “<u>flash cookies</u>” for ads and games that use Flash media technology. <u>We use the term “cookies” in this policy to refer to cookies and all such similar technologies.&nbsp;</u>Cookies are widely used in order to make websites work, or to work more efficiently, as well as to provide information to the owners of the site. We use these technologies to let you navigate between pages efficiently, remember your preferences, track your use of the Services and generally improve your experience. Ad companies we work with place cookies on your computer to track your activities across various sites so that they can display ads on our Sites and third-party websites that are more relevant to you and your interests.<br><!--[if !supportLineBreakNewLine]--></p><p>There are two broad categories of cookies:<br><!--[if !supportLineBreakNewLine]--></p><ul><li>First party cookies, served directly by us to your computer or mobile device.</li><li>Third party cookies, which are served by a third party on our behalf. We use third party cookies for functionality, performance / analytics, advertising and social media purposes.</li></ul><p><br></p><p>Cookies can remain on your computer or mobile device for different periods of time. Some cookies are ‘session cookies’, meaning that they exist only while your browser is open. These are deleted automatically once you close your browser. Other cookies are ‘permanent cookies’, meaning that they survive after your browser is closed. They can be used by websites to recognize your computer when you open your browser and browse the Internet again.</p><p><u>HOW DO WE USE COOKIES?</u> We use cookies to:</p><p><br></p><ul><li>Track traffic flow and patterns of travel in connection with our Services;</li><li>Understand the total number of visitors to our sites on an ongoing basis and the types of internet browsers (e.g. Chrome, Safari or Edge), operating systems (e.g. Windows or Mac OS), and screen resolutions used by our visitors;</li><li>Monitor and analyze the performance of our Services and to continually improve them;</li><li>Customize and enhance your online experience; and</li><li>Enable Dictionary and third-party advertising both on and off our Sites.</li></ul><p><br></p><p>Third parties whose products or services are accessible or advertised through the Services, including social networking services, may also use cookies or similar tools, and we advise you to check their privacy policies for information about their cookies and other practices. We do not control the practices of such partners and their privacy policies govern their interactions with you. We encourage you to read their privacy policies.</p><p><br></p><p><u>WHAT TYPES OF COOKIES DO WE USE?</u> The types of cookies used by us and our partners in connection with the Services can be classified into one of the five categories below. We’ve set out some further information about each category, and the purposes of the cookies we and third parties set in the following table.</p><table style="width: 100%;"><tbody><tr><td style="width: 50%; text-align: center; vertical-align: top;"><strong>TYPE OF COOKIE</strong><br></td><td style="width: 50%; text-align: center; vertical-align: middle;"><p><strong>WHAT IT DOES</strong></p></td></tr><tr><td style="width: 50.0000%;"><p>Strictly Necessary Cookies</p></td><td style="width: 50.0000%;">These cookies are essential to operate the Sites and provide the Services by helping us provide basic functionality such as loading and rendering pages on the Sites and enabling your navigation around the Sites and use of certain features. They are also used to identify and prevent fraud and improve security.<br></td></tr><tr><td style="width: 50.0000%;">Functionality Cookies<br></td><td style="width: 50.0000%;">Functionality cookies record information about choices you’ve made and allow us to tailor the Sites to you. These cookies mean that when you continue to use or come back to the Sites, we can provide you with our Services as you have asked for them to be provided. For example, these cookies allow us to store language preference. They may also be used to provide certain functionality such as playing video content.<br></td></tr><tr><td style="width: 50.0000%;">Performance / Analytics Cookies<br></td><td style="width: 50.0000%;">We use performance/analytics cookies to analyze how the Sites are accessed, used, or is performing in order to provide you with a better user experience and to maintain, operate and continually improve the Sites. For example, these cookies allow us to:<br>• Better understand our website visitors so that we can improve how we present our content;<br>• Test different design ideas for particular pages, such as our homepage;<br>• Collect information about site visitors such as where they are located and what browsers they are using;<br>• Determine the number of unique users of the Sites;<br>• Improve the Sites by measuring any errors that occur; and<br>• Conduct research and diagnostics to improve product offerings.<br></td></tr><tr><td style="width: 50.0000%;">Advertising and Tracking Cookies<br></td><td style="width: 50.0000%;">As you use our Sites, you will notice that it includes advertising. We allow third party advertising companies to place cookies on our Sites. These cookies enable such companies to track your activity across various sites where they display ads and record your activities so they can show ads that they consider relevant to you as you browse the web.<br>Cookies also allow us and third parties to know whether you’ve seen an ad or a type of ad, and how long it has been since you’ve last seen it. This information is used for frequency capping purposes, to help tailor the ads you see, and to measure the effectiveness of ads.<br></td></tr><tr><td style="width: 50.0000%;">Social Media Cookies<br></td><td style="width: 50.0000%;">Third parties that make their applications available through/on our Sites may set their own cookies in order to track the performance of their applications or customize those applications for you. For example, when you share an article using a social media sharing button on our Sites (e.g., Facebook, Twitter, or Instagram), the social network that has created the button will record that you have done this. Because of how cookies work, we cannot access these cookies, nor can the third parties access the data in cookies used by us. Some pages of our website may also contain embedded content, such as video content from YouTube, and these sites may set their own cookies.<br></td></tr></tbody></table><p><u>&nbsp;</u></p><p><u>COOKIE CONTROLS.</u> You can control your cookie settings as explained below. We may disclose your opt-out choices to third parties so that they can honor your preferences in accordance with applicable laws.</p><p><u>&nbsp;</u></p><p><u>Web Browser Controls.</u> Most browsers allow you to change your cookie settings. Users can usually set their browsers to block all third-party cookies (which are those set by third-party companies collecting information on websites operated by other companies), block all cookies (including first-party cookies such as the ones We uses to collect search activity information about its users), or block specific cookies. These settings will typically be found in the “options” or “preferences” menu of your browser. In order to understand these settings, the following links may be helpful, otherwise you should use the “Help” option in your browser for more details.</p><p><br></p><p><a href="https://web.archive.org/web/20211115165426/https://privacy.microsoft.com/en-us/windows-10-microsoft-edge-and-privacy" target="_blank">Cookie settings in Microsoft Edge</a></p><p><br></p><p><a href="https://web.archive.org/web/20211115165426/https://support.microsoft.com/en-us/help/17442/windows-internet-explorer-delete-manage-cookies">Cookie settings in Internet Explorer</a></p><p><br></p><p><a href="https://web.archive.org/web/20211115165426/http://support.mozilla.com/en-US/kb/Cookies" target="_blank">Cookie settings in Firefox</a></p><p><br></p><p><a href="https://web.archive.org/web/20211115165426/http://www.google.com/support/chrome/bin/answer.py?hl=en&amp;answer=95647" target="_blank">Cookie settings in Chrome</a></p><p><br></p><p><a href="https://web.archive.org/web/20211115165426/http://support.apple.com/kb/PH5042" target="_blank">Cookie settings in Safari web</a> and <a href="https://web.archive.org/web/20211115165426/http://support.apple.com/kb/HT1677" target="_blank">iOS</a>.</p><p><br></p><p>We note that an optional browser setting known as Do Not Track allows you to express your preferences regarding tracking by advertisers and other third-parties. However, we do not recognize or respond to browser-initiated DNT signals, as the Internet industry is currently still working toward defining exactly what DNT means, what it means to comply with DNT, and a common approach to responding to DNT.</p><p><u>Flash Cookie Controls.</u> You can manage the use of Flash technologies with the Flash management tools available at Adobe’s website.</p><p><br></p><ul><li><u>Web-Beacons.</u> You can usually prevent the operation of web-beacons by changing your web-browser cookie settings and your ad choices, or for those in emails, by switching off images in your email client or viewing emails using only the “text” display (rather than “HTML” display”). See the “Help” section of your email client for instructions. Please see the All About Cookies website for further information about managing your options.</li><li><u>Mobile Apps.</u> With respect to our mobile apps, you can stop all collection of information via an app by uninstalling the app. Also, you may be able to exercise specific privacy choices, such as enabling or disabling certain location-based services, by adjusting the permissions in your mobile device.</li><li><u>Google Analytics Controls.</u> To see an overview of privacy at Google and how to opt out of certain Google practices, visit https://www.google.com/intl/en/policies/privacy. You can prevent your data from being collected by Google Analytics by downloading the Google Analytics Opt-out Browser Add-on. Opting-out is generally done by the third party dropping a cookie on your browser indicating your intent to opt-out. If you get a new device, install a new browser, erase, or otherwise alter the third party’s browser cookie file, you may clear the opt-out cookie and no longer be subject to its opt-out.</li><li><u>Third Party Advertising Controls.</u> You may exercise choices regarding certain third-party advertising cookies through the following organizations:<br><!--[if !supportLineBreakNewLine]--></li><li>Digital Advertising Alliance (“DAA”) Self-Regulatory Program for Online Behavioral Advertising. You exercise the DAA choices regarding Interest-based Advertising <a href="https://web.archive.org/web/20211115165426/https://youradchoices.com/">here</a>. You can also download the DAA AppChoices app for control over how information about your interests is used for in-app advertising on your mobile device <a href="https://web.archive.org/web/20211115165426/https://youradchoices.com/appchoices">here</a>.<br><!--[if !supportLineBreakNewLine]--></li><li>European Interactive Digital Advertising Alliance (“EDAA”). To learn more about the EDAA and your opt out options, see <a href="https://web.archive.org/web/20211115165426/https://www.edaa.eu/">https://www.edaa.eu/</a>.</li><li>Network Advertising Initiative (“NAI”). To learn more about the NAI and your opt out options for their members, see <a href="https://web.archive.org/web/20211115165426/http://www.networkadvertising.org/choices/">http://www.networkadvertising.org/choices/</a>.</li></ul><p>Please be aware that, even if you are able to opt out of certain Interest/behavioral/targeted -based advertising, you may continue to receive other types of ads. Opting out only means that those selected members should no longer deliver certain Interest/behavioral/targeted -based ads to you, but does not mean you will no longer receive any targeted content and/or ads (e.g., from other ad networks). Dictionary is not responsible for effectiveness of, or compliance with, any third-parties’ opt out options or programs or the accuracy of their statements regarding their programs.</p><ul><li><u>Promotional Communications.</u> You can opt-out of receiving certain promotional communications (e-mails and push notifications) from us at any time by (i) for e-mails, following the instructions as provided in e-mails to click on the unsubscribe link; and (ii) for push notifications or in-app messages, adjusting the permissions in your mobile device.</li></ul><p><strong>HOW WE USE YOUR INFORMATION. We may use your information for the following purposes:&nbsp;</strong></p><p><strong>&nbsp;</strong></p><ul><li><strong>Identification and authentication: We use your identification information to verify your identity when you access and use our Services and to ensure the security of your personal information. This is so we can comply with our contractual obligations to you.</strong></li><li><strong>Provide the Services: We process your personal information to facilitate the sale of and provide the Services you have requested. This is so we can comply with our contractual obligations to you.</strong></li><li><strong>Improving our Services: We analyze information about how you use our Services to provide an improved experience for our customers of all our Services, including product testing and site analytics. It is in our legitimate business interests to use the information provided to us for this purpose, so we can understand any issues with our Services and improve them.</strong></li><li><strong>Compensating our partners: We process your personal information for purposes of calculating compensation to be paid to our third party product/service providers and distributors and to analyze usage across products, services and distribution partner/channel. It is in our legitimate interest to appropriately determine amounts to be paid to our partners and inform our product roadmap and distribution strategy.</strong></li><li><strong>Communicating with you: We may use your personal information when we communicate with you, for example if we are providing information about changes to the terms and conditions or if you contact us with questions. It is in our legitimate interest that we are able to provide you with appropriate responses and provide you with notices about our Services.</strong></li><li><strong>Marketing: We may use your personal information to deliver relevant advertisements to you and measure the effectiveness of the advertising we serve to you. It is in our legitimate interest to provide more relevant and interesting advertising messages and inform our marketing strategy. We may use automated decision-making to deliver tailored advertisements based on your personal information. Where necessary, we will obtain your consent before sending such marketing messages.</strong></li><li><strong>Exercising our rights: We may use your personal information to exercise our legal rights where it is necessary to do so, for example to detect, prevent and respond to fraud claims, intellectual property infringement claims or violations of law or our Terms of Service.</strong></li><li><strong>Complying with our obligations: We may process your personal information to, for example, carry out fraud prevention checks or comply with other legal or regulatory requirements, where this is explicitly required by law.</strong></li><li><strong>Customizing your experience: When you use the Services, we may use your personal information to improve your experience of the Services, such as by providing interactive or personalized elements on the Services and providing you with content based on your interests. We may use automated decision-making to customize your experience based on your personal information.<br>We may also aggregate and de-identify your information in such a way that you may not reasonably be re-identified by us or any other company, and may use this information for any other purpose.</strong></li></ul><p><strong>HOW WE SHARE YOUR INFORMATION. We share user information with others for various reasons. What information we make available to other companies depends on the nature of our relationships with them.</strong></p><p><strong>&nbsp;</strong></p><ul><li><strong>Service Providers: We may share your information with vendors who provide services on our behalf such as payment processing, voice transcription, email messaging, customer service, trouble shooting, survey providers, video players.</strong></li><li><strong>Contests/Sweepstakes Partners: When you sign up to participate in a contest or sweepstakes, your information may be provided to our sweepstakes or contest advertisers, operators, or sponsors and the use of that information will be also governed by those advertisers, operators, or sponsors’ privacy policies or practices.</strong></li><li><strong>Group Companies: We may share your information with our affiliates, which are entities under common ownership or control of our ultimate parent company, Rock Holdings Inc. for security, internal reporting and regulatory compliance.</strong></li><li><strong>Fraud prevention: We may disclose your information when we believe disclosure is necessary to investigate, prevent, or respond to suspected illegal or fraudulent activity or to protect the safety, rights, or property of us, our users, or others.</strong></li><li><strong>Law enforcement purposes and public safety: If requested or required by government authorities, such as law enforcement authorities, courts, or regulators, or otherwise to comply with the law, we may disclose any information we have about our users. We may disclose information collected about you in order to exercise or protect legal rights or defend against legal claims. We also may be required to disclose an individual’s personal information in response to a lawful request by public authorities, including to meet national security or law enforcement requirements.</strong></li><li><strong>Sale or merger of our business: We may transfer your information to a third party if we or any of our affiliates are involved in a corporate restructuring (e.g., a sale, merger, or other transfer of assets).</strong></li><li><strong>Advertisers and advertising networks: Advertisers and advertising networks place ads on our Sites. These companies may collect information, such as your computer’s IP address, browser information, mobile device ID, and search queries, as you use our Site and Services. They also may use cookies and other technologies to collect this information when you use our Service as described above (Cookie &amp; other Trackers).<br><!--[if !supportLineBreakNewLine]--><br></strong></li></ul><strong>&nbsp;<p><strong>We require all third parties to respect your privacy and to treat your information in accordance with the law. We only permit third parties to process your personal data for specified purposes and in accordance with our agreements with them.</strong></p>&nbsp;<p><strong>&nbsp;</strong></p>&nbsp;<p><strong>SECURITY. We take the security of your information seriously and use appropriate technical and organizational measures to protect your information against unauthorized or unlawful processing and against accidental loss, destruction or damage. We also limit access to information about you to employees who reasonably need access to it to provide products or services to you, or in order to do their jobs. However, because no security system can be 100% effective, we cannot completely guarantee the security of any information we may have collected from or about you.</strong></p>&nbsp;<p><strong>&nbsp;</strong></p>&nbsp;<p><strong>RETENTION. We retain the information we collect about and from you for as long as necessary to fulfill the purpose we collected it for and for the purpose of satisfying any legal, accounting, or reporting requirements. To determine the appropriate retention period for personal information we process, we consider the amount, nature, and sensitivity of the personal data, the potential risk of harm from unauthorized use or disclosure of your information, the purposes for which we process your personal data and whether we can achieve those purposes through other means, and the applicable legal, accounting, or reporting requirements. In some circumstances we may aggregate and de-identify your information in such a way that you may not reasonably be re-identified by us or any other company in which case we may use this information indefinitely without further notice to you. In some circumstances you can ask us to delete your data: see ACCESS, REVIEW, REVISION &amp; DELETION RIGHTS below for further information.</strong></p>&nbsp;<p><strong>&nbsp;</strong></p>&nbsp;<p><strong>YOUR CALIFORNIA PRIVACY RIGHTS. Consumers residing in California have certain rights with respect to their personal information under the California Consumer Privacy Act or (“CCPA”) (California Civil Code Section 1798.100 et seq.) and the “Shine the Light” Law (California Civil Code Section 1798.83). If you are a California resident, this section applies to you.</strong></p>&nbsp;<p><br></p>&nbsp;<p><strong><em>California Consumer Privacy Act</em></strong></p>&nbsp;<p><em>Additional Disclosures Related to the Collection, Use, Disclosure and Sale of Personal Information</em></p>&nbsp;<p><strong>&nbsp;</strong></p>&nbsp;<p><strong>Collection and Use of Personal Information:&nbsp;</strong>In the preceding 12 months, we have collected the following categories of personal information: identifiers, such as name, email address, mailing address, phone number, and IP address; categories of personal information described in subdivision (e) of Section 1798.80, such as name, address, credit card number, debit card number, or other financial information; commercial information, such as record of purchases; internet or other electronic network activity information, such as log data and information about the devices and computers you use to access the Services; geolocation data, such as GPS, Bluetooth, or WiFi signals, where you have allowed access to that information; other information you choose to provide, such as messages to customer service; inferences drawn from any of this information, including about the content or ads that may be of interest to you. For details about the precise data points we collect and the categories of sources of such collection, please see Section 3, “INFORMATION WE COLLECT AND MEANS OF COLLECTION” above. We collect personal information for the business and commercial purposes described in Section 4, “HOW WE USE YOUR INFORMATION” above.</p>&nbsp;<p><a name="_Hlk42192501"><strong>&nbsp;</strong></a></p>&nbsp;<p><strong>Disclosure of Personal Information:&nbsp;</strong>We may share your personal information with third parties as described in Section 5, “HOW WE SHARE YOUR INFORMATION” above. In the preceding 12 months, we have disclosed the following categories of personal information for business or commercial purposes to the following categories of recipients.</p>&nbsp;<p><br></p>&nbsp;<table border="1" cellpadding="0" cellspacing="0"><tbody><tr><td valign="top" width="312"><p><strong><em>Category of Personal Information&nbsp;</em></strong></p></td><td valign="top" width="312"><p><strong><em>Categories of Recipients&nbsp;</em></strong></p></td></tr><tr><td valign="top" width="312"><p>Identifiers</p></td><td valign="top" width="312"><p>Advertising networks, data analytics providers, data brokers, operating systems and platforms, email service providers, data storage providers, customer support providers, payment processing providers, account management providers</p></td></tr><tr><td valign="top" width="312"><p>Commercial information</p></td><td valign="top" width="312"><p>Payment processing providers</p></td></tr><tr><td valign="top" width="312"><p>Internet or other electronic network activity information</p></td><td valign="top" width="312"><p>Advertising networks, data analytics providers, data brokers, operating systems and platforms, data storage providers</p></td></tr><tr><td valign="top" width="312"><p>Geolocation data</p></td><td valign="top" width="312"><p>Advertising networks, data analytics providers, operating systems and platforms, data storage providers</p></td></tr><tr><td valign="top" width="312"><p>Inferences</p></td><td valign="top" width="312"><p>Advertising networks, data analytics providers, operating systems and platforms, data storage providers</p></td></tr></tbody></table>&nbsp;<p><br></p>&nbsp;<p><strong>Sale of Personal Information</strong>: California law requires that we provide transparency about personal information we “sell,” which for the purposes of the CCPA, broadly means scenarios in which Dictionary has shared personal information with third parties in exchange for valuable consideration. In the preceding 12 months, we have “sold” the following categories of personal information, depending on how the CCPA is interpreted, to the following categories of third parties:</p>&nbsp;<p><br></p>&nbsp;<table border="1" cellpadding="0" cellspacing="0"><tbody><tr><td valign="top" width="312"><p><strong><em>Category of Personal Information&nbsp;</em></strong></p></td><td valign="top" width="312"><p><strong><em>Categories of Recipients&nbsp;</em></strong></p></td></tr><tr><td valign="top" width="312"><p>Identifiers</p></td><td valign="top" width="312"><p>Advertising networks</p></td></tr><tr><td valign="top" width="312"><p>Internet or other electronic network activity information</p></td><td valign="top" width="312"><p>Advertising networks</p></td></tr><tr><td valign="top" width="312"><p>Inferences</p></td><td valign="top" width="312"><p>Advertising networks</p></td></tr></tbody></table>&nbsp;<p><br></p>&nbsp;<p><a name="_Hlk41991251">We “sell” personal information for the following commercial purposes:&nbsp;</a> to provide you with targeted advertising. California consumers above the age of 16 have the right to opt out of these sales at any time. We do not knowingly sell personal information about consumers under the age of 16. Please visit our “Do Not Sell My Info” webpage <a href="https://web.archive.org/web/20211115165426/https://urldefense.proofpoint.com/v2/url?u=https-3A__privacyportal.onetrust.com_webform_b7274337-2D1a89-2D410c-2Db2c8-2D1d563f27053a_draft_291e3f46-2D17e2-2D4417-2Db88e-2D843d45f1b775&amp;d=DwMGaQ&amp;c=XRWvQHnpdBDRh-yzrHjqLpXuHNC_9nanQc6pPG_SpT0&amp;r=a_09kzNoh240RRfs1MZExyTSkbMl4260-b00r2zDWik&amp;m=JqLK6mRjXzIfiLNRYFCmEtX2c68-6IigW_YRZaHX5n4&amp;s=M-L-GHa6uoGgX35nLqjzCLDkGe6gbnB1NIIhoiX9yMw&amp;e=">here</a> to learn more about how we sell information and to make an opt-out request.</p>&nbsp;<p><em>&nbsp;</em></p>&nbsp;<p><em>Your Consumer Rights</em></p>&nbsp;<p><br></p>&nbsp;<p>If you are a California resident, subject to certain limitations, you have the right to (1) request more information about the categories and specific pieces of personal information we have collected, sold and disclosed for a business purpose in the last 12 months, (2) deletion of your personal information, and (3) opt out of the sale of your personal information, if applicable, and (4) be free from discrimination for exercising your rights under the CCPA. You may make these requests by visiting <a href="https://web.archive.org/web/20211115165426/https://urldefense.proofpoint.com/v2/url?u=https-3A__privacyportal.onetrust.com_webform_b7274337-2D1a89-2D410c-2Db2c8-2D1d563f27053a_draft_d1e5169c-2D8ea0-2D47a2-2Db4fc-2D5c467c7fe7e4&amp;d=DwMGaQ&amp;c=XRWvQHnpdBDRh-yzrHjqLpXuHNC_9nanQc6pPG_SpT0&amp;r=a_09kzNoh240RRfs1MZExyTSkbMl4260-b00r2zDWik&amp;m=JqLK6mRjXzIfiLNRYFCmEtX2c68-6IigW_YRZaHX5n4&amp;s=YwoMnubJ85rqf1npMQCrZ6jnCOiVtnSrhFUES6JQpQI&amp;e=">this webpage</a> or emailing us at <a href="https://web.archive.org/web/20211115165426/mailto:privacy@dictionary.com">privacy@dictionary.com</a>. To opt out of sales, you can also visit our “Do Not Sell My Info” webpage <a href="https://web.archive.org/web/20211115165426/https://urldefense.proofpoint.com/v2/url?u=https-3A__privacyportal.onetrust.com_webform_b7274337-2D1a89-2D410c-2Db2c8-2D1d563f27053a_draft_291e3f46-2D17e2-2D4417-2Db88e-2D843d45f1b775&amp;d=DwMGaQ&amp;c=XRWvQHnpdBDRh-yzrHjqLpXuHNC_9nanQc6pPG_SpT0&amp;r=a_09kzNoh240RRfs1MZExyTSkbMl4260-b00r2zDWik&amp;m=JqLK6mRjXzIfiLNRYFCmEtX2c68-6IigW_YRZaHX5n4&amp;s=M-L-GHa6uoGgX35nLqjzCLDkGe6gbnB1NIIhoiX9yMw&amp;e=">here</a>. We will verify your request by confirming the email address we have on file for you.</p>&nbsp;<p><br></p>&nbsp;<p>If we receive your request from an authorized agent, we may ask for evidence that you have provided such agent with a power of attorney or that the agent otherwise has valid written authority to submit requests to exercise rights on your behalf. If you are an authorized agent seeking to make a request, please contact us at <a href="https://web.archive.org/web/20211115165426/mailto:privacy@dictionary.com">privacy@dictionary.com</a>.</p>&nbsp;<p><br></p>&nbsp;<p><strong><em>Shine the Light</em></strong></p>&nbsp;<p><br></p>&nbsp;<p>If you are a resident of the State of California, under the California Civil Code, you have the right to request from companies conducting business in California a list of all third parties to which the company has disclosed personal information (as defined by California law) during the preceding year for direct marketing purposes. Alternatively, the law provides that if a company has a privacy policy that gives either an opt-out for use of your personal information by third parties for their own marketing purposes, the company may instead provide you with information on how to exercise your disclosure choice options. We qualify for the alternative option. If you are a California resident and you want to opt out of such sharing, please send your request via email to <a href="https://web.archive.org/web/20211115165426/mailto:privacy@dictionary.com">privacy@dictionary.com</a> and include your name, street address, city, state, and zip code (your street address is optional if you wish to receive a response to your request via email. Please include your zip code for our own record-keeping).</p>&nbsp;<p><br></p>&nbsp;<p><strong><u>Legal rights applicable to personal data collected in the EEA.</u></strong> Pursuant to the <a href="https://web.archive.org/web/20211115165426/http://eur-lex.europa.eu/legal-content/EN/TXT/?uri=uriserv:OJ.L_.2016.119.01.0001.01.ENG&amp;toc=OJ:L:2016:119:TOC">EU General Data Protection Regulation (Regulation 2016/679)</a> (“GDPR”) natural persons (called data subjects) are afforded certain rights regarding their personal data, including the right to access, correct, delete, restrict or object to our use of, and receive a portable copy in a usable electronic format of your personal information. You also have the right to withdraw any consent that you have previously provided to us.</p>&nbsp;<p><br></p>&nbsp;<p>If you would like to exercise any of the rights outlined above, and the law of your jurisdiction requires us to honor that request, please send your request in writing to <a href="https://web.archive.org/web/20211115165426/mailto:privacy@dictionary.com">privacy@dictionary.com</a>. To assist us in processing your request in timely manner, please make your request in English if you are able to do so. Your request should include any information relevant to your request, including, without limitation: (i) your name, email and postal address; (ii) the specific right you are asserting (e.g., removal); and (iii) if you are requesting removal, a brief explanation of why you believe such information should be removed.</p>&nbsp;<p>To help us prevent fraudulent removal requests, please also include a legible copy of a document that verifies your identity. You need not provide a government-issued document; a utility bill or similar mailing will suffice. You may also obscure parts of the document such as identifying numbers so long as the document continues to clearly identify you. If you are making the request on behalf of another person, please indicate your relationship to that person and provide evidence of your authority to make such request. All requests for removal will be reviewed by Dictionary’s legal and compliance team and we reserve the right, in compliance with applicable laws, to accept or reject, or make further inquiries regarding, any requests.</p>&nbsp;<p>You will not have to pay a fee to access your personal data (or to exercise any of the other rights). However, we may charge a reasonable fee if your request is clearly unfounded, repetitive, or excessive. Alternatively, we may refuse to comply with your request in these circumstances.</p>&nbsp;<p>We try to respond to all legitimate requests within one month. Occasionally it may take us longer than a month if your request is particularly complex or you have made a number of requests. In this case, we will notify you and keep you updated.</p>&nbsp;<p>We are committed to working with you to obtain a fair resolution of any complaint or concern about privacy. If, however, you believe that we have not been able to assist with your complaint or concern, you may have the right to make a complaint to the data protection authority of your country of residence.</p>&nbsp;<p><strong>INTERNATIONAL TRANSFER. If you are receiving the Services from outside the United States, your data will be transferred to and stored in our servers in the U.S. By using the Services, you consent to our collection and use of your data as described in this Privacy &amp; Cookie Policy. Further, if you are receiving the Services from the European Economic Area (the “EEA”) we note your information may be transferred to, stored, and processed in a country that is not regarded as providing the same level of protection for personal information as the laws of your home country, and may be available to the government of those countries under a lawful order made in those countries. However, whenever we transfer your personal data out of the EEA, we ensure a similar degree of protection is afforded to it by ensuring at least one of the following safeguards is implemented:</strong></p>&nbsp;<p><br></p>&nbsp;<ul><li>Model Contracts. Where appropriate, we put in place specific contractual commitments in accordance with applicable legal requirements to provide adequate protections for your information. For further details, see European Commission: Model contracts for the transfer of personal data to third countries.</li><li>Privacy Shield. We may also transfer data to the U.S. under the Privacy Shield framework which requires them to provide similar protection to personal data shared between the EU and the US.</li></ul>&nbsp;<p><strong>&nbsp;</strong></p>&nbsp;<p><strong>CONTACT INFORMATION. If you have any questions or concerns about this Privacy &amp; Cookie Policy or the manner in which your information is processed, collected (in the EEA), or would like to submit a request to us, please contact us by using our&nbsp;</strong><a href="https://web.archive.org/web/20211115165426/https://www.dictionary.com/e/contact/"><strong>Contact Us</strong></a><strong>&nbsp;web page or by emailing&nbsp;</strong><a href="https://web.archive.org/web/20211115165426/mailto:privacy@dictionary.com"><strong>privacy@dictionary.com</strong></a><strong>.&nbsp;</strong></p>&nbsp;<p><br></p>&nbsp;<p>Dictionary.com is the controller (as provided under laws applicable to EEA jurisdictions) responsible for the personal information we collect and process. Dictionary.com takes their clients’ (and the customers of their clients) data protection seriously, and has appointed DPR Group as their Data Protection Representative in the European Union which can be contacted by sending an email to DPR Group at <a href="https://web.archive.org/web/20211115165426/mailto:dictionary@dpr.eu.com">dictionary@dpr.eu.com</a>. Please note that this email address is only for privacy-related inquiries. General web site assistance can be obtained through our <a href="https://web.archive.org/web/20211115165426/https://www.dictionary.com/e/contact/">Contact Us</a> web page or by emailing <a href="https://web.archive.org/web/20211115165426/mailto:support@dictionary.zendesk.com">support@dictionary.zendesk.com</a>.</p>&nbsp;<p><br></p>&nbsp;</strong></header></p><div class="non-lexical-socials socials-mobile"><div class="socials"><ul><li><a class="ico-fb" href="https://web.archive.org/web/20211115165426/https://www.facebook.com/dialog/share?app_id=292327308384887&amp;display=page&amp;href=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy&amp;redirect_uri=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy" target="_blank" rel="noopener" title="Share on Facebook" onclick="javascript:ga('send', 'event', 'share_this_entry', 'facebook', 'https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy');" data-behaviour="ga-event-entry-sharing" data-value="Facebook"><i class="transition"><svg enable-background="new 0 0 30 30" viewbox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="m15 0c-8.284 0-15 6.716-15 15 0 8.285 6.716 15 15 15 8.284 0 15-6.715 15-15 0-8.284-6.716-15-15-15m3.214 15.01h-2.102c0 3.357 0 7.495 0 7.495h-3.115c0 0 0-4.095 0-7.495h-1.482v-2.647h1.482v-1.714c0-1.227.582-3.144 3.143-3.144l2.307.009v2.571c0 0-1.404 0-1.676 0-.271 0-.66.136-.66.722v1.556h2.375l-.272 2.647" fill="#37589a"/></svg></i></a></li> <li><a class="ico-tw" href="https://web.archive.org/web/20211115165426/https://twitter.com/intent/tweet?text=Terms%2C%20Cookies%2C%20%26%20Privacy%20-%20Lexico.com&amp;url=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy" target="_blank" rel="noopener" title="Share on Twitter" onclick="javascript:ga('send', 'event', 'share_this_entry', 'twitter', 'https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy');" data-behaviour="ga-event-entry-sharing" data-value="Twitter"><i class="transition"><svg enable-background="new 0 0 30 30" viewbox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="m15 0c-8.284 0-15 6.716-15 15 0 8.285 6.716 15 15 15 8.283 0 15-6.715 15-15 0-8.284-6.717-15-15-15m5.965 11.943c.006.132.001.264.001.397 0 4.066-3.095 8.755-8.757 8.755-1.738 0-3.356-.509-4.718-1.382.242.028.486.041.734.041 1.443 0 2.769-.489 3.821-1.314-1.345-.025-2.483-.916-2.874-2.136.188.033.38.053.579.053.281 0 .553-.039.81-.107-1.407-.284-2.468-1.527-2.468-3.02 0-.013 0-.026 0-.039.416.231.891.368 1.395.384-.825-.551-1.369-1.494-1.369-2.562 0-.564.152-1.093.417-1.547 1.517 1.863 3.786 3.087 6.342 3.215-.052-.226-.08-.459-.08-.701 0-1.699 1.377-3.076 3.079-3.076.885 0 1.685.374 2.246.97.699-.137 1.359-.394 1.955-.748-.232.719-.719 1.322-1.354 1.703.624-.073 1.217-.24 1.768-.483-.413.618-.936 1.16-1.536 1.595" fill="#38a8e0"/></svg></i></a></li> <li><a class="ico-lin" href="https://web.archive.org/web/20211115165426/https://www.linkedin.com/cws/share?url=https%3A%2F%2Fwww.lexico.com%2Fcookies-terms-privacy" target="_blank" rel="noopener" title="Share on Linkedin+" onclick="javascript:window.open(this.href,'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600'); ga('send', 'event', 'share_this_entry', 'linkedin', 'https://web.archive.org/web/20211115165426/https://www.lexico.com/cookies-terms-privacy'); return false;" data-behaviour="ga-event-entry-sharing" data-value="LinkedIn"><i class="transition"><svg enable-background="new 0 0 32 32" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><g fill="#006799"><path d="m16.959 14.824v-.033c-.006.012-.015.023-.022.033h.022"/><path d="m16 0c-8.837 0-16 7.164-16 16 0 8.837 7.163 16 16 16 8.836 0 16-7.162 16-16 0-8.836-7.164-16-16-16m-4.367 23.646h-3.431v-10.316h3.431v10.316m-1.716-11.726h-.022c-1.151 0-1.895-.793-1.895-1.783 0-1.012.768-1.783 1.939-1.783 1.174 0 1.896.771 1.918 1.783 0 .99-.744 1.783-1.94 1.783m14.08 11.726h-3.43v-5.52c0-1.387-.496-2.333-1.738-2.333-.946 0-1.512.64-1.76 1.255-.091.221-.113.525-.113.836v5.762h-3.429c0 0 .044-9.349 0-10.316h3.429v1.461c.457-.705 1.271-1.703 3.092-1.703 2.256 0 3.949 1.473 3.949 4.642v5.916"/></g></svg></i></a></li> </ul></div> </div></div></div></div></div><aside class="sideBanner"><div class="sideBannerWrap"><div class="banner adUnit"><div id="lexi_serp_dkt_atf_160x600_1"></div><div id=""></div></div></div></aside><aside id="sidebar" class="sidebar extend"><div class="sidebar-content"><aside class="banbox-mini ad-placeholder" id="top_right_rail"><div class="banner adUnit"><div id="lexi_serp_dkt_btf_300x250_20"></div><div id=""></div></div></aside><div class="dayword"><section><div class="daywordmain"><span class="wotd-title">Word of the day</span><div class="word_spacer"></div><div><div><strong><a class="linkword" id="6f56e16b-5243-43ef-ab58-1fa2009b1104" href="/web/20211115165426/https://www.lexico.com/definition/attacca" data-behaviour="ga-event-wotd" data-value="Word">attacca</a></strong><p class="word_type phonetic_spelling">/ əˈtakə /</p><p class="word_type pos">verb</p></div></div><div class="cta"><a id="6f56e16b-5243-43ef-ab58-1fa2009b1104" href="/web/20211115165426/https://www.lexico.com/definition/attacca" data-behaviour="ga-event-wotd" data-value="Word">See definitions &amp; examples</a></div></div></section></div><div class="news layout"><section><a href="/web/20211115165426/https://www.lexico.com/explore/word-of-the-year" data-behaviour="ga-event" data-value="Sidebar - story 1"><div class="box-img" data-ratiox="2.35" data-ratioy="1"><img src="https://web.archive.org/web/20211115165426im_/https://raw.githubusercontent.com/entropyhub/entropyhub.github.io/master/assets/images/reexternalwotypage/202012_semicolon_lexico_WOTY_english_748x482.jpg" loading="lazy" class="lazy"></div><article><span class="article-title">It's here! Lexico's first Word of the Year!</span></article></a></section><section><a href="/web/20211115165426/https://www.lexico.com/grammar/farther-or-further" data-behaviour="ga-event" data-value="Sidebar - story 2"><div class="box-img" data-ratiox="2.35" data-ratioy="1"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7222/medium/farther-or-further.jpg" loading="lazy" class="lazy"></div><article><span class="article-title">When To Use "Farther" vs. "Further"</span></article></a></section><section><a href="/web/20211115165426/https://www.lexico.com/grammar/enquire-or-inquire" data-behaviour="ga-event" data-value="Sidebar - story 3"><div class="box-img" data-ratiox="2.35" data-ratioy="1"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7217/medium/enquire-or-inquire.jpg" loading="lazy" class="lazy"></div><article><span class="article-title">Is It "Enquire" Or "Inquire"?</span></article></a></section></div><div class="quiz-panel-odo" data-fetch-quiz="true" data-quiz-choices="[80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109]"></div><br/><div class="trending-panel-odo sideTrendWrap"><div class="trend" lang="en"><section class="boxSizing"><span class="trend-title-wrapper"><span class="trend-title">Trending Words</span></span><div class="popular"><p><span>Most popular in the world</span></p></div><ol class="words_section"><li><a data-behaviour="ga-event-trending-words" data-value="word 1" href="/web/20211115165426/https://www.lexico.com/definition/gasometer">gasometer</a></li><li><a data-behaviour="ga-event-trending-words" data-value="word 2" href="/web/20211115165426/https://www.lexico.com/definition/bung%20it%20on">bung it on</a></li><li><a data-behaviour="ga-event-trending-words" data-value="word 3" href="/web/20211115165426/https://www.lexico.com/definition/pignoration">pignoration</a></li><li><a data-behaviour="ga-event-trending-words" data-value="word 4" href="/web/20211115165426/https://www.lexico.com/definition/bituminous">bituminous</a></li><li><a data-behaviour="ga-event-trending-words" data-value="word 5" href="/web/20211115165426/https://www.lexico.com/definition/mount">mount</a></li></ol></section></div></div></div></aside></div></div></div><div class="violbox h-box lex"><div class="container full"><div class="further_reading" id="further_reading_section"><span>Are You Learning English? Here Are Our Top English Tips</span></div><div class="quizzes layout"><div class="quizze"><section><a href="/web/20211115165426/https://www.lexico.com/grammar/spelling" data-behaviour="ga-event" aria-label="Further reading - story 6" data-value="Further reading - story 6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7330/medium/generic-1-min.jpg" loading="lazy" class="lazy"></div><article><div><span class="further_reading_article_title">Basic Guidelines For English Spellings</span><p></p></div><p class="tertiary-link">READ THESE ARTICLES</p></article></a></section></div><aside class="banbox-mini"><div class="banner adUnit marked-ad"><div id="lexi_serp_dkt_atf_300x250_30"></div><div id=""></div></div></aside><div class="quizze"><section><a href="/web/20211115165426/https://www.lexico.com/grammar/writing-help" data-behaviour="ga-event" aria-label="Further reading - story 6" data-value="Further reading - story 6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7333/medium/generic-3-min.jpg" loading="lazy" class="lazy"></div><article><div><span class="further_reading_article_title">Here Are The Top English Writing Tips</span><p></p></div><p class="tertiary-link">READ THESE ARTICLES</p></article></a></section></div><div class="quizze"><section><a href="/web/20211115165426/https://www.lexico.com/grammar/usage" data-behaviour="ga-event" aria-label="Further reading - story 6" data-value="Further reading - story 6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7338/medium/going-out-min.jpg" loading="lazy" class="lazy"></div><article><div><span class="further_reading_article_title">The Best Articles To Improve Your English Language Usage </span><p></p></div><p class="tertiary-link">READ THESE ARTICLES</p></article></a></section></div><div class="quizze"><section><a href="/web/20211115165426/https://www.lexico.com/explore/word-lists" data-behaviour="ga-event" aria-label="Further reading - story 6" data-value="Further reading - story 6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7316/medium/all-right-or-alright-min.jpg" loading="lazy" class="lazy"></div><article><div><span class="further_reading_article_title">Fun English Word Lists To Explore</span><p></p></div><p class="tertiary-link">READ THESE ARTICLES</p></article></a></section></div><div class="quizze"><section><a href="/web/20211115165426/https://www.lexico.com/explore/language-questions" data-behaviour="ga-event" aria-label="Further reading - story 6" data-value="Further reading - story 6"><div class="box-img" data-ratiox="16" data-ratioy="9.5"><img src="https://web.archive.org/web/20211115165426im_/https://s3.amazonaws.com/lexico.useremarkable.com/production/images/uploads/7326/medium/algo-min.jpg" loading="lazy" class="lazy"></div><article><div><span class="further_reading_article_title">The Most Common English Language Questions</span><p></p></div><p class="tertiary-link">READ THESE ARTICLES</p></article></a></section></div></div></div></div></div></div><a id="feedbackTab" title="Tell us your opinion!" href="https://web.archive.org/web/20211115165426/https://www.surveymonkey.com/r/D293BWP" target="_blank" rel="noopener">Feedback</a><footer id="footer"><div class="container"><div class="footerWrap"><div class="footer-sitemap"><ul id="footer-horizontal-list"><span class="sitemap-title">Browse The English Dictionary: </span><li><a href="/web/20211115165426/https://www.lexico.com/list/0">#</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/a">a</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/b">b</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/c">c</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/d">d</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/e">e</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/f">f</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/g">g</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/h">h</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/i">i</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/j">j</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/k">k</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/l">l</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/m">m</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/n">n</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/o">o</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/p">p</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/q">q</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/r">r</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/s">s</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/t">t</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/u">u</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/v">v</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/w">w</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/x">x</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/y">y</a></li><li><a href="/web/20211115165426/https://www.lexico.com/list/z">z</a></li></ul></div><div class="footerNav" lang="en"><nav class="inlineBlock"><p>Find out More</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="About" href="/web/20211115165426/https://www.lexico.com/about">About</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="Contact Us" href="/web/20211115165426/https://www.lexico.com/contact-us">Contact Us</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="Privacy Policy" href="/web/20211115165426/https://www.lexico.com/cookies-terms-privacy">Privacy Policy</a></li><li><button name="button" type="submit" class="ot-sdk-show-settings">Do Not Sell My Info</button></li></ul></nav><nav class="inlineBlock"><p>Dictionary &amp; Synonyms</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="UK English Dictionary" href="/web/20211115165426/https://www.lexico.com/uk-english">UK English Dictionary</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="US English Dictionary" href="/web/20211115165426/https://www.lexico.com/us-english">US English Dictionary</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="Spanish Dictionary" href="/web/20211115165426/https://www.lexico.com/es/spanish">Spanish Dictionary</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="English Synonyms" href="/web/20211115165426/https://www.lexico.com/english-synonyms">English Synonyms</a></li></ul></nav><nav class="inlineBlock"><p>Translations</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="Spanish to English" href="/web/20211115165426/https://www.lexico.com/es/spanish-english">Spanish to English</a></li><li><a data-behaviour="ga-event-footer" target="" data-value="English to Spanish" href="/web/20211115165426/https://www.lexico.com/es/english-spanish">English to Spanish</a></li></ul></nav><nav class="inlineBlock"><p>Explore</p><ul><li><a data-behaviour="ga-event-footer" target="" data-value="Articles" href="/web/20211115165426/https://www.lexico.com/explore">Articles</a></li></ul></nav></div><p class="copyright">&copy; 2021 Lexico.com</p></div></div></footer></div><div id="autocompleteWrap"></div><script type="text/javascript" src="https://web.archive.org/web/20211115165426js_/https://www.lexico.com/user-data-context/v1"></script><script>var site = "lexi"; var page = "SERP"; var pageTargeting = { loc: userDataContext.regionCode, tx1: "results", tx2: "serp", ptype: "content", ld: "1" }; // slotConfigs, lazySlotConfigs var adTemplate = "content_page"; var leftSkySize = [300, 600] if (window.innerWidth < 1503) { leftSkySize = [160, 600] // The wide skycraper won't fit } var mobileAdConfigurations = { "home_page": { "on_load": [{ "ad_uuid": "lexi_home_mweb_atf_320x50_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [[320, 50]], "code": "/23219321/lexico_mobile", "placement": "lexi_home_mweb_atf_320x50_1" }], "lazy": [] }, "content_page": { "on_load": [{ "ad_uuid": "lexi_serp_mweb_atf_320x50_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [[320, 50]], "code": "/23219321/lexico_mobile", "placement": "lexi_serp_mweb_atf_320x50_1" }], "lazy": [] } } var desktopAdConfigurations = { "home_page": { "on_load": [{ "ad_uuid": "lexi_home_dkt_atf_728x90_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [[728, 90], [970, 90], [970, 250]], "code": "/23219321/lexico", "placement": "lexi_home_dkt_atf_728x90_1" }, { "ad_uuid": "lexi_home_dkt_btf_300x250_10", "targeting": { "pos2": "10", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "placement": "lexi_home_dkt_btf_300x250_10" }], "lazy": [ { "ad_uuid": "lexi_home_dkt_atf_300x250_20", "targeting": { "pos2": "20", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "placement": "lexi_home_dkt_atf_300x250_20" }] }, "content_page": { "on_load": [{ "ad_uuid": "lexi_serp_dkt_atf_728x90_10", "targeting": { "pos2": "10", "pos": "top" }, "sizes": [[728, 90]], "code": "/23219321/lexico", "refreshable": true, "placement": "lexi_serp_dkt_atf_728x90_10" }, { "ad_uuid": "lexi_serp_dkt_atf_160x600_1", "targeting": { "pos2": "1", "pos": "top" }, "sizes": [leftSkySize], // [300, 600] or [160, 600] "code": "/23219321/lexico", "refreshable": true, "placement": "lexi_serp_dkt_atf_160x600_1" }, { "ad_uuid": "lexi_serp_dkt_btf_300x250_20", "targeting": { "pos2": "20", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "refreshable": true, "placement": "lexi_serp_dkt_btf_300x250_20" }], "lazy": [{ "ad_uuid": "lexi_serp_dkt_atf_300x250_30", "targeting": { "pos2": "30", "pos": "bot" }, "sizes": [[300, 250]], "code": "/23219321/lexico", "placement": "lexi_serp_dkt_atf_300x250_30" }] } } if (userDataContext.deviceType === "Mobile") { var slotConfigs = mobileAdConfigurations[adTemplate]['on_load']; var lazySlotConfigs = mobileAdConfigurations[adTemplate]['lazy']; } else { // If detectedDevice is "Tablet" or "Desktop" var slotConfigs = desktopAdConfigurations[adTemplate]['on_load']; var lazySlotConfigs = desktopAdConfigurations[adTemplate]['lazy']; } var oneTrustUrl = "https://web.archive.org/web/20211115165426/https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"; var oneTrustDataDomainScriptId = "102ab651-9f24-4508-8f31-aed4a903e146"; var nonEuPubmaticProfileId = 1483; var euPubmaticProfileId = 1484; var categoryId = null; var testAdParam = {}; var adRefreshPeriodInSeconds = 60; var adRefreshMaximumRefreshes = 4; var adRefreshViewableOnly = false; </script><!-- OneTrust Cookies Consent Notice start --><script type="text/javascript">function OptanonWrapper(){ determineConsent(); }</script><!-- OneTrust Cookies Consent Notice end --><script type="text/javascript" src="https://web.archive.org/web/20211115165426js_/https://www.lexico.com/adscripts/11.1.1/adscripts.js"></script><script async src="https://web.archive.org/web/20211115165426js_/https://securepubads.g.doubleclick.net/tag/js/gpt.js" onload="gptOnLoad()"></script><script type="text/javascript">loadPubmatic(nonEuPubmaticProfileId, euPubmaticProfileId, undefined, undefined, true);</script><script type="text/javascript">getA9("apstag", window, document, "script", "https://web.archive.org/web/20211115165426/https://c.amazon-adsystem.com/aax2/apstag.js", undefined, undefined, true);</script><script>var hasLazyLoaded = false; function handler(entries, observer) { for (var i = 0; i < entries.length; i++) { var entry = entries[i]; if (entry.isIntersecting && !hasLazyLoaded) { hasLazyLoaded = true; requestLazyAd(new CustomEvent('requestLazyAd', { detail: lazySlotConfigs[0].placement })); } } } setTimeout(function(){ var observer = new IntersectionObserver(handler); var hp_grammar = document.getElementById("grammar_section"); if ( hp_grammar ) { observer.observe(hp_grammar); } var further_reading = document.getElementById("further_reading_section"); if ( further_reading ) { observer.observe(further_reading); } }, 3000); window.loadAds && window.loadAds(); </script><script>$('ul.language_selector > li').click(function(event) { var locale = $(event.currentTarget).children('a').data('locale'); Cookies.set('locale', locale); location.reload(); return false; })</script><script>$(document).ready(function () { App.init(); App.initCore(); initOdoPage(); initAutocompleteSearch(); autoHighlightSearchTerm(); showMobileSelector(); registerGAEvents(); $('body').resize(); initQuiz(); App.trendingWords(); track(); }); registerListener('load', setLazy); registerListener('load', lazyLoad); registerListener('scroll', lazyLoad); var lazy = []; function setLazy(){ lazy = document.getElementsByClassName('lazy'); } function lazyLoad(){ for(var i=0; i<lazy.length; i++){ if(isInViewport(lazy[i])){ if (lazy[i].getAttribute('data-src')){ lazy[i].src = lazy[i].getAttribute('data-src'); lazy[i].removeAttribute('data-src'); } } } cleanLazy(); } function cleanLazy(){ lazy = Array.prototype.filter.call(lazy, function(l){ return l.getAttribute('data-src');}); } function isInViewport(el){ var rect = el.getBoundingClientRect(); return ( rect.bottom >= 0 && rect.right >= 0 && rect.top <= (window.innerHeight || document.documentElement.clientHeight) && rect.left <= (window.innerWidth || document.documentElement.clientWidth) ); } function registerListener(event, func) { if (window.addEventListener) { window.addEventListener(event, func) } else { window.attachEvent('on' + event, func) } } // Accessibility hack for selectbox, for Lighthouse purpose only window.addEventListener('load', function () { document.querySelector('.sbToggle').innerHTML = "<span class='sr-only'>dropdown toggle</a>"; })</script><div class="one-click-underline" data-word-highlight="true"></div><div id="track"></div></body></html><!-- FILE ARCHIVED ON 16:54:26 Nov 15, 2021 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 12:47:23 Nov 26, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.777 exclusion.robots: 0.039 exclusion.robots.policy: 0.023 esindex: 0.014 cdx.remote: 10.586 LoadShardBlock: 119.173 (3) PetaboxLoader3.resolve: 84.055 (2) PetaboxLoader3.datanode: 90.994 (4) load_resource: 85.239 -->

Pages: 1 2 3 4 5 6 7 8 9 10