├── api ├── requirements.txt ├── category_classifier.joblib ├── category_vectorizer.joblib ├── presence_classifier.joblib ├── presence_vectorizer.joblib └── app.py ├── after.png ├── before.png ├── train_classifier ├── category_classifier.joblib ├── category_vectorizer.joblib ├── presence_classifer.joblib ├── presence_vectorizer.joblib ├── interact_df.py ├── determine_presence.py ├── determine_category.py ├── test_presence_models.py └── normie.csv ├── app ├── manifest.json ├── popup.html ├── js │ ├── popup.js │ ├── block_segment.js │ ├── content.js │ └── common.js └── css │ ├── insite.css │ └── popup.css ├── README.md └── LICENSE /api/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | joblib 3 | scikit-learn -------------------------------------------------------------------------------- /after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/after.png -------------------------------------------------------------------------------- /before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/before.png -------------------------------------------------------------------------------- /api/category_classifier.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/api/category_classifier.joblib -------------------------------------------------------------------------------- /api/category_vectorizer.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/api/category_vectorizer.joblib -------------------------------------------------------------------------------- /api/presence_classifier.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/api/presence_classifier.joblib -------------------------------------------------------------------------------- /api/presence_vectorizer.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/api/presence_vectorizer.joblib -------------------------------------------------------------------------------- /train_classifier/category_classifier.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/train_classifier/category_classifier.joblib -------------------------------------------------------------------------------- /train_classifier/category_vectorizer.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/train_classifier/category_vectorizer.joblib -------------------------------------------------------------------------------- /train_classifier/presence_classifer.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/train_classifier/presence_classifer.joblib -------------------------------------------------------------------------------- /train_classifier/presence_vectorizer.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unknown/dark-patterns-recognition/master/train_classifier/presence_vectorizer.joblib -------------------------------------------------------------------------------- /train_classifier/interact_df.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | 3 | selected_classification = "Pattern Category" 4 | 5 | df = pd.read_csv('dark_patterns.csv') 6 | 7 | df = df[pd.notnull(df["Pattern String"])] 8 | col = ["Pattern String", selected_classification] 9 | df = df[col] 10 | 11 | print(df[selected_classification].value_counts()) -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 3, 3 | "name": "Insite", 4 | "version": "1.2", 5 | "description": "Recognize dark patterns in online stores", 6 | "action": { 7 | "default_popup": "popup.html" 8 | }, 9 | "content_scripts": [{ 10 | "matches": [ 11 | "" 12 | ], 13 | "js": [ 14 | "js/common.js", 15 | "js/block_segment.js", 16 | "js/content.js" 17 | ], 18 | "css": [ 19 | "css/insite.css" 20 | ], 21 | "run_at": "document_end" 22 | }], 23 | "permissions": [ 24 | "activeTab", 25 | "tabs", 26 | "storage" 27 | ], 28 | "host_permissions": [ 29 | "" 30 | ] 31 | } -------------------------------------------------------------------------------- /app/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 24 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/js/popup.js: -------------------------------------------------------------------------------- 1 | window.onload = function () { 2 | chrome.tabs.query({ currentWindow: true, active: true }, function (tabs) { 3 | chrome.tabs.sendMessage(tabs[0].id, { message: "popup_open" }); 4 | }); 5 | 6 | document.getElementsByClassName("analyze-button")[0].onclick = function () { 7 | chrome.tabs.query({ currentWindow: true, active: true }, function (tabs) { 8 | chrome.tabs.sendMessage(tabs[0].id, { message: "analyze_site" }); 9 | }); 10 | }; 11 | 12 | document.getElementsByClassName("link")[0].onclick = function () { 13 | chrome.tabs.create({ 14 | url: document.getElementsByClassName("link")[0].getAttribute("href"), 15 | }); 16 | }; 17 | }; 18 | 19 | chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) { 20 | if (request.message === "update_current_count") { 21 | document.getElementsByClassName("number")[0].textContent = request.count; 22 | } 23 | }); 24 | -------------------------------------------------------------------------------- /app/css/insite.css: -------------------------------------------------------------------------------- 1 | .insite-highlight { 2 | position: relative; 3 | background: #F7E660; 4 | } 5 | 6 | .insite-highlight .insite-highlight-body { 7 | font-size: 12px; 8 | font-weight: 150; 9 | 10 | margin: 0; 11 | width: 200px; 12 | color: #FFFFFF; 13 | background-color: #041F30; 14 | 15 | position: absolute; 16 | z-index: 1; 17 | bottom: 125%; 18 | left: 50%; 19 | margin-left: -100px; 20 | 21 | visibility: hidden; 22 | opacity: 0; 23 | transition: opacity 0.3s ease; 24 | } 25 | 26 | .insite-highlight-body .modal-header { 27 | align-items: center; 28 | text-align: center; 29 | box-shadow: 0px 3px 2px -1px #00131f; 30 | background-color: #05283D; 31 | padding: 3px; 32 | } 33 | 34 | .insite-highlight-body .modal-header h1 { 35 | color: #FFFFFF; 36 | 37 | font-size: 16px; 38 | font-weight: 300; 39 | margin: 0; 40 | } 41 | 42 | .insite-highlight-body .modal-content { 43 | padding: 8px 16px 8px 16px; 44 | font-size: 12px; 45 | font-weight: 150; 46 | color: #D8D8D8; 47 | } 48 | 49 | /* Show the tooltip text when you mouse over the tooltip container */ 50 | .insite-highlight:hover .insite-highlight-body { 51 | visibility: visible; 52 | opacity: 1; 53 | } -------------------------------------------------------------------------------- /api/app.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, jsonify, request 2 | from flask_cors import CORS 3 | from joblib import load 4 | 5 | presence_classifier = load('presence_classifier.joblib') 6 | presence_vect = load('presence_vectorizer.joblib') 7 | category_classifier = load('category_classifier.joblib') 8 | category_vect = load('category_vectorizer.joblib') 9 | 10 | app = Flask(__name__) 11 | CORS(app) 12 | 13 | @app.route('/', methods=['POST']) 14 | def main(): 15 | if request.method == 'POST': 16 | output = [] 17 | data = request.get_json().get('tokens') 18 | 19 | for token in data: 20 | result = presence_classifier.predict(presence_vect.transform([token])) 21 | if result == 'Dark': 22 | cat = category_classifier.predict(category_vect.transform([token])) 23 | output.append(cat[0]) 24 | else: 25 | output.append(result[0]) 26 | 27 | dark = [data[i] for i in range(len(output)) if output[i] == 'Dark'] 28 | for d in dark: 29 | print(d) 30 | print() 31 | print(len(dark)) 32 | 33 | message = '{ \'result\': ' + str(output) + ' }' 34 | print(message) 35 | 36 | json = jsonify(message) 37 | 38 | return json 39 | 40 | if __name__ == '__main__': 41 | app.run(threaded=True, debug=True) 42 | -------------------------------------------------------------------------------- /app/css/popup.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | font-family: 'Poppins', sans-serif; 3 | font-size: 24px; 4 | margin: 0; 5 | min-height: 180; 6 | width: 296px; 7 | color: #FFFFFF; 8 | background-color: #041F30; 9 | } 10 | 11 | h1 { 12 | font-size: 36px; 13 | font-weight: 500; 14 | margin: 0; 15 | } 16 | 17 | p { 18 | font-size: 14px; 19 | } 20 | 21 | button { 22 | background-color: #4BE680; 23 | border: none; 24 | font-size: 16px; 25 | padding: 12px 12px; 26 | margin: 8px 0px 8px 0px; 27 | border-radius: 3px; 28 | box-shadow: 0px 3px 2px 1px #00131f; 29 | width: 100%; 30 | transition: background-color 0.2s ease; 31 | } 32 | 33 | button:active { 34 | background-color: #41C46E; 35 | } 36 | 37 | a:link, a:visited, a:hover, a:active { 38 | color: #FFFFFF; 39 | text-decoration: none; 40 | } 41 | 42 | .modal-header { 43 | align-items: center; 44 | text-align: center; 45 | box-shadow: 0px 3px 2px 1px #00131f; 46 | background-color: #05283D; 47 | padding: 3px; 48 | } 49 | 50 | .modal-content { 51 | padding: 0px 16px 0px 16px; 52 | } 53 | 54 | .modal-footer { 55 | text-align: center; 56 | font-size: 12px; 57 | padding: 3px 3px 8px 3px; 58 | } 59 | 60 | .container { 61 | background-color: #042538; 62 | margin: 8px 0px 8px 0px; 63 | padding: 6px 14px 6px 14px; 64 | border-radius: 3px; 65 | box-shadow: 0px 3px 2px 1px #00131f; 66 | } 67 | 68 | .container p { 69 | margin: 0px; 70 | } 71 | 72 | .label { 73 | color: #B8B8B8; 74 | margin: 0px; 75 | font-weight: 150; 76 | } 77 | 78 | .number, .total-number { 79 | color: #FFFFFF; 80 | font-size: 32px; 81 | } 82 | 83 | .modal-footer a { 84 | color: #D8D8D8; 85 | } -------------------------------------------------------------------------------- /train_classifier/determine_presence.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | from sklearn.model_selection import train_test_split 3 | from sklearn.feature_extraction.text import CountVectorizer 4 | from sklearn.feature_extraction.text import TfidfTransformer 5 | from sklearn.naive_bayes import BernoulliNB 6 | from sklearn import metrics 7 | from joblib import dump 8 | from sklearn.metrics import confusion_matrix 9 | import matplotlib.pyplot as plt 10 | # import seaborn as sns 11 | 12 | df1 = pd.read_csv('normie.csv') 13 | df2 = pd.read_csv('dark_patterns.csv') 14 | 15 | df1 = df1[pd.notnull(df1["Pattern String"])] 16 | df1 = df1[df1["classification"] == 0] 17 | df1["classification"] = "Not Dark" 18 | df1.drop_duplicates(subset="Pattern String") 19 | 20 | df2 = df2[pd.notnull(df2["Pattern String"])] 21 | df2["classification"] = "Dark" 22 | col = ["Pattern String", "classification"] 23 | df2 = df2[col] 24 | 25 | df = pd.concat([df1, df2]) 26 | 27 | X_train, X_test, y_train, y_test = train_test_split( 28 | df['Pattern String'], df["classification"], train_size = .25) 29 | count_vect = CountVectorizer() 30 | X_train_counts = count_vect.fit_transform(X_train) 31 | tfidf_transformer = TfidfTransformer() 32 | X_train_tfidf = tfidf_transformer.fit_transform(X_train_counts) 33 | 34 | clf = BernoulliNB().fit(X_train_tfidf, y_train) 35 | 36 | y_pred = clf.predict(count_vect.transform(X_test)) 37 | 38 | print("Accuracy: ", metrics.accuracy_score(y_pred, y_test)) 39 | 40 | # conf_mat = confusion_matrix(y_test, y_pred) 41 | # fig, ax = plt.subplots(figsize=(10,10)) 42 | # sns.heatmap(conf_mat, annot=True, fmt='d', 43 | # xticklabels=category_id_df.Product.values, yticklabels=category_id_df.Product.values) 44 | # plt.ylabel('Actual') 45 | # plt.xlabel('Predicted') 46 | # plt.show() 47 | 48 | dump(clf, 'presence_classifer.joblib') 49 | dump(count_vect, 'presence_vectorizer.joblib') -------------------------------------------------------------------------------- /train_classifier/determine_category.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | from sklearn.feature_extraction.text import TfidfVectorizer 3 | from sklearn.model_selection import train_test_split 4 | from sklearn.feature_extraction.text import CountVectorizer 5 | from sklearn.feature_extraction.text import TfidfTransformer 6 | from sklearn.naive_bayes import MultinomialNB 7 | from sklearn import metrics 8 | from joblib import dump 9 | 10 | selected_classification = "Pattern Category" 11 | 12 | df = pd.read_csv('dark_patterns.csv') 13 | 14 | df = df[pd.notnull(df["Pattern String"])] 15 | col = ["Pattern String", selected_classification] 16 | df = df[col] 17 | 18 | df["category_id"] = df[selected_classification].factorize()[0] 19 | category_id_df = df[[selected_classification, 'category_id'] 20 | ].drop_duplicates().sort_values('category_id') 21 | category_to_id = dict(category_id_df.values) 22 | id_to_category = dict( 23 | category_id_df[['category_id', selected_classification]].values) 24 | 25 | tfidf = TfidfVectorizer(sublinear_tf=True, min_df=5, norm='l2', 26 | encoding='latin-1', ngram_range=(1, 2), stop_words='english') 27 | 28 | features = tfidf.fit_transform(df["Pattern String"]).toarray() 29 | labels = df.category_id 30 | 31 | X_train, X_test, y_train, y_test = train_test_split( 32 | df['Pattern String'], df[selected_classification], train_size=.3) 33 | count_vect = CountVectorizer() 34 | X_train_counts = count_vect.fit_transform(X_train) 35 | tfidf_transformer = TfidfTransformer() 36 | X_train_tfidf = tfidf_transformer.fit_transform(X_train_counts) 37 | 38 | clf = MultinomialNB().fit(X_train_tfidf, y_train) 39 | 40 | y_pred = clf.predict(count_vect.transform(X_test)) 41 | 42 | print("Accuracy:", metrics.accuracy_score(y_pred, y_test)) 43 | 44 | dump(clf, 'category_classifier.joblib') 45 | dump(count_vect, 'category_vectorizer.joblib') 46 | -------------------------------------------------------------------------------- /train_classifier/test_presence_models.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | from sklearn.model_selection import train_test_split 3 | from sklearn.feature_extraction.text import CountVectorizer 4 | from sklearn.feature_extraction.text import TfidfTransformer 5 | from sklearn import metrics 6 | from joblib import dump 7 | 8 | from sklearn.naive_bayes import BernoulliNB, MultinomialNB 9 | from sklearn.ensemble import RandomForestClassifier 10 | from sklearn import svm, tree 11 | from sklearn.linear_model import SGDClassifier, LogisticRegression 12 | 13 | 14 | df1 = pd.read_csv('normie.csv') 15 | df2 = pd.read_csv('dark_patterns.csv') 16 | 17 | df1 = df1[pd.notnull(df1["Pattern String"])] 18 | df1 = df1[df1["classification"] == 0] 19 | df1["classification"] = "Not Dark" 20 | df1.drop_duplicates(subset="Pattern String") 21 | 22 | df2 = df2[pd.notnull(df2["Pattern String"])] 23 | df2["classification"] = "Dark" 24 | col = ["Pattern String", "classification"] 25 | df2 = df2[col] 26 | 27 | df = pd.concat([df1, df2]) 28 | 29 | X_train, X_test, y_train, y_test = train_test_split( 30 | df['Pattern String'], df["classification"], random_state=42, test_size=.3) 31 | count_vect = CountVectorizer() 32 | X_train_counts = count_vect.fit_transform(X_train) 33 | tfidf_transformer = TfidfTransformer() 34 | X_train_tfidf = tfidf_transformer.fit_transform(X_train_counts) 35 | 36 | # Model creation 37 | 38 | classifiers = [] 39 | accs = [] 40 | cms = [] 41 | 42 | classifiers.append(BernoulliNB()) 43 | classifiers.append(MultinomialNB()) 44 | classifiers.append(RandomForestClassifier()) 45 | classifiers.append(svm.SVC()) 46 | classifiers.append(tree.DecisionTreeClassifier()) 47 | classifiers.append(SGDClassifier()) 48 | classifiers.append(LogisticRegression()) 49 | 50 | for clf in classifiers: 51 | clf.fit(X_train_tfidf, y_train) 52 | y_pred = clf.predict(count_vect.transform(X_test)) 53 | accs.append(metrics.accuracy_score(y_test, y_pred)) 54 | cms.append(metrics.confusion_matrix(y_test, y_pred)) 55 | 56 | for i in range(len(classifiers)): 57 | print(f"{classifiers[i]} accuracy: {accs[i]}") 58 | print(f"Confusion Matris: {cms[i]}") -------------------------------------------------------------------------------- /app/js/block_segment.js: -------------------------------------------------------------------------------- 1 | var allIgnoreChildren = function(element) { 2 | if (element.children.length === 0) { 3 | return false; 4 | } 5 | else { 6 | for (var child of element.children) { 7 | if (ignoredElements.includes(child.tagName.toLowerCase())) { 8 | continue; 9 | } 10 | else { 11 | return false; 12 | } 13 | } 14 | return true; 15 | } 16 | }; 17 | 18 | var segments = function(element) { 19 | if (!element) { 20 | return []; 21 | } 22 | 23 | var tag = element.tagName.toLowerCase(); 24 | if (!ignoredElements.includes(tag) && !isPixel(element) && isShown(element)) { 25 | if (blockElements.includes(tag)) { 26 | if (!containsBlockElements(element)) { 27 | if (allIgnoreChildren(element)) { 28 | return []; 29 | } 30 | else { 31 | if (getElementArea(element) / winArea > 0.3) { 32 | var result = []; 33 | 34 | for (var child of element.children) { 35 | result = result.concat(segments(child)); 36 | } 37 | 38 | return result; 39 | } 40 | else { 41 | return [element]; 42 | } 43 | } 44 | } 45 | else if (containsTextNodes(element)) { 46 | return [element]; 47 | } 48 | else { 49 | var result = []; 50 | 51 | for (var child of element.children) { 52 | result = result.concat(segments(child)); 53 | } 54 | 55 | return result; 56 | } 57 | } 58 | else { 59 | if (containsBlockElements(element, false)) { 60 | var result = []; 61 | 62 | for (var child of element.children) { 63 | result = result.concat(segments(child)); 64 | } 65 | 66 | return result; 67 | } 68 | else { 69 | if (getElementArea(element) / winArea > 0.3) { 70 | var result = []; 71 | 72 | for (var child of element.children) { 73 | result = result.concat(segments(child)); 74 | } 75 | 76 | return result; 77 | } 78 | else { 79 | return [element]; 80 | } 81 | } 82 | } 83 | } 84 | else { 85 | return []; 86 | } 87 | }; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dark Patterns Recognition (Insite) 2 | [Overall Winner of TeenHacks LI Fall 2019](https://devpost.com/software/insite-qfpjcd) 3 | 4 | Insite is a Chrome extension that detects and highlights dark patterns on shopping websites. It reads text on product pages of shopping websites, then identifies and classifies dark pattern text. These potential dark patterns are then highlighted, with a popup that identifies and explains the category that a given dark pattern belongs to. 5 | 6 | This project would have been completely impossible without the paper *Dark Patterns at Scale: Findings from a Crawl of 11K Shopping Websites* (Mathur et al.). We are especially grateful for their dataset of dark pattern strings that was used to train our classifier, and their page segmentation algorithm, which broke down webpages into meaningful blocks of text. Most importantly, the work that they did informed us of the existence of these dark patterns and helped us become more aware of the online landscape, especially when shopping. 7 | 8 | 9 |

10 | logo 11 |

12 |

13 | Store page with identified dark patterns highlighted in yellow 14 |

15 | 16 | ## Dark Patterns? 17 | Dark patterns are design tricks used to influence the way users interact with software. While some dark patterns are harmless, like emphasizing signup buttons with color, others can be more malicious in problematic. In the context of online stores, dark patterns can be used to nudge buyers into buying items they might not need. For further information on dark patterns, check out [this website](https://darkpatterns.org). Created by the man who coined the term ‘dark patterns,’ the site will teach you how to recognize the different kinds of dark patterns you may encounter. 18 | ## Tech Stack 19 | The Chrome Extension front-end that scrapes the active web page is written in Javascript. For the back-end, a Python server running Flask interfaces Bernoulli Naive Bayes models to classify tokens of text sent to it. To train these algorithms, datasets from Princeton University researchers along with manually annotated datasets were used. 20 | ## Installation 21 | To begin installation, first clone this repository, or download and unzip it. 22 | 23 | Install and run the Flask app backend by navigating to `api`, installing required libraries, and running `app.py` with Python 24 | 25 | Install the Chrome extension: 26 | 1. Navigate to chrome://extensions 27 | 2. Enable "Developer mode" by toggling the switch at the top right of the page 28 | 3. Click the "Load unpacked" button. 29 | 4. Navigate to the repository directory, and select the folder `app` for installation 30 | 5. Ensure that the extension is enabled, and if so, the extension has been successfully installed! 31 | ## Reference 32 | Mathur, A., Acar, G., Friedman, M. J., Lucherini, E., Mayer, J., Chetty, M., & Narayanan, A. (2019). Dark Patterns at Scale: Findings from a Crawl of 11K Shopping Websites. Proceedings of the ACM on Human-Computer Interaction, 3(CSCW), 81. 33 | -------------------------------------------------------------------------------- /app/js/content.js: -------------------------------------------------------------------------------- 1 | const endpoint = "http:/127.0.0.1:5000/"; 2 | const descriptions = { 3 | "Sneaking": "Coerces users to act in ways that they would not normally act by obscuring information.", 4 | "Urgency": "Places deadlines on things to make them appear more desirable", 5 | "Misdirection": "Aims to deceptively incline a user towards one choice over the other.", 6 | "Social Proof": "Gives the perception that a given action or product has been approved by other people.", 7 | "Scarcity": "Tries to increase the value of something by making it appear to be limited in availability.", 8 | "Obstruction": "Tries to make an action more difficult so that a user is less likely to do that action.", 9 | "Forced Action": "Forces a user to complete extra, unrelated tasks to do something that should be simple.", 10 | }; 11 | 12 | function scrape() { 13 | // website has already been analyzed 14 | if (document.getElementById("insite_count")) { 15 | return; 16 | } 17 | 18 | // aggregate all DOM elements on the page 19 | let elements = segments(document.body); 20 | let filtered_elements = []; 21 | 22 | for (let i = 0; i < elements.length; i++) { 23 | let text = elements[i].innerText.trim().replace(/\t/g, " "); 24 | if (text.length == 0) { 25 | continue; 26 | } 27 | filtered_elements.push(text); 28 | } 29 | 30 | // post to the web server 31 | fetch(endpoint, { 32 | method: "POST", 33 | headers: { "Content-Type": "application/json" }, 34 | body: JSON.stringify({ tokens: filtered_elements }), 35 | }) 36 | .then((resp) => resp.json()) 37 | .then((data) => { 38 | data = data.replace(/'/g, '"'); 39 | json = JSON.parse(data); 40 | let dp_count = 0; 41 | let element_index = 0; 42 | 43 | for (let i = 0; i < elements.length; i++) { 44 | let text = elements[i].innerText.trim().replace(/\t/g, " "); 45 | if (text.length == 0) { 46 | continue; 47 | } 48 | 49 | if (json.result[i] !== "Not Dark") { 50 | highlight(elements[element_index], json.result[i]); 51 | dp_count++; 52 | } 53 | element_index++; 54 | } 55 | 56 | // store number of dark patterns 57 | let g = document.createElement("div"); 58 | g.id = "insite_count"; 59 | g.value = dp_count; 60 | g.style.opacity = 0; 61 | g.style.position = "fixed"; 62 | document.body.appendChild(g); 63 | sendDarkPatterns(g.value); 64 | }) 65 | .catch((error) => { 66 | alert(error); 67 | alert(error.stack); 68 | }); 69 | } 70 | 71 | function highlight(element, type) { 72 | element.classList.add("insite-highlight"); 73 | 74 | let body = document.createElement("span"); 75 | body.classList.add("insite-highlight-body"); 76 | 77 | /* header */ 78 | let header = document.createElement("div"); 79 | header.classList.add("modal-header"); 80 | let headerText = document.createElement("h1"); 81 | headerText.innerHTML = type + " Pattern"; 82 | header.appendChild(headerText); 83 | body.appendChild(header); 84 | 85 | /* content */ 86 | let content = document.createElement("div"); 87 | content.classList.add("modal-content"); 88 | content.innerHTML = descriptions[type]; 89 | body.appendChild(content); 90 | 91 | element.appendChild(body); 92 | } 93 | 94 | function sendDarkPatterns(number) { 95 | chrome.runtime.sendMessage({ 96 | message: "update_current_count", 97 | count: number, 98 | }); 99 | } 100 | 101 | chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) { 102 | if (request.message === "analyze_site") { 103 | scrape(); 104 | } else if (request.message === "popup_open") { 105 | let element = document.getElementById("insite_count"); 106 | if (element) { 107 | sendDarkPatterns(element.value); 108 | } 109 | } 110 | }); 111 | -------------------------------------------------------------------------------- /app/js/common.js: -------------------------------------------------------------------------------- 1 | const blockElements = [ 2 | 'div', 'section', 'article', 'aside', 'nav', 3 | 'header', 'footer', 'main', 'form', 'fieldset', 'table' 4 | ]; 5 | const ignoredElements = ['script', 'style', 'noscript', 'br', 'hr']; 6 | 7 | const winWidth = window.innerWidth; 8 | const winHeight = window.innerHeight; 9 | const winArea = winWidth * winHeight; 10 | 11 | var getElementArea = function(element) { 12 | var rect = element.getBoundingClientRect(); 13 | return rect.height * rect.width; 14 | }; 15 | 16 | var getClientRect = function(element) { 17 | if (element.tagName.toLowerCase() === 'html') { 18 | var w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0); 19 | var h = Math.max(document.documentElement.clientHeight, window.innerHeight || 0); 20 | 21 | return { 22 | top: 0, 23 | left: 0, 24 | bottom: h, 25 | right: w, 26 | width: w, 27 | height: h, 28 | x: 0, 29 | y: 0 30 | }; 31 | } 32 | else { 33 | return element.getBoundingClientRect(); 34 | } 35 | }; 36 | 37 | var getBackgroundColor = function(element) { 38 | var style = window.getComputedStyle(element); 39 | var tagName = element.tagName.toLowerCase(); 40 | 41 | if (style === null || style.backgroundColor === 'transparent') { 42 | var parent = element.parentElement; 43 | return (parent === null || tagName === 'body') ? 'rgb(255, 255, 255)' : getBackgroundColor(parent); 44 | } 45 | else { 46 | return style.backgroundColor; 47 | } 48 | }; 49 | 50 | var getRandomSubarray = function(arr, size) { 51 | var shuffled = arr.slice(0), 52 | i = arr.length, 53 | temp, index; 54 | while (i--) { 55 | index = Math.floor((i + 1) * Math.random()); 56 | temp = shuffled[index]; 57 | shuffled[index] = shuffled[i]; 58 | shuffled[i] = temp; 59 | } 60 | return shuffled.slice(0, size); 61 | }; 62 | 63 | var elementCombinations = function(arguments) { 64 | var r = [], 65 | arg = arguments, 66 | max = arg.length - 1; 67 | 68 | function helper(arr, i) { 69 | for (var j = 0, l = arg[i].length; j < l; j++) { 70 | var a = arr.slice(0); 71 | a.push(arg[i][j]) 72 | if (i === max) { 73 | r.push(a); 74 | } else 75 | helper(a, i + 1); 76 | } 77 | } 78 | helper([], 0); 79 | 80 | return r.length === 0 ? arguments : r; 81 | }; 82 | 83 | var getVisibleChildren = function(element) { 84 | if (element) { 85 | var children = Array.from(element.children); 86 | return children.filter(child => isShown(child)); 87 | } else { 88 | return []; 89 | } 90 | }; 91 | 92 | var getParents = function(node) { 93 | const result = []; 94 | while (node = node.parentElement) { 95 | result.push(node); 96 | } 97 | return result; 98 | }; 99 | 100 | var isShown = function(element) { 101 | var displayed = function(element, style) { 102 | if (!style) { 103 | style = window.getComputedStyle(element); 104 | } 105 | 106 | if (style.display === 'none') { 107 | return false; 108 | } else { 109 | var parent = element.parentNode; 110 | 111 | if (parent && (parent.nodeType === Node.DOCUMENT_NODE)) { 112 | return true; 113 | } 114 | 115 | return parent && displayed(parent, null); 116 | } 117 | }; 118 | 119 | var getOpacity = function(element, style) { 120 | if (!style) { 121 | style = window.getComputedStyle(element); 122 | } 123 | 124 | if (style.position === 'relative') { 125 | return 1.0; 126 | } else { 127 | return parseFloat(style.opacity); 128 | } 129 | }; 130 | 131 | var positiveSize = function(element, style) { 132 | if (!style) { 133 | style = window.getComputedStyle(element); 134 | } 135 | 136 | var tagName = element.tagName.toLowerCase(); 137 | var rect = getClientRect(element); 138 | if (rect.height > 0 && rect.width > 0) { 139 | return true; 140 | } 141 | 142 | if (tagName == 'path' && (rect.height > 0 || rect.width > 0)) { 143 | var strokeWidth = element.strokeWidth; 144 | return !!strokeWidth && (parseInt(strokeWidth, 10) > 0); 145 | } 146 | 147 | return style.overflow !== 'hidden' && Array.from(element.childNodes).some( 148 | n => (n.nodeType === Node.TEXT_NODE && !!filterText(n.nodeValue)) || 149 | (n.nodeType === Node.ELEMENT_NODE && 150 | positiveSize(n) && window.getComputedStyle(n).display !== 'none') 151 | ); 152 | }; 153 | 154 | var getOverflowState = function(element) { 155 | var region = getClientRect(element); 156 | var htmlElem = document.documentElement; 157 | var bodyElem = document.body; 158 | var htmlOverflowStyle = window.getComputedStyle(htmlElem).overflow; 159 | var treatAsFixedPosition; 160 | 161 | function getOverflowParent(e) { 162 | var position = window.getComputedStyle(e).position; 163 | if (position === 'fixed') { 164 | treatAsFixedPosition = true; 165 | return e == htmlElem ? null : htmlElem; 166 | } else { 167 | var parent = e.parentElement; 168 | 169 | while (parent && !canBeOverflowed(parent)) { 170 | parent = parent.parentElement; 171 | } 172 | 173 | return parent; 174 | } 175 | 176 | function canBeOverflowed(container) { 177 | if (container == htmlElem) { 178 | return true; 179 | } 180 | 181 | var style = window.getComputedStyle(container); 182 | var containerDisplay = style.display; 183 | if (containerDisplay.startsWith('inline')) { 184 | return false; 185 | } 186 | 187 | if (position === 'absolute' && style.position === 'static') { 188 | return false; 189 | } 190 | 191 | return true; 192 | } 193 | } 194 | 195 | function getOverflowStyles(e) { 196 | var overflowElem = e; 197 | if (htmlOverflowStyle === 'visible') { 198 | if (e == htmlElem && bodyElem) { 199 | overflowElem = bodyElem; 200 | } else if (e == bodyElem) { 201 | return { 202 | x: 'visible', 203 | y: 'visible' 204 | }; 205 | } 206 | } 207 | 208 | var ostyle = window.getComputedStyle(overflowElem); 209 | var overflow = { 210 | x: ostyle.overflowX, 211 | y: ostyle.overflowY 212 | }; 213 | 214 | if (e == htmlElem) { 215 | overflow.x = overflow.x === 'visible' ? 'auto' : overflow.x; 216 | overflow.y = overflow.y === 'visible' ? 'auto' : overflow.y; 217 | } 218 | 219 | return overflow; 220 | } 221 | 222 | function getScroll(e) { 223 | if (e == htmlElem) { 224 | return { 225 | x: htmlElem.scrollLeft, 226 | y: htmlElem.scrollTop 227 | }; 228 | } else { 229 | return { 230 | x: e.scrollLeft, 231 | y: e.scrollTop 232 | }; 233 | } 234 | } 235 | 236 | for (var container = getOverflowParent(element); !!container; container = 237 | getOverflowParent(container)) { 238 | var containerOverflow = getOverflowStyles(container); 239 | 240 | if (containerOverflow.x === 'visible' && containerOverflow.y === 241 | 'visible') { 242 | continue; 243 | } 244 | 245 | var containerRect = getClientRect(container); 246 | 247 | if (containerRect.width == 0 || containerRect.height == 0) { 248 | return 'hidden'; 249 | } 250 | 251 | var underflowsX = region.right < containerRect.left; 252 | var underflowsY = region.bottom < containerRect.top; 253 | 254 | if ((underflowsX && containerOverflow.x === 'hidden') || (underflowsY && 255 | containerOverflow.y === 'hidden')) { 256 | return 'hidden'; 257 | } else if ((underflowsX && containerOverflow.x !== 'visible') || ( 258 | underflowsY && containerOverflow.y !== 'visible')) { 259 | var containerScroll = getScroll(container); 260 | var unscrollableX = region.right < containerRect.left - 261 | containerScroll.x; 262 | var unscrollableY = region.bottom < containerRect.top - 263 | containerScroll.y; 264 | if ((unscrollableX && containerOverflow.x !== 'visible') || ( 265 | unscrollableY && containerOverflow.x !== 'visible')) { 266 | return 'hidden'; 267 | } 268 | 269 | var containerState = getOverflowState(container); 270 | return containerState === 'hidden' ? 'hidden' : 'scroll'; 271 | } 272 | 273 | var overflowsX = region.left >= containerRect.left + containerRect.width; 274 | var overflowsY = region.top >= containerRect.top + containerRect.height; 275 | 276 | if ((overflowsX && containerOverflow.x === 'hidden') || (overflowsY && 277 | containerOverflow.y === 'hidden')) { 278 | return 'hidden'; 279 | } else if ((overflowsX && containerOverflow.x !== 'visible') || ( 280 | overflowsY && containerOverflow.y !== 'visible')) { 281 | if (treatAsFixedPosition) { 282 | var docScroll = getScroll(container); 283 | if ((region.left >= htmlElem.scrollWidth - docScroll.x) || ( 284 | region.right >= htmlElem.scrollHeight - docScroll.y)) { 285 | return 'hidden'; 286 | } 287 | } 288 | 289 | var containerState = getOverflowState(container); 290 | return containerState === 'hidden' ? 'hidden' : 'scroll'; 291 | } 292 | } 293 | 294 | return 'none'; 295 | }; 296 | 297 | function hiddenByOverflow(element) { 298 | return getOverflowState(element) === 'hidden' && Array.from(element.childNodes) 299 | .every(n => n.nodeType !== Node.ELEMENT_NODE || hiddenByOverflow(n) || 300 | !positiveSize(n)); 301 | } 302 | 303 | var tagName = element.tagName.toLowerCase(); 304 | 305 | if (tagName === 'body') { 306 | return true; 307 | } 308 | 309 | if (tagName === 'input' && element.type.toLowerCase() === 'hidden') { 310 | return false; 311 | } 312 | 313 | if (tagName === 'noscript' || tagName === 'script' || tagName === 'style') { 314 | return false; 315 | } 316 | 317 | var style = window.getComputedStyle(element); 318 | 319 | if (style == null) { 320 | return false; 321 | } 322 | 323 | if (style.visibility === 'hidden' || style.visibility === 'collapse') { 324 | return false; 325 | } 326 | 327 | if (!displayed(element, style)) { 328 | return false; 329 | } 330 | 331 | if (getOpacity(element, style) === 0.0) { 332 | return false; 333 | } 334 | 335 | if (!positiveSize(element, style)) { 336 | return false; 337 | } 338 | 339 | return !hiddenByOverflow(element); 340 | }; 341 | 342 | var isInteractable = function(element) { 343 | function isEnabled(element) { 344 | var disabledSupportElements = ['button', 'input', 'optgroup', 'option', 'select', 'textarea']; 345 | var tagName = element.tagName.toLowerCase(); 346 | 347 | if (!disabledSupportElements.includes(tagName)) { 348 | return true; 349 | } 350 | 351 | if (element.getAttribute('disabled')) { 352 | return false; 353 | } 354 | 355 | if (element.parentElement && tagName === 'optgroup' || tagName === 'option') { 356 | return isEnabled(element.parentElement); 357 | } 358 | 359 | return true; 360 | } 361 | 362 | function arePointerEventsDisabled(element) { 363 | var style = window.getComputedStyle(element); 364 | if (!style) { 365 | return false; 366 | } 367 | 368 | return style.pointerEvents === 'none'; 369 | } 370 | 371 | return isShown(element) && isEnabled(element) && !arePointerEventsDisabled(element); 372 | }; 373 | 374 | var containsTextNodes = function(element) { 375 | if (element) { 376 | if (element.hasChildNodes()) { 377 | var nodes = []; 378 | for (var cnode of element.childNodes) { 379 | if (cnode.nodeType === Node.TEXT_NODE) { 380 | var text = filterText(cnode.nodeValue); 381 | if (text.length !== 0) { 382 | nodes.push(text); 383 | } 384 | } 385 | } 386 | 387 | return (nodes.length > 0 ? true : false); 388 | } else { 389 | return false; 390 | } 391 | } else { 392 | return false; 393 | } 394 | }; 395 | 396 | var filterText = function(text) { 397 | return text.replace(/(\r\n|\n|\r)/gm, '').trim(); 398 | }; 399 | 400 | var isPixel = function(element) { 401 | var rect = element.getBoundingClientRect(); 402 | var height = rect.bottom - rect.top; 403 | var width = rect.right - rect.left; 404 | 405 | return (height === 1 && width === 1); 406 | }; 407 | 408 | var containsBlockElements = function(element, visibility = true) { 409 | for (var be of blockElements) { 410 | var children = Array.from(element.getElementsByTagName(be)); 411 | if (visibility) { 412 | for (child of children){ 413 | if (isShown(child)) 414 | return true; 415 | } 416 | } 417 | else { 418 | return children.length > 0 ? true : false; 419 | } 420 | } 421 | 422 | return false; 423 | }; 424 | 425 | var isWhitespace = function(element) { 426 | return (element.nodeType === element.TEXT_NODE && 427 | element.textContent.trim().length === 0); 428 | }; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /train_classifier/normie.csv: -------------------------------------------------------------------------------- 1 | Pattern String,classification 2 | FREE SHIPPING ON ORDERS OVER $100!,0 3 | SOME EXCLUSIONS APPLY - LEARN MORE,0 4 | HAVE A QUESTION? - CONTACT US,0 5 | WELCOME TO 034MOTORSPORT!,0 6 | SHOP AUDISHOP VOLKSWAGENPERFORMANCE SOFTWARE034 APPARELLOCAL SERVICENEWSRESOURCES,0 7 | SEARCH,0 8 | HOME,0 9 | /,0 10 | "ADJUSTABLE SOLID REAR SWAY BAR, 8J/8P AUDI TT/TTS/TTRS & A3/S3/RS3, MKV/MKVI VOLKSWAGEN R32 & GOLF R",0 11 | MORE VIEWS,0 12 | ,0 13 | "ADJUSTABLE SOLID REAR SWAY BAR, 8J/8P AUDI TT/TTS/TTRS & A3/S3/RS3, MKV/MKVI VOLKSWAGEN R32 & GOLF R",0 14 | $268.00,0 15 | Starting at $25/mo with Affirm. Learn more,1 16 | ORDER ONLINE!,0 17 | 4.6 star rating,0 18 | 8 Reviews,0 19 | 1 Questions \ 1 Answers,0 20 | ,0 21 | ,0 22 | ,0 23 | SKU: 034-402-1002,0 24 | Manufacturer: 034Motorsport,0 25 | ,0 26 | ,0 27 | "034Motorsport is proud to offer the ultimate rear sway bar upgrade for the Audi 8J/8P TT/TTS/TTRS & Audi A3/S3/RS3 and MkV/MkVI Volkswagen R32 & Golf R! The 034Motorsport Adjustable Solid Rear Sway Bar is made from high-quality spring steel for maximum rigidity, and is designed to combat understeer while reducing body roll under hard cornering. This product was tested thoroughly on the street and track on the 034Motorsport Audi TT RS 2.5 TFSI before release. The 034Motorsport Adjustable Solid Rear Sway Bar substantially reduces understeer and body roll without compromising comfort on the street.",0 28 | ,0 29 | Please Note: We highly recommend using this upgrade in conjunction with Spherical Rear Sway Bar End Links for maximum performance.,1 30 | Qty:,0 31 | ADD TO CART,0 32 | Add to Wishlist,0 33 | Share Facebook,1 34 | Share on Twitter,1 35 | RELATED PRODUCTS,0 36 | Check items to add to the cart or select all,1 37 | "SWAY BAR END LINKS, MOTORSPORT, REAR, ADJUSTABLE, 8P & 8J AUDI TT/A3, MKV & MKVI VOLKSWAGEN JETTA GTI R32 RABBIT",0 38 | $184.00,0 39 | "REBUILD KIT, ADJUSTABLE SOLID REAR SWAY BAR, 22.2MM",0 40 | $22.00,0 41 | ITEM DETAILS,0 42 | ,0 43 | INSTALL GUIDE,0 44 | ,0 45 | MORE INFO,0 46 | ,0 47 | WE ALSO RECOMMEND,0 48 | ,0 49 | REVIEWS,0 50 | ,0 51 | PROP 65,0 52 | ,0 53 | "034Motorsport is proud to offer the ultimate rear sway bar upgrade for the Audi 8J/8P TT/TTS/TTRS & Audi A3/S3/RS3 and MkV/MkVI Volkswagen R32 & Golf R! The 034Motorsport Adjustable Solid Rear Sway Bar is made from high-quality spring steel for maximum rigidity, and is designed to combat understeer while reducing body roll under hard cornering.",0 54 | This product was tested thoroughly on the street and track on both the 034Motorsport Audi TT RS 2.5 TFSI and Nate@034's Audi A3 before release. The 034Motorsport Adjustable Solid Rear Sway Bar substantially reduces understeer and body roll on the Audi 8J/8P and MkV/MkVI Volkswagen R32 & Golf R without compromising comfort on the street.,0 55 | "In addition, the 034Motorsport Rear Sway Bar is engineered to be used effectively with the stock front sway bar. No upgrade in the front is needed or required. The addition of a stiffer front bar introduces even more push, requiring an even bigger bar in the back.  With the stock front sway bar and upgraded 034Motorsport Solid Rear Sway Bar, body roll is virtually eliminated while turn in and off throttle oversteer are greatly improved.",0 56 | "The sway bar rate is adjustable via the adjustment holes. The two holes closest to the MOI of the bar are the ""stiff"" (423% stiffer than stock) setting, and the two holes farther out are the ""soft"" (362% stiffer than stock) setting.",0 57 | Features:,0 58 | Adjustable - 362% or 423% Increased Sway Bar Rate vs. Stock TT RS Rear Sway Bar,0 59 | 22.25mm Diameter,0 60 | Solid Spring Steel Construction,0 61 | 2-Hole Adjustable,0 62 | Easy to Lubricate Sway Bar Bushings - Zerk Fittings Included,0 63 | Designed to be used in conjunction with the stock front sway bar.,0 64 | What's Included:,0 65 | 034Motorsport Adjustable Solid Rear Sway Bar,0 66 | Graphite-Impregnated Urethane Bushings,0 67 | Billet Aluminum Sway Bar Brackets with Lubrication Ports,0 68 | Sway Bar Retaining Clips,0 69 | Fitment:,0 70 | 2010 - 2013 Audi TT RS 2.5 TFSI (8J),0 71 | 2011 - 2013 Audi RS3 2.5 TFSI (8P),0 72 | 2006 - 2013 Audi TT/TTS Quattro (8J),0 73 | Except 3.2L VR6 Models,0 74 | 2006 - 2013 Audi A3/S3 Quattro (8P),0 75 | 2008 Volkswagen R32 (MkV),0 76 | 2012 Volkswagen Golf R (MkVI),0 77 | Installation Instructions:,0 78 | Click Here!,1 79 | Please Note:,0 80 | This fits 4-Motion AWD & Quattro AWD vehicles only.,0 81 | COMPANY,0 82 | ABOUT US,0 83 | CONTACT US,0 84 | SERVICE DEPARTMENT,0 85 | TERMS & CONDITIONS,0 86 | PRIVACY POLICY,0 87 | CAREERS AT 034,0 88 | QUICK LINKS,0 89 | SITE MAP,0 90 | SEARCH TERMS,0 91 | ADVANCED SEARCH,0 92 | REQUEST RMA,0 93 | DEALERS,0 94 | ACCOUNT,0 95 | MY ACCOUNT,0 96 | ORDERS AND RETURNS,0 97 | CONNECT WITH US,1 98 | FACEBOOK,1 99 | TWITTER,1 100 | YOUTUBE,1 101 | RSS,0 102 | © 2005 - Present 034Motorsport. All Rights Reserved. 034Motorsport is not affiliated with any automobile manufacturers. Manufacturer names and/or part numbers are used solely for identification purposes.,0 103 | PRODUCT CATEGORIES,0 104 | Christmas,0 105 | Tubes,0 106 | LED Bulbs,0 107 | Fixtures,0 108 | Light Bulbs,0 109 | Ballasts/Drivers,0 110 | Electrical,0 111 | Rope/Tape Light,0 112 | Exit/Emergency,0 113 | Smart Home,0 114 | Horticulture,0 115 | Landscape Lighting,0 116 | Batteries,0 117 | Plastics & Glass,0 118 | Specialty Items,0 119 | For Expert Help Call 1-800-624-4488,0 120 | Search,0 121 | Welcome to 1000Bulbs.com,0 122 | ( Login or Register ) Customer Service,1 123 | Cart 0,0 124 |  Trending Searches,1 125 | 175W MH Equal LED Wall Pack Only $66.49,1 126 | Standard Shaped LEDs only $1.05/ea,1 127 | LED Parking Lot Lights - Starting at $107.24,0 128 | LED Corn Bulbs | HID,0 129 | All Categories,0 130 | Christmas,0 131 | Tubes,0 132 | LED Bulbs,0 133 | Fixtures,0 134 | Light Bulbs,0 135 | Ballasts/Drivers,0 136 | Electrical,0 137 | Rope/Tape Light,0 138 | Exit/Emergency,0 139 | Clearance,1 140 | Home,0 141 | LED Light Bulbs,0 142 | LED Light Bulbs - A19,0 143 | LED Light Bulbs - 60 Watt Equal,0 144 | LED Light Bulbs - 60 Watt Equal - 2700 Kelvin,0 145 | LED A19 - 9 Watt - 60W Incandescent Equal,0 146 | 750 Lumens - 2700 Kelvin Soft White - PLT-11209,0 147 | 4.9,0 148 |  ,0 149 | -23,0 150 | Write a review,0 151 | Ask a question,0 152 | This product is ineligible for shipping to the following states: CA,1 153 | ,0 154 | "Keep the lights on longer with this PLT LED A19 light bulb and its bright, 60-Watt equivalent output. This standard bulb is applicable to sensitive light displays due to its very low heat generation.",0 155 | ,0 156 | "UL approved for damp locations, can withstand outdoor humidity when protected from the elements",0 157 | Long-life LEDs outlast outdated incandescent bulbs and save up to 85 percent in energy costs,0 158 | Frosted plastic construction is shatter resistant,0 159 | Color matched to incandescent bulbs,0 160 | ,0 161 | View More Details,0 162 | $0.99 ea.,0 163 | Retail Price $1.99,0 164 | Quantity,0 165 | Add to Cart,1 166 | SKU: PLT-11209,0 167 | ,0 168 | Lighting can be confusing! Expert Help - Call Now,1 169 | 1-800-624-4488,0 170 | PRODUCT DETAILS,0 171 | REVIEWS,0 172 | FAQ'S,0 173 | Brochures & Spec Sheets,0 174 | PLT-11209 Spec Sheet,0 175 | PLT-11209 Warranty,0 176 | Brand PLT,0 177 | MPN (Part No.) PLT-11209,0 178 | UPC 810665027874,0 179 | Dimmable No,0 180 | Energy Star No,0 181 | Bulb Shape A19,0 182 | Safety Rating UL Damp Location,0 183 | CRI 80,0 184 | Color Soft White,0 185 | Color Temperature 2700 Kelvin,0 186 | "Life Hours 10,000",0 187 | Wattage 9 Watt,0 188 | Incandescent Equal 60 Watt,0 189 | Lumens 750,0 190 | Enclosed Fixture Rated No,0 191 | Voltage 120,0 192 | Beam Angle 240 Degree,0 193 | Base Type Medium (E26),0 194 | Height 4.25 in.,0 195 | Diameter 2.36 in.,0 196 | Warranty 1 Year,0 197 | Case Quantity 50,0 198 | Lumens per Watt 83,0 199 | This product is ineligible for shipping to the following states: CA,1 200 | Description,0 201 | ,0 202 | "Keep the lights on longer with this PLT LED A19 light bulb and its bright, 60-Watt equivalent output. This standard bulb is applicable to sensitive light displays due to its very low heat generation.",0 203 | ,0 204 | "UL approved for damp locations, can withstand outdoor humidity when protected from the elements",0 205 | Long-life LEDs outlast outdated incandescent bulbs and save up to 85 percent in energy costs,0 206 | Frosted plastic construction is shatter resistant,0 207 | Color matched to incandescent bulbs,0 208 |    Changing The Way The World Buys Light Bulbs.,0 209 | Sign Up For Deals,1 210 | Stay Connected,1 211 | Quick Links,0 212 | Clearance,0 213 | Coupons,0 214 | All Categories,0 215 | Shop By Brand,0 216 | Lighting Resources,0 217 | Help,0 218 | See All Help,0 219 | Returns,0 220 | Shipping,0 221 | Warranty,0 222 | FAQ,0 223 | Contact Us,0 224 | Accessibility,0 225 | Company,0 226 | About Us,0 227 | Press Releases,0 228 | Employment,0 229 | Other Links,0 230 | Blog,0 231 | DIY Projects,0 232 | Adobe Reader,0 233 | 1000Bulbs.com is proud to offer our customers products that have earned the government's ENERGY STAR label.,1 234 | ,0 235 | ,0 236 | ,0 237 | © 2019 1000Bulbs.com | All Rights Reserved.,0 238 | "2140 Merritt Dr, Garland, TX 75041",0 239 | Use of this site signifies your acceptance of 1000Bulbs.com Terms and Conditions and Privacy Policy,0 240 | FREE USA DOMESTIC STANDARD SHIPPING | CA/UK/EU SHIPPING,1 241 | ,0 242 | GET 2 FREE SAMPLES WITH ANY $45 PURCHASE,1 243 | Search Button Desktop,0 244 | Search,0 245 | Search,0 246 | "Hey, Gorgeous",1 247 | ,0 248 | LOG IN OR REGISTER,1 249 | ,0 250 | Purist Perks,0 251 | Help,0 252 | Cart,0 253 | 0,0 254 | BEST SELLERS,1 255 | FRUIT PIGMENTED® MAKEUP,0 256 | SKIN CARE,0 257 | HAIR & BODY,0 258 | GIFTS,0 259 | EXPLORE,0 260 | SHOP PURISTRY,0 261 | Home › Multi-Vitamin + Antioxidants Potent PM Serum,0 262 | Multi-Vitamin + Antioxidants Potent PM Serum,0 263 | Natural Vegan Cruelty Free Gluten Free,0 264 | "Potent, stabilized vitamins in this PM serum work synergistically to reduce lines and wrinkles, increase firmness and elasticity, brighten and even skin tone.",0 265 | 542,0 266 | $60.00,0 267 | Wishlist,0 268 | Wishlist,0 269 | ,0 270 | or 4 interest-free installments of $15.00 USD by  More info,1 271 | ADD TO TOTE,0 272 | USE IT WITH,1 273 | Restorative Sea Culture Hydrating Toner,0 274 | $42.00,0 275 | ADD TO TOTE,0 276 | WATCH OUR VIDEOS,0 277 | Product,0 278 | PRODUCT DETAILS,0 279 | INGREDIENTS,0 280 | MEDIA,1 281 | Share,1 282 | Facebook,1 283 | ,0 284 | Twitter,1 285 | ,0 286 | Pinterest,1 287 | ,0 288 | Google,1 289 | You May Also Like,0 290 | 357,0 291 | Multi-Vitamin + Antioxidants Ultra Riché PM Treatment,0 292 | $57.00,0 293 | ADD TO TOTE,0 294 | NEW,0 295 | 2,0 296 | Multi-Vitamin + Antioxidants PM Facial Oil,0 297 | $55.00,0 298 | ADD TO TOTE,0 299 | 1106,0 300 | Vitamin C Serum,0 301 | $42.00,0 302 | ADD TO TOTE,0 303 | NEW,0 304 | 4,0 305 | Multi-Vitamin + Antioxidants PM Eye Treatment,0 306 | $45.00,0 307 | ADD TO TOTE,0 308 | Reviews & Testimonials,0 309 | 4.6,0 310 | Based on 542 Reviews,1 311 | 5 ★,1 312 | 78% ,0 313 | 424,0 314 | 4 ★,1 315 | 13% ,0 316 | 70,0 317 | 3 ★,1 318 | 5% ,0 319 | 25,0 320 | 2 ★,1 321 | 2% ,0 322 | 12,0 323 | 1 ★,1 324 | 2% ,0 325 | 11,0 326 | Write a Review,1 327 | Ask a Question,1 328 | Reviews Questions,0 329 | With Photos,0 330 | Most Recent,0 331 | Highest Rating,0 332 | Lowest Rating,0 333 | Most Votes,0 334 | Least Votes,0 335 | Filter Reviews:,1 336 | ProductsSkinSerumBottleFaceIngredientsMoisturizerLinesResults,0 337 | SB,0 338 | 11/09/2019,0 339 | Super b.,0 340 | United States,0 341 | Great great product!!!’,1 342 | "It is very hard finding a “me time” when you have a full time job and taking care of family. Having my 100% pure products esp my PM routine makes me feel special at least for a moment. This products does what it says. I have oily skin, i have been using this in the PM for about a week now, it is not tacky or sticky as i have discovered the perfect amount for my skin. My skin feels soft, healthy, plump and brighter. I highly recommend this product and i truly believe this company. I l",1 343 | Share,1 344 | Was this review helpful?  0    0,1 345 | TS,0 346 | 11/08/2019,0 347 | Tricia S.,0 348 | United States,0 349 | Absolute keeper!,1 350 | "OMGoodness! Heaven in a bottle! This goes on like pure silk. That's what my skin feels like after I put it on too. It has literally rejuvenated my 46 year old skin. It has brightened my skin from the inside out! Like a light is shining under my skin to create a soft glow. My pores are smaller, my discoloration is gone, and no breakouts! Fine lines and wrinkles are fading. It goes perfect under my moisturizer. And add makeup on top of that, no problem...it holds up beautifully. Absolute keeper!",1 351 | Share,1 352 | Was this review helpful?  0    0,0 353 | HH,0 354 | 10/31/2019,0 355 | Holly H.,1 356 | United States,0 357 | Love,1 358 | I love this product. Just the right amount of moisture.,1 359 | Share,1 360 | Was this review helpful?  0    0,0 361 | RH,0 362 | 10/30/2019,0 363 | Raven H.,1 364 | United States,0 365 | My favorite serum!,1 366 | "This serum is a must. I apply it every night after toning and it keeps my face clear, moisturized and vibrant.",1 367 | ,1 368 | Share,1 369 | Was this review helpful?  0    0,0 370 | RC,0 371 | 10/29/2019,0 372 | Raquel C.,1 373 | United States,0 374 | I buy this stuff in bulk.,1 375 | "This serum is great. When I use it consistently it changes the texture of my skin, making it very smooth and absolutely youthful. I can’t live without it. It smells fantastic too. My skin gets tiny bumps all over it because of natural oil production, but I notice that when I use this serum consistently along with my normal cleansing routine, it really helps with the texture. And it’s natural! Whenever there is a good sale, I buy a lot of these serums. I buy a LOT of their products in general, but this serum has been my favorite since day one. This brand is heaven.",1 376 | Share,1 377 | Was this review helpful?  1    0,0 378 | 12345678910>,0 379 | Promise You'll Love™ 100% Guarantee. Learn More,1 380 | FEATURED,0 381 | New Products,0 382 | Best Sellers,0 383 | Online Gift Card,0 384 | Student Discount,0 385 | COMPANY,0 386 | About 100% PURE®,0 387 | Philanthropy,0 388 | Careers,0 389 | Press,0 390 | Store Locations,0 391 | Wholesale US,0 392 | Wholesale CA,0 393 | Our Blog,0 394 | INFORMATION,0 395 | Start a Return,0 396 | Contact Us,0 397 | Affiliate Program,0 398 | Shipping FAQ,0 399 | Afterpay FAQ,0 400 | Purist Perks,1 401 | Purist Pro,1 402 | Refer a Friend,1 403 | SUBSCRIBE,1 404 | Instagram,1 405 | Facebook,1 406 | Twitter,1 407 | Pinterest,1 408 | Youtube,1 409 | USD CAD GBP MORE,0 410 | 中国 Australia Germany,0 411 | Terms & Condition | Privacy Policy | © 2019 100% PURE®,0 412 | ,0 413 | "If you are using a screen reader and are having problems using this website, please call +1 (844) 787-3100 for assistance.",0 414 | 1-877-877-1010 Contact Us Store Locations Customer Service,0 415 | My Account Cart,0 416 | SHOPPING CART,0 417 | "0 item(s) - 0,00 $",0 418 | Tires,0 419 | Wheels,0 420 | Tire & Wheel Packages,0 421 | NEW,0 422 | Car Accessories,0 423 | Tools & Tech,0 424 | Car Gallery,0 425 | Home / Accessories / Black Red/Smoke Fiber Optic LED Tail Lights,0 426 | ANZO USA BLACK RED/SMOKE FIBER OPTIC LED TAIL LIGHTS 311265,0 427 | SKU: 311265,0 428 | Chevrolet Suburban/Tahoe 2015-2016 Black Red/Smoke Fiber Optic LED Tail Lights,0 429 | 476.00/ea,0 430 | Regular Price: $560.00,0 431 | Qty:,0 432 | ,0 433 | 1,0 434 | 2,0 435 | 3,0 436 | 4,0 437 | 5,0 438 | Availability: No,0 439 | Item(s) Total: $476.00,0 440 | SOLD OUT,1 441 | FITMENT GUARANTEE,0 442 | Orders are verified for fitment guarantee*.,0 443 | EXPERT HELP,1 444 | We know our stuff. Call: 1-877-877-1010 or LIVE CHAT,0 445 | EASY RETURNS,1 446 | Your satisfaction is our goal.,0 447 | Helpful Resources,0 448 | Shipping Information,0 449 | Frequently Asked Questions,0 450 | DESCRIPTION,0 451 | FITMENT APPLICATION,0 452 | Black Red/Smoke Fiber Optic LED Tail Lights,0 453 | ,0 454 | "Black Red/Smoke Fiber Optic LED Tail Lights by Anzo®, 1 Pair. Black housing, red/smoke lens. Tired of your dull factory tail lights and feel a strong need to upgrade the rear of your car with something really special? Featuring far more brightness and endurance than stock bulbs, these stunning LED tail lights by Anzo are just the ticket to transform a simple piece of machinery into a classy vehicle.",0 455 | ,0 456 | Increased visibility,0 457 | Premium quality,0 458 | Direct bolt-on replacement,0 459 | Warranty,0 460 | MANUFACTURER INFO,0 461 | "AnzoUSA is the answer for all of your performance lighting needs. With over 30 years of manufacturing experience, they surpass their competition in quality, innovative styling and product offerings. They are dedicated to providing great service and superior customer support through an experienced sales team and a knowledgeable technical staff.",0 462 | Advertisement,1 463 | Recently Viewed Items,0 464 | ANZO-USA Black Red/Smoke Fiber Optic LED Tail Lights,0 465 | N/A,0 466 | MORE DETAILS,0 467 | Advertisement,1 468 | Home / Accessories / Black Red/Smoke Fiber Optic LED Tail Lights,0 469 | FOLLOW US,0 470 | PRODUCTS,0 471 | TIRES BY BRAND,0 472 | TIRES BY TYPE,0 473 | WHEELS BY BRAND,0 474 | CAR ACCESSORIES,0 475 | TIRE & WHEEL TECH,0 476 | Tire Reviews,0 477 | Tire Size Calculator,0 478 | Wheel Offset Calculator,0 479 | Vehicle By Wheel Size,0 480 | Glossary,0 481 | Tire Size Chart,0 482 | More Tech...,0 483 | CUSTOMER SERVICE,0 484 | FAQ,0 485 | Ordering,0 486 | Payment Options,0 487 | Shipping Options,0 488 | Warranty,0 489 | Fitment Guarantee,0 490 | Return Policy,0 491 | INFORMATION,0 492 | About Us,0 493 | Our Team of Experts,0 494 | Contact Us,0 495 | Wholesale Program,0 496 | Share Your Car Photos,1 497 | Customer Reviews,1 498 | ,0 499 | Certified Installers,0 500 | Make an Appointment,0 501 | CONTACT US,0 502 | Toll Free: 1.877.877.1010,0 503 | Live Chat:,0 504 | Hours:,0 505 | M-F (6:00am - 5:30pm PST),0 506 | Payment Options:,0 507 | "© 2019 1010TIRES.COM®, Inc. All rights reserved.Privacy Policy  Terms of Service Average rating 4.6 of 9397 reviews.",1 508 | "GET THE LATEST TRENDS, INSPIRATION AND NEW ARRIVALS - SIGN ME UP FOR EMAILS",1 509 | Skip to main content,0 510 | Skip to footer,0 511 | About us,0 512 | Our shops,0 513 | Customer services,0 514 | Track order,0 515 | my John Lewis,0 516 | Partnership Card,0 517 | Insurance,0 518 | United Kingdom (GBP),0 519 | Search,0 520 | Sign in,0 521 | Christmas,0 522 | Home & Garden,0 523 | Furniture & Lights,0 524 | Electricals,0 525 | Women,0 526 | Men,0 527 | Beauty,0 528 | Baby & Child,0 529 | Sport & Leisure,0 530 | Gifts,1 531 | Offers,1 532 | Your path to this page. Select a link to go back to a previous page,1 533 | Homepage,0 534 | Home & Garden,0 535 | Bedding,0 536 | Duvet Covers,0 537 | Previous Image,0 538 | Next Image,0 539 | "John Lewis & Partners Warm and Cosy Ombre Check Brushed Cotton Duvet Cover and Pillowcase Set, Red",0 540 | £65.00 - £95.00,0 541 | 15 reviews,1 542 | Free standard delivery,0 543 | ,0 544 | View delivery options,0 545 | View product description,0 546 | Size,0 547 | Single set,0 548 | This size is available,1 549 | Double set,0 550 | This size is available,1 551 | King set,0 552 | This size is available,1 553 | Super King set,0 554 | This size is available,1 555 | Quantity,0 556 | Product price,0 557 | ,0 558 | £65.00 - £95.00,0 559 | Add to your basket,0 560 | Add to wish list,0 561 | CUSTOMERS ALSO VIEWED,1 562 | "John Lewis & Partners Appin Check Brushed Cotton Duvet Cover Set, Red",0 563 | £45.00 - £75.00,0 564 | "This product has received, on average, 5.0 star reviews",1 565 | -4,0 566 | John Lewis & Partners Warm and Cosy Window Check Brushed Cotton Duvet Cover and Pillowcase Set,0 567 | £65.00 - £80.00, 568 | "This product has received, on average, 2.7 star reviews",1 569 | -10,0 570 | "Fat Face Penguin Check Duvet Cover Set, Multi",0 571 | £35.00 - £65.00,0 572 | "This product has received, on average, 5.0 star reviews",1 573 | -2,0 574 | John Lewis & Partners Warm & Cosy Brushed Cotton Bedding,0 575 | £5.00 - £50.00,0 576 | "This product has received, on average, 4.7368 star reviews",1 577 | -19,0 578 | Product description,0 579 | Product code: 62790801,0 580 | Bed Linen Buying Guide,0 581 | "This cosy bed linen is lightly brushed after weaving, giving it a soft, velvety touch and extra warm feel.",0 582 | 100% Cotton,0 583 | "Cotton - The world’s most widely used natural fibre, versatile cotton makes the perfect bed linen; cool, lightweight, soft and breathable.",0 584 | Have you thought about sheeting? Shop here.,0 585 | Bedding sizes,0 586 | To fit duvet/pillow size (cm),0 587 | "Standard pillowcase, L75 x W50cm",0 588 | "Single duvet cover, L200 x W135cm",0 589 | "Double duvet cover, L200 x W200cm",0 590 | "King duvet cover, L220 x W225cm",0 591 | "Super king duvet cover, L220 x W260cm",0 592 | Bed Linen Buying Guide,0 593 | Product specifications,0 594 | Brand information,0 595 | Delivery & returns,0 596 | Ratings & reviews,0 597 | MORE LIKE THIS,1 598 | John Lewis & Partners,0 599 | ,0 600 | Duvet Covers,0 601 | ,0 602 | Bedding,0 603 | ,0 604 | Home & Garden,0 605 | CUSTOMERS ALSO BOUGHT,1 606 | John Lewis & Partners Warm & Cosy Brushed Cotton Fitted Sheet,0 607 | £18.00 - £24.00,0 608 | "This product has received, on average, 4.6068 star reviews",1 609 | -117,0 610 | John Lewis & Partners Crisp and Fresh 200 Thread Count Egyptian Cotton Standard Fitted Sheet,0 611 | £17.00 - £30.00,0 612 | "This product has received, on average, 4.4656 star reviews",1 613 | -247,0 614 | John Lewis & Partners Natural Cotton Quilted Mattress Protector,0 615 | £25.00 - £45.00,0 616 | "This product has received, on average, 4.3994 star reviews",1 617 | -686,0 618 | John Lewis & Partners Crisp and Fresh 200 Thread Count Egyptian Cotton Deep Fitted Sheet,0 619 | £22.00 - £32.00,0 620 | "This product has received, on average, 4.463 star reviews",1 621 | -257,0 622 | RECENTLY VIEWED ITEMS,0 623 | "John Lewis & Partners Warm and Cosy Ombre Check Brushed Cotton Duvet Cover and Pillowcase Set, Red",0 624 | ,0 625 | £65.00 - £95.00,0 626 | BE IN THE KNOW,1 627 | ,0 628 | "Get inspiration, new arrivals and the latest offers to your inbox",1 629 | ,0 630 | Sign me up for emails,1 631 | Never knowingly undersold,1 632 | Help,0 633 | Customer services,0 634 | Contact us,0 635 | Never Knowingly Undersold,1 636 | Our shops,0 637 | Our services,0 638 | Product recalls & safety notices,0 639 | Delivery,0 640 | Track your order,0 641 | Delivery & collection,0 642 | Returns & refunds,0 643 | International orders,0 644 | Shopping,0 645 | Buying guides,0 646 | my John Lewis card,0 647 | The Edit,0 648 | Gift Cards & vouchers,0 649 | Shop by brand,0 650 | Terms & conditions,0 651 | Secure shopping,0 652 | Our privacy notice,0 653 | Cookies,0 654 | Our apps,0 655 | More from us,0 656 | John Lewis Broadband,0 657 | Waitrose & Partners,0 658 | The Gift List,1 659 | John Lewis Opticians,0 660 | John Lewis for Business,0 661 | John Lewis Home Solutions,0 662 | JLP Jobs,0 663 | JLP corporate information,0 664 | Community matters,0 665 | What's on,0 666 | Download our 2018/19 Modern Slavery statement,0 667 | Finance,0 668 | Partnership card,0 669 | Home insurance,0 670 | Pet insurance,0 671 | Car insurance,0 672 | Wedding insurance,0 673 | Foreign currency,0 674 | Loans,0 675 | Feedback,0 676 | Your comments help us improve our website,1 677 | Leave feedback,1 678 | Facebook,1 679 | Twitter,1 680 | Youtube,1 681 | Pinterest,1 682 | Instagram,1 683 | © John Lewis plc 2001 -,0 684 | ,0 685 | 2019,0 686 | Cookies on JohnLewis.com,1 687 | ,0 688 | "We use cookies on our websites. You are free to manage this via your browser setting at any time. To learn more about how we use the cookies, please see our cookies policy.",1 689 | close,0 690 | USD,0 691 | Affiliate,0 692 | Search/Span>,0 693 | FPV Equipment,0 694 | Electronics,0 695 | Propellers,0 696 | Motors,0 697 | Frame,0 698 | Radios,0 699 | Action Cameras,0 700 | FPV Accessories,0 701 | Stock Clearance,1 702 | 0,0 703 | Home / FPV Accessories / Chargers / HOTA D6 PRO Charger AC200W DC650W 15A For 1-6S Lipo Battery with Wireless Charging,0 704 | Previous,0 705 | Next,0 706 | SKU: MR1436,0 707 | Availability:In stock,1 708 | ,0 709 | HOTA D6 PRO Charger AC200W DC650W 15A For 1-6S Lipo Battery with Wireless Charging,0 710 | |,0 711 | 0 Review(s) | Add Your Review to Win Points,1 712 | US$ 119.00,0 713 | Version:,0 714 | D6 D6 PRO,0 715 | Qty:,0 716 | Add To Cart,0 717 | Usually dispatched in 1-2 business days,0 718 | Add to Wishlist,1 719 | Description,0 720 | Reviews,0 721 | Specifications (D6),0 722 | Input Voltage: DC 6.5~30V,0 723 | Charge Current: 0.1~15A × 2,0 724 | Charge Power: 325W × 2(650W),0 725 | Discharge Power Internal discharge: 15W × 2(balance port 10W),0 726 | External discharge: 325W × 2,0 727 | Battery Type LiHv/LiPo/LiFe/Lilon/Lixx : 1~6S,0 728 | NiZn/Nicd/NiMH : 1~16S,0 729 | Smart Battery: 1~6S,0 730 | Lead Acid(Pb): 2~24V,0 731 | Enelop: 1~16S,0 732 | Balance Current: 1600mA × 2,0 733 | Discharge Current: 0.1~3A × 2,0 734 | External Discharge Current: 1~15A × 2,0 735 | USB Output: 5V / 2.1A,0 736 | Dimensions: 108×105 ×76mm,0 737 | Net Weight: 360g,0 738 | Specifications(D6 PRO),0 739 | Input Voltage: AC100~240V / DC 6.5~30V,0 740 | Charge Current: 0.1~15A × 2,0 741 | Charge Power: C 325W × 2(650W),0 742 | AC 200W(Support power distribution),0 743 | Discharge Power Internal discharge: 15Wx2(balance port 10W),0 744 | External discharge: 325W × 2(650W),0 745 | Battery Type LiHv/LiPo/LiFe/Lilon/Lixx : 1~6S,0 746 | NiZn/Nicd/NiMH : 1~16S,0 747 | Smart Battery: 1~6S,0 748 | Lead Acid(Pb): 2~24V,0 749 | Enelop : 1~16S,0 750 | Balance Current: 1600mA × 2,0 751 | Discharge Current: 0.1~3A × 2,0 752 | External Discharge Current: 1~15A × 2,0 753 | USB Output: 5V / 2.1A,0 754 | Dimensions: 108 ×105 × 76mm,0 755 | Net Weight: 555g,0 756 | Package included:,1 757 | 1* HOTA D6 Charger / 1*HOTA D6 PRO Charger,0 758 | Best Seller,1 759 | US$ 64.99,0 760 | ISDT Q6 Plus 300W 14A MINI Pocket Battery Balance Charger,0 761 | Add to Wishlist,1 762 | US$ 32.99-100%,0 763 | ISDT PC4860 1-8S Safe Parallel Board XT60 CNC Parallel Charging Board,0 764 | Add to Wishlist,1 765 | US$ 49.99,0 766 | "ISDT Q6 Lite 200w Smart Charger With 2.4"" Display",0 767 | Add to Wishlist,1 768 | US$ 120.99,0 769 | RadioLink CB86 PLUS Balance Charger With 2.8inch TFT Display,0 770 | Add to Wishlist,1 771 | US$ 119.00,0 772 | ,0 773 | HOTA D6 PRO Charger AC200W DC650W 15A For 1-6S Lipo Battery With Wireless Charging,0 774 | ,0 775 | Add to Wishlist,1 776 | prev,0 777 | next,0 778 | Related Products,1 779 | US$ 32.99,0 780 | ISDT PC4860 1-8S Safe Parallel Board XT60 CNC Parallel Charging Board,0 781 | Add to Wishlist,1 782 | US$ 137.99,0 783 | ISDT D2 200W 24A AC Dual Channel Output Smart Battery Balance Charger,0 784 | Add to Wishlist,1 785 | US$ 23.99,0 786 | ISDT BG-8S Smart Battery For Checker Balancer Receiver Signal Tester Quick Charge Function,0 787 | Add to Wishlist,1 788 | US$ 22.98,0 789 | Kylin KN-2212002 Screwdriver Set 4PCS 1.5/2.0/2.5/3.0X100mm,0 790 | Add to Wishlist,1 791 | prev,0 792 | next,0 793 | About,0 794 | "SurveilZone provide thousands of products at incredible prices. We sell not only top quality products, but give our customers a positive online shopping experience. SurveilZone was founded in 2011 at ShenZhen(China), focusing on foreign trade e-commerce. We work to make your life more enjoyable.",0 795 | Information,0 796 | Why Choose SurveilZone,0 797 | Location And Working Time,0 798 | Estimated Delivery Time,1 799 | Locations We Ship To,1 800 | How To Get Points,1 801 | Store Information,1 802 | Call us now: +13473520156,0 803 | ,0 804 | Email: info@surveilzone.com,0 805 | ,0 806 | Review Sponsor: service@surveilzone.com,0 807 | ,0 808 | Skype: surveilzone,0 809 | ,0 810 | Wholesale/Reseller: buy@surveilzone.com,0 811 | Why Buy From Us,1 812 | Payment Method,0 813 | Affiliates,0 814 | Warranty,0 815 | Privacy Policy,0 816 | My Account,0 817 | Sign In,0 818 | View Cart,0 819 | My Wishlist,1 820 | My Order,1 821 | Facebook Page,1 822 | Follow Us,1 823 | © 2019 SurveilZone.com. All Rights Reserved.,0 824 | All ads,1 825 | සිංහල,0 826 | தமிழ்,0 827 | Chat,0 828 | Login,0 829 | POST YOUR AD,1 830 | Search,0 831 | "Fashion, Health & Beauty",0 832 | Sort results by,0 833 | Date: Newest on top,0 834 | Show only Buy now ads,0 835 | Type of poster,0 836 | All posters,0 837 | Only members,1 838 | Category,0 839 | All Categories,0 840 | "Fashion, Health & Beauty",0 841 | "Health & Beauty Products (2,109)",0 842 | "Clothing (1,704)",0 843 | "Watches (1,123)",0 844 | Jewellery (755),0 845 | Sunglasses & Opticians (573),0 846 | Bags & Luggage (390),0 847 | Shoes & Footwear (379),0 848 | Other Personal Items (261),0 849 | Other Fashion Accessories (145),0 850 | Location,0 851 | All of Sri Lanka,0 852 | "Colombo (5,247)",0 853 | Gampaha (879),0 854 | Kandy (393),0 855 | Kalutara (222),0 856 | Kurunegala (148),0 857 | Show more,0 858 | Home,0 859 | /,0 860 | All ads,0 861 | /,0 862 | "Fashion, Health & Beauty",0 863 | "Showing 1-25 of 7,439 ads",1 864 | ikman Deals,0 865 | Natural Tiger Eye Brown Bracelet 12mm,0 866 | "Rs 1,650Rs 3,00045% OFF",0 867 | Free Delivery,1 868 | Shampoo Bed,0 869 | MEMBER,0 870 | "Gampaha, Health & Beauty Products",0 871 | "Rs 15,500",0 872 | TOP AD,1 873 | Mens Slim Fit Chino Pant,0 874 | "Colombo, Clothing",0 875 | "Rs 1,500",0 876 | TOP AD,1 877 | "Blue and Yellow Sapphire Gem Ring""නිල සහ පුෂ්පරාග රිදි මූදු""",0 878 | MEMBER,1 879 | "Kandy, Jewellery",0 880 | "Rs 14,000",0 881 | AO Aviator Silver Sunglasses,0 882 | MEMBER,1 883 | "Colombo, Sunglasses & Opticians",0 884 | "Rs 2,990",0 885 | 10 minutes,0 886 | New Wasthi Sunglasses FF 1000,0 887 | MEMBER,1 888 | "Colombo, Sunglasses & Opticians",0 889 | "Rs 3,490",0 890 | 13 minutes,0 891 | High Quality Mens Boxer,0 892 | "Colombo, Clothing",0 893 | Rs 115,0 894 | 5Pcs Baby Diaper Bag Sets,0 895 | MEMBER,1 896 | "Colombo, Bags & Luggage",0 897 | "Rs 2,999",0 898 | Men's Dri-fit T-Shirts,0 899 | MEMBER,1 900 | "Colombo, Clothing",0 901 | Rs 590,0 902 | 1 hour,0 903 | Sector Expander Watch Original Used,0 904 | "Colombo, Watches",0 905 | "Rs 20,000",0 906 | 1 hour,0 907 | Royal Rings,0 908 | "Ratnapura, Jewellery",0 909 | "Rs 4,500",0 910 | 1 hour,0 911 | Royal Rings,0 912 | "Ratnapura, Jewellery",0 913 | "Rs 5,000",0 914 | 1 hour,0 915 | Winner Brand Mens Watch,0 916 | "Colombo, Watches",0 917 | "Rs 4,000",0 918 | 2 hours,0 919 | A Grade branded clothes,1 920 | "Gampaha, Clothing",0 921 | Rs 950,0 922 | 2 hours,0 923 | PVC Heavy Duty Rain Coat Jacket & Trouser Unisex,0 924 | "Colombo, Other Personal Items",0 925 | "Rs 1,400",0 926 | 2 hours,0 927 | Cama Shoes from Australia,0 928 | "Colombo, Shoes & Footwear",0 929 | "Rs 2,000",0 930 | 2 hours,0 931 | Wedding frock,0 932 | "Gampaha, Clothing",0 933 | "Rs 15,000",0 934 | 2 hours,0 935 | Mens Diesel Armbar Original Watch DZ1847,0 936 | "Colombo, Watches",0 937 | "Rs 16,500",0 938 | 3 hours,0 939 | Slazenger Ankle Shoe,0 940 | "Gampaha, Shoes & Footwear",0 941 | "Rs 10,000",0 942 | 3 hours,0 943 | Nike Air Max 270,0 944 | "Kandy, Shoes & Footwear",0 945 | "Rs 20,000",0 946 | 4 hours,0 947 | Outdoor camping backpack 60L,0 948 | MEMBER,1 949 | "Colombo, Bags & Luggage",0 950 | "Rs 5,500",0 951 | 6 hours,0 952 | Shisha vapes,0 953 | "Kurunegala, Other Personal Items",0 954 | "Rs 2,800",0 955 | 6 hours,0 956 | Men's shoes,0 957 | "Kandy, Shoes & Footwear",0 958 | "Rs 3,900",0 959 | 6 hours,0 960 | Titan Original,0 961 | "Colombo, Watches",0 962 | "Rs 21,000",0 963 | 6 hours,0 964 | Womens purse,0 965 | "Kegalle, Other Fashion Accessories",0 966 | Rs 550,0 967 | 6 hours,0 968 | Belt for Women,0 969 | "Kegalle, Other Fashion Accessories",0 970 | Rs 700,0 971 | 7 hours,0 972 | Frock,0 973 | "Kegalle, Clothing",0 974 | "Rs 1,200",0 975 | 7 hours,0 976 | Sweat Blouse,0 977 | "Kegalle, Clothing",0 978 | Rs 900,0 979 | 7 hours,0 980 | Previous,0 981 | 1,0 982 | 2,0 983 | 3,0 984 | 4,0 985 | 5,0 986 | ...,0 987 | Next,0 988 | Download our app,1 989 | Connect with,1 990 | Like us on facebook,1 991 | More from ikman,0 992 | Sell Fast,1 993 | Buy Now,1 994 | Membership,1 995 | Banner Ads,1 996 | Promotions,1 997 | Help & Support,0 998 | FAQ,0 999 | Stay safe,0 1000 | Contact Us,0 1001 | Follow ikman,1 1002 | Blog,1 1003 | Facebook,1 1004 | Twitter,1 1005 | Youtube,1 1006 | About ikman,0 1007 | About Us,0 1008 | Career,0 1009 | Terms and Conditions,0 1010 | Privacy policy,0 1011 | Sitemap,0 1012 | Copyright © Saltside Technologies,0 1013 | 11/9/2019,0 1014 | FREE SHIPPING ON ORDERS $150+ (U.S. ONLY.),1 1015 | SIGN IN,0 1016 | ,0 1017 | USD,0 1018 | CAD,0 1019 | INR,0 1020 | GBP,0 1021 | AUD,0 1022 | EUR,0 1023 | JPY,0 1024 | ,0 1025 | ALL PRODUCTS,0 1026 | ,0 1027 | STACKS,0 1028 | ,0 1029 | BLOG,0 1030 | ,0 1031 | CART,0 1032 | STRENGTHSERIES,0 1033 | ZMO,0 1034 | 5 star rating,1 1035 | 48 Reviews,1 1036 | | Leave a Review,1 1037 | Science Backed Claims,1 1038 | $24.00 USD,0 1039 | Quantity,0 1040 | 1 BOTTLE,0 1041 | 2 BOTTLES,0 1042 | 3 BOTTLES,0 1043 | ADD TO CART,0 1044 | PRODUCT OVERVIEW,0 1045 | "Zinc and Magnesium are the ultimate go-to solution for athletes that over-train and push the limits of their physiques at a competitive level. These two minerals are responsible for thousands of intricate enzymatic processes, and proper dietary intake is essential for optimal health.",0 1046 | "Transparent Labs is the first nutrition brand to make a highly bioavailable Zinc and Magnesium supplement, ZMO.",0 1047 | "Standing for Zinc, Magnesium, Oyster - each serving of ZMO contains active and accessible Zinc, Magnesium, and trace-mineral rich Oyster Extract!",0 1048 | "To be specific, we are proud to disclose the exact forms we use:",1 1049 | Zinc Picolinate,0 1050 | Magnesium Bisglycinate,0 1051 | Oyster Meat Powder,0 1052 | "ZMO is the true solution to nighttime muscle recovery and sleep support, vastly out-performing cheap and industrial oxide and aspartate supplements riddled across the supplement industry.",0 1053 | Possible ZMO benefits: ,0 1054 | A Better nights rest,0 1055 | Higher natural energy levels over time,0 1056 | Better performance gains,0 1057 | Higher testosterone in men,0 1058 | SEE PRICING,1 1059 | INGREDIENT PROFILE,0 1060 | "Directions: As a dietary supplement, take 2 capsules daily with 12 ounces of water. For best results, take on an empty stomach, 30-60 minutes before going to sleep.",0 1061 | Servings Per Container: 30 vegi-capsules,0 1062 | Elemental Magnesium,0 1063 | 144 mg,0 1064 | "Magnesium is a key mineral contributing to performance and overall health alike. However, certain forms of magnesium often used in sports supplements are also potent laxatives. Transparent Labs ZMO utilizes Magnesium Bisglycinate which is a non-laxative form of magnesium, as well as one of the most bioavailable sources [1]",0 1065 | ,0 1066 | TESTOSTERONE LEVELS,0 1067 | ,0 1068 | "Compared to Zinc, Magnesium shows greater promise in positively effecting testosterone levels. A recent 2010 study found, that both sedentary and athletic males displayed increases in testosterone upon magnesium supplementation. The greatest increase was in athletic individuals, as exercise also increases testosterone. [2]",0 1069 | ,0 1070 | GENERAL HEALTH,0 1071 | ,0 1072 | "Aside from testosterone, Magnesium supplementation is linked to greater insulin sensitivity [3], reduced blood pressure [4], and reduced stress/anxiety [5].",0 1073 | Elemental Zinc,0 1074 | 10 mg,0 1075 | Oyster Meat Powder,0 1076 | 500 mg,0 1077 | "Oyster is often regarded as a potent aphrodisiac due to its naturally high zinc and magnesium concentrations. However, beyond Zinc and Magnesium are the more important trace minerals that act as co-enzymes in the body and maximize zinc and magnesium utilization.",0 1078 | ,0 1079 | "In addition to delivering a wide array of 59 trace minerals, Oyster Meat is also under investigation for increasing endurance [10], anti-oxidant activity [11], and immunity function in athletes [12].",0 1080 | OTHER POPULAR PRODUCTS,1 1081 | PRESERIES,0 1082 | BULK PRE-WORKOUT,0 1083 | $49.00 - $119.00,0 1084 | PROTEINSERIES,0 1085 | 100% GRASS-FED WHEY PROTEIN CONCENTRATE,0 1086 | $49.00 - $123.00,0 1087 | WELLNESSSERIES,0 1088 | PREBIOTIC GREENS,0 1089 | $36.00 - $98.00,0 1090 | STRENGTHSERIES,0 1091 | CREATINE HMB,0 1092 | $39.00 - $87.00,0 1093 | STRENGTHSERIES ZMO FAQ'S,0 1094 | Q: When will my order be shipped out?,0 1095 | Q: How should StrengthSeries ZMO be taken to maximize its effectiveness?,0 1096 | "Q: I am subjected to drug testing for my sport, can I take StrengthSeries ZMO?",0 1097 | "Q: I don't live in the United States, can I still buy StrengthSeries ZMO?",0 1098 | Q: Does StrengthSeries ZMO require a post cycle regiment?,0 1099 | Q: Is it necessary to cycle on and off StrengthSeries ZMO? HMB?,0 1100 | Q: How long until I notice results in my training?,0 1101 | Q: Does Transparent Labs ship to my Country?,0 1102 | REVIEWS,1 1103 | Other top rated products,1 1104 | PreSeries LEAN Pre-Workout,0 1105 | 4.79576 star rating,1 1106 | -945,0 1107 | $49.00,0 1108 | PhysiqueSeries Fat Burner,0 1109 | 4.75356 star rating,1 1110 | -211,0 1111 | $49.00,0 1112 | PreSeries BULK Pre-Workout,0 1113 | 4.81425 star rating,1 1114 | -2245,0 1115 | $49.00,0 1116 | ProteinSeries 100% Grass-Fed...,0 1117 | 4.88381 star rating,1 1118 | -766,0 1119 | $59.00,0 1120 | StrengthSeries Creatine HMB,0 1121 | 4.87958 star rating,1 1122 | -382,0 1123 | $39.00,0 1124 | PreSeries STIM-FREE Pre-Workout,0 1125 | 4.78397 star rating,1 1126 | -574,0 1127 | $49.00,0 1128 | Powered by,0 1129 | 4.9 star rating,1 1130 | 49 Reviews,1 1131 | 23 Questions \ 23 Answers,1 1132 | -43,0 1133 | -5,0 1134 | -1,0 1135 | 0,0 1136 | 0,0 1137 | ASK A QUESTION,1 1138 | WRITE A REVIEW,1 1139 | Reviews (49),1 1140 | Questions (23),1 1141 | R,0 1142 | Rodney J.,1 1143 | Verified Buyer,1 1144 | 5 star rating,1 1145 | 11/09/19,0 1146 | ZMO supplement,0 1147 | I really like the ZMO. I feel better today with it.,1 1148 | Share,1 1149 | Share Review by Rodney J. on 9 Nov 2019,1 1150 | Was This Review Helpful?,1 1151 | 0,0 1152 | 0,0 1153 | J,1 1154 | Jorge H.,1 1155 | Verified Buyer,1 1156 | 5 star rating,1 1157 | 10/04/19,0 1158 | Good supplements,1 1159 | Good supplements,1 1160 | Share,1 1161 | Share Review by Jorge H. on 4 Oct 2019,1 1162 | Was This Review Helpful?,1 1163 | 0,0 1164 | 0,0 1165 | K,1 1166 | Kariim S.,1 1167 | Verified Buyer,1 1168 | 5 star rating,1 1169 | 09/22/19,1 1170 | Great product.,1 1171 | I love this product it helps me sleep like a baby without feeling groggy in the morning.,1 1172 | Share,1 1173 | Share Review by Kariim S. on 22 Sep 2019,1 1174 | Was This Review Helpful?,1 1175 | 0,0 1176 | 0,0 1177 | T,1 1178 | Trey E.,1 1179 | Verified Buyer,1 1180 | 5 star rating,1 1181 | 07/20/19,1 1182 | Great,1 1183 | "These supplements have actually worked for me since I’ve started using them now for about 3 weeks to a month consistently. Tried quite a bit of supplements before hand that just never did the trick for my preworkouts (pump, energy, focus) or my recovery. (Sleep, mood, reduced soreness and the drive to want to get at it again the next day in the gy...Read More",1 1184 | Read more about,1 1185 | Share,1 1186 | Share Review by Trey E. on 20 Jul 2019,1 1187 | Was This Review Helpful?,1 1188 | 0,0 1189 | 0,0 1190 | J,1 1191 | James A.,1 1192 | Verified Buyer,1 1193 | 5 star rating,1 1194 | 07/16/19,1 1195 | Great product,1 1196 | excellent product. aids in a solid night sleep. definitely helps with energy levels. will purchase again,1 1197 | Share,1 1198 | Share Review by James A. on 16 Jul 2019,1 1199 | Was This Review Helpful?,1 1200 | 0,0 1201 | 0,0 1202 | 1 2 3 4 5 6 7 8 9 10,0 1203 | SIGN UP FOR OUR NEWSLETTER,1 1204 | "Sign up to get the latest on sales, new releases and more …",1 1205 | INFORMATION,0 1206 | Shipping Info,0 1207 | Privacy Policy,0 1208 | Terms and Conditions,0 1209 | Wholesale,0 1210 | Contact Us,0 1211 | LINKS,0 1212 | Macro and Calorie Calculator,0 1213 | Certificates of Analysis,0 1214 | Certificates of Composition,0 1215 | Referral Program,0 1216 | Affiliates,0 1217 | SOCIAL,1 1218 | "© 2019 Transparent Labs. Statements contained herein have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent any disease.",0 1219 | Powered by Shopify,0 1220 | SHOP,0 1221 | LEARN,0 1222 | ABOUT ZOEVA,0 1223 | TOTAL,0 1224 | $0.00*,0 1225 | HERE TO STAY: FREE SHIPPING ON ORDERS OVER 100 USD,1 1226 | BAG,0 1227 | HOME / ROSE GOLDEN COMPLETE EYE SET,0 1228 | ROSE GOLDEN COMPLETE EYE SET,0 1229 | VOL. 1,0 1230 | $90.00*,0 1231 | 0.0 star rating,1 1232 | Write a review,1 1233 | TREAT YOURSELF,0 1234 | ,0 1235 | "Inspired by the dazzling fusion of copper and gold, our ZOEVA Rose Golden Complete Eye Set Vol. 1 is a true masterpiece. The enchanting composition of 12 luxurious, handcrafted eye brushes made of rose golden ferrules and matte brown handles comes stowed in an elegant dark brown brush clutch and is a statement accessory on every beauty lover’s...",0 1236 | Read more,0 1237 | COLOR: VOL. 1,0 1238 | 1,0 1239 | 2,0 1240 | 3,0 1241 | 4,0 1242 | 5,0 1243 | ADD TO CART,0 1244 | "*PRICES INCL. VAT, SHIPPING COSTS APPLY *PRICES EXCL. VAT, SHIPPING COSTS APPLY",1 1245 | "CONTENT; 1.00 PC(S), BASE PRICE: $90.00 / 1.00 PC(S), PRODUCT-CODE: SBE12S1",0 1246 | APPLICATION,0 1247 | PACKAGING AND CONTENT,0 1248 | REVIEWS,1 1249 | 142 / CONCEALER BUFFER pure synthetic hair,0 1250 | Applies and blends concealer,0 1251 | ,0 1252 | 224 / LUXE DEFINED CREASE natural synthetic hair blend / Treated goat hair,0 1253 | Blends eyeshadow in the crease,0 1254 | ,0 1255 | 226 / SMUDGER pure synthetic hair,0 1256 | Blends eyeshadow and kohl along the lash line,0 1257 | ,0 1258 | 227 / LUXE SOFT DEFINER natural synthetic hair blend / Treated goat hair,0 1259 | Softly blends and smoothes eyeshadow,0 1260 | ,0 1261 | 228 / LUXE CREASE natural synthetic hair blend / Treated goat hair,0 1262 | Blends and shades eyeshadow in the crease,0 1263 | ,0 1264 | 230 / LUXE PENCIL natural synthetic hair blend /...,0 1265 | Read more,1 1266 | ABOUT ZOE BOIKOU,0 1267 | MEET THE FOUNDER,0 1268 | ,0 1269 | "Having transformed herself from a makeup consumer to the CEO of a global beauty brand, Zoe Boikou is a true entrepreneur. Born in Greece, Zoe moved to Germany with her family at age 10, where she later discovered a lack of high-quality, reasonably priced makeup brushes on the market. Taking matters into her own hands, she began selling makeup brushes on eBay in 2008.",0 1270 | ,0 1271 | ,0 1272 | "A decade later, ZOEVA’s collection has grown from 10 brushes to nearly 300 makeup products and tools, and Zoe remains as committed as ever to creating quality products at a reasonable price and helping women around the world celebrate their individual beauty.",0 1273 | SIMILAR PRODUCTS,1 1274 | "*PRICES INCL. VAT, SHIPPING COSTS APPLY",1 1275 | "*PRICES EXCL. VAT, SHIPPING COSTS APPLY",1 1276 | EXPLORE ZOEVA,1 1277 | NEW & EXCLUSIVE,1 1278 | ,0 1279 | Shop our latest collections and online exclusives,0 1280 | BESTSELLERS,1 1281 | ,0 1282 | See all our fan favorite must-haves,1 1283 | HIGHLIGHTER PALETTES,0 1284 | ,0 1285 | Shine bright with dazzling shades,0 1286 | POSITIVELY BEAUTIFUL. AUTHENTICALLY YOU.,0 1287 | PRODUCTS,0 1288 | ,0 1289 | BRUSHES,0 1290 | EYES,0 1291 | FACE,0 1292 | LIPS,0 1293 | ACCESSORIES,0 1294 | MAKEUP SETS,0 1295 | LEARN,0 1296 | COMPANY,0 1297 | ,0 1298 | ABOUT ZOEVA,0 1299 | COLLECTIONS,0 1300 | CAREERS,0 1301 | WHOLESALE,0 1302 | CUSTOMER SERVICE,0 1303 | ,0 1304 | CONTACT US,0 1305 | SHIPPING AND PAYMENT,0 1306 | FAQ,0 1307 | STORE LOCATOR,0 1308 | SITEMAP,0 1309 | JOIN OUR NEWSLETTER,0 1310 | © ZOEVA US 2019,0 1311 | ,0 1312 | IMPRINT,0 1313 | TERMS & CONDITIONS,0 1314 | COUNTRY: UNITED STATES,0 1315 | "We use cookies and other tracking tools on this site. These serve to improve as well as personalize our offering, among other things. By making use of our services (clicking/scrolling), you consent to the tracking of your data. This consent can be withdrawn voluntarily and freely. You can change your cookie settings and prevent the tracking in its entirety or in part at any time. How this is done is explained in our Cookie Policy. Further information can also be found in our Privacy Policy.",1 1316 | Call 040 - 67006700 for help,0 1317 | Locate A Store| Download App | Sign In/Register,0 1318 | Enter your delivery Locality,1 1319 | or Pincode to start shopping,1 1320 | Type your area name / pincode,1 1321 | Submit,0 1322 | Locate me,1 1323 | "Note: Selection of service locality/pincode is required to place an order. Our Default locality is Balanagar, Hyderabad.",1 1324 | All Product,0 1325 | ,0 1326 | SEARCH,0 1327 | Cart,0 1328 | 0,0 1329 | "6/56, Bhavani Nagar, Moosapet, Hyderabad, Telangana 500018, India , Hyderabad",0 1330 | Home Delivery Available,0 1331 | HEALTH STORE,0 1332 | PHARMACY,0 1333 | FLEXIREWARDS,0 1334 | PROMOTIONS,0 1335 | HEALTHY LIFE,0 1336 | Home Baby Needs Baby Care Baby Creams & Lotions Baby Dove Rich Moisture Nourishing ...,0 1337 | Hover to Zoom,0 1338 | BABY DOVE,0 1339 | BABY DOVE RICH MOISTURE NOURISHING BABY LOTION 200ML,0 1340 | MRP 180,0 1341 | 108,0 1342 | Save 40%,1 1343 | Inclusive of all Taxes,1 1344 | Standard Delivery - Free,1 1345 | Available In 24 Hrs,1 1346 | Also available at the following stores near you,1 1347 | Add to Cart,1 1348 | Product Information,0 1349 | "Baby's skin is 30% thinner than the adult skin, which makes it lose moisture faster, especially during bath time. Baby Dove Rich Moisture Nourishing Baby Lotion moisturizes and soothes the baby's skin from the first use itself, keeping the baby's skin thoroughly moisturized for up to 24 hours. This lotion is hypoallergenic and pH neutral, which makes it gentle, mild and non-irritating on the baby's skin. This also makes it ideal for daily use.",0 1350 | Suitable for new borns as well.,0 1351 | Benefits of Baby Dove Rich Moisture Nourishing Baby Lotion,0 1352 | "Dermatologist and pediatrician-tested Replenishes the baby's skin with moisture, and locks in the moisture for up to 24 hrs Moisturizes and hydrates the baby's skin, making it soft and healthy Gentle, mild and non-irritating on the baby's skin Ideal for everyday use",0 1353 | Usage,0 1354 | ,0 1355 | "After bathing the baby, it is advisable to take a required amount of the Baby Dove Rich Moisture Nourishing Baby Lotion onto your hands and warm it, and then apply it onto the baby's skin by gently massaging it into the baby's skin, giving more attention to the especially dry areas. For the best results, use this lotion on a daily basis.",0 1356 | 100% Protection,0 1357 | Genuine Products|Secure Payments,1 1358 | Applicable Offers,1 1359 | PAYTM,0 1360 | Get Upto 350 Cashback | Min order value Rs 1000 | Tiered Campaign T & C,1 1361 | MOBIKWIK,0 1362 | Use code KWIK20 | Get 20% Supercash | Max upto Rs 150 T & C,1 1363 | Other Products,0 1364 | HIMALAYA BABY LOTION 200ML,0 1365 | MRP 145,0 1366 | 127.6,0 1367 | Save 12%,1 1368 | HIMALAYA BABY CREAM 200 ML,0 1369 | MRP,0 1370 | 235,0 1371 | Save upto 5%,1 1372 | HIMALAYA BABY CREAM 100 ML,0 1373 | MRP 128,0 1374 | 112.64,0 1375 | Save 12%,1 1376 | HIMALAYA DIAPER RASH CREAM 20GM,0 1377 | MRP,0 1378 | 64,0 1379 | Save upto 5%,1 1380 | HIMALAYA BABY LOTION 400 ML,0 1381 | MRP,0 1382 | 255,0 1383 | Save upto 5%,1 1384 | SEBAMED BABY WASH EXTRA SOFT 200ML LOTION,0 1385 | MRP,0 1386 | 456,0 1387 | Save upto 5%,1 1388 | JOHNSON'S BABY CREAM 100GM,0 1389 | MRP,0 1390 | 135,0 1391 | Save upto 5%,1 1392 | SEBAMED DIAPER RASH CREAM 100ML,0 1393 | MRP,0 1394 | 470,0 1395 | Save upto 5%,1 1396 | AVEENO DAILY MOISTURIZING 354ML LOTION,0 1397 | MRP,0 1398 | 850,0 1399 | Save upto 5%,1 1400 | HIMALAYA BABY LOTION 100 ML,0 1401 | MRP,0 1402 | 85,0 1403 | Save upto 5%,1 1404 | More Products from BABY DOVE,0 1405 | More Baby Creams & Lotions,0 1406 | More Baby Creams & Lotions from BABY DOVE,0 1407 | Subscribe Now,1 1408 | About Us FAQs Locate A MedPlus Store Track Orders Browse All Brands Customer Feedback Contact Us,1 1409 | General Store,0 1410 | Baby-Needs: Baby Food / Baby Care,0 1411 | "Personal-Care: Skin Care / Sanitary & Hygiene / Oral Care / Hair Care / Bath & Body Products / Sexual Wellness / Deodorants & Perfumes / Eyes, Ears & Lips / Shaving & Hair Removal / Hand, Foot & Nails",0 1412 | Health-n-Nutrition: Health Drinks / Breakfast Cereals / Nutritional Foods / Weight Management,0 1413 | OTC-n-Health-Needs: First Aid / Pain Relief / Cold Relief / Joint Care & Support / Skin & Foot Care / Digestives & Laxatives / Healthcare Devices / Anti-Smoking Products,0 1414 | Vitamins-n-Supplements: Sports Supplements / Vitamins & Minerals / Herbal Supplements / Jamieson,0 1415 | Diabetic-Needs: Diabetic Testing Needs / Diabetic Nutrition / Diabetic Aids,0 1416 | "Household-Needs: Cleaning Needs / Detergents / Home Utilities / Kitchen Utilities / Luggage / Bakery & Confectionary / Beverages / Jams, Sauces & Spreads / Dairy Products / Branded Organic & Ayurvedic",0 1417 | Pharmacy,0 1418 | Medicine Information: Health Records / Request a Product / Store Locator / Top Searches / Alphabet Wise Products,0 1419 | "Browse drugs by Therapeutic category: Gastrointestinal & Hepatobiliary System / Cardiovascular & Hematopoietic system / Respiratory System / Central Nervous System / Musculo-Skeletal System / Hormones / Contraceptive Agents / Infectious Disease Drugs / Oncology / Genito - Urinary System / Endocrine & Metabolic System / Vitamins & Minerals / Nutrition / Eye / Ear & Mouth / Throat / Dermatologicals / Anaesthetics & Intravenous Solutions / Allergy & Immune System / Antidotes, Detoxifying Agents & Drugs Used in Substance Dependence / Miscellaneous",0 1420 | Browse Surgicals products by category: Anaesthesia / Cardiovascular / CSSD / Catheters & Tubes / IV Needs / Mobilization Equipment / Orthopaedic / Surgicals / Pulmonary/Emergency Care / Diagnostic/Imaging,0 1421 | Payments,0 1422 | ,0 1423 | Partners,0 1424 | ,0 1425 | Follow us,1 1426 | ,0 1427 | About MedPlusMart:,0 1428 | MedPlus: One of the most trusted gateways to medicines and general provision,1 1429 | "With an aim to eradicate fake and ineffective medicines, and supply high-quality medicines in India, MedPlus was launched in 2006 in Hyderabad. According to WHO research, every 1 or 2 in 10 medicines are proven to be adulterated in low/medium income countries like India and MedPlus aspires to bring about a change in this statistic. To encourage and elevate transparency in the functioning of the pharmaceutical industry, MedPlus has been successfully contributing in providing genuine and unadulterated medicines since its inception. Currently operating in 300+ cities, with 1500+ offline stores in India, MedPlus is the second largest pharmacy chain in India today. Welcome to a seamless and impeccable shopping experience!",0 1430 | 6 Reasons for you to Shop from MedPlus:,1 1431 | Authentic medicines: Be 100% assured of receiving genuine medicines,1 1432 | Monthly provisions: One stop store for both medicines as well as monthly provisions (kiraana),0 1433 | Quick to-door deliveries: We ensure the delivery of well-packaged products to your doorstep at quick timelines.,0 1434 | "Pocket-friendly: Our range of discounts, offers and deals will allow you to go economical everyday, everytime. We recommend you to explore FlexiRewards, our special saving scheme.",0 1435 | Customer-friendly: Order from the comfort of your sofa with our easy browsing and smooth billing procedure. Our hassle-free Upload Prescription option allows you to seamlessly upload your prescription online and have your medicines delivered to you!,0 1436 | Track and Re-Order: Conveniently refer to all your previous bills and orders which will allow you to re-order with a single click.,0 1437 | "Also, for those of you who prefer offline shopping, locate your nearest store and get going!",0 1438 | © 2019 MedPlusMart.com. All rights reserved.,0 1439 | Pre Black Friday Sale! Save 18% || Coupon code: EARLYBF,1 1440 | 877-822-8659,0 1441 | MY ACCOUNT,0 1442 | CART,0 1443 | Search,0 1444 | BROTHER,0 1445 | CANON,0 1446 | DELL,0 1447 | EPSON,0 1448 | HP,0 1449 | SAMSUNG,0 1450 | XEROX,0 1451 | MORE BRANDS,0 1452 | Brother TN660 Compatible Toner Cartridge 5-Pack,0 1453 | MSRP: $64.99,0 1454 | $44.99,0 1455 | (You save $20.00 ),1 1456 | Item Number: CBTN660VB,0 1457 | (82 reviews) Write a Review,1 1458 | In Stock & Ready to Ship,1 1459 | DESCRIPTION,0 1460 | Brother TN660 Toner Cartridge 5-Pack - Compatible,0 1461 | "SuppliesOutlet.com's compatible Brother TN660 toner cartridge is guaranteed to meet or exceed original Brother toner cartridges in both print quality and page yield. Our toner cartridges have been engineered to create consistent, high quality images. Our Brother TN660 toner cartridges are made with the highest quality new and recycled components in ISO9001 / ISO14001 certified factories. SuppliesOutlet.com offers 100% OEM compatible toner cartridges and a lifetime performance guarantee.",0 1462 | ,0 1463 | SuppliesOutlet.com is the leader in quality compatible printer supplies.,0 1464 | Product Specification,0 1465 | Condition,0 1466 | ,0 1467 | New Compatible,0 1468 | ,0 1469 | Warranty,0 1470 | ,0 1471 | Lifetime Warranty from us & will not void your printer warranty.,0 1472 | ,0 1473 | Page Yield,0 1474 | ,0 1475 | 2600 per cartridge,0 1476 | ,0 1477 | Color(s),0 1478 | ,0 1479 | Black,0 1480 | ,0 1481 | Multipack Includes,0 1482 | ,0 1483 | Five TN660 Toner Cartridges,0 1484 | Replaces the Following Manufacturer Numbers:,0 1485 | TN630,0 1486 | TN660,0 1487 | Compatible with the Following Printer Models:,0 1488 | DCP-L2520DW,0 1489 | DCP-L2540DW,0 1490 | HL-L2300D,0 1491 | HL-L2305W,0 1492 | HL-L2315DW,0 1493 | HL-L2320D,0 1494 | HL-L2340DW,0 1495 | HL-L2360DW,0 1496 | HL-L2380DW,0 1497 | MFC-L2680W,0 1498 | MFC-L2685DW,0 1499 | MFC-L2700DW,0 1500 | MFC-L2705DW,0 1501 | MFC-L2707DW,0 1502 | MFC-L2720DW,0 1503 | MFC-L2740DW,0 1504 | 100% Satisfaction Guarantee,0 1505 | Same day shipping for orders placed by 6pm (EST),0 1506 | Made with the highest quality New & Recycled components in ISO9001/14001 certified factories,0 1507 | LIFETIME performance guarantee... Click for info,0 1508 | 100% OEM Compatible - Guaranteed to meet or exceed the performance of your original cartridge and print tested at the factory,0 1509 | Nearly all our products have these certifications! Compare our Quality!,1 1510 | What Other Customers Are Saying,1 1511 | ,0 1512 | 5,1 1513 | great,1 1514 | ,0 1515 | Posted by robert wagar on Jun 19th 2019,0 1516 | ,0 1517 | "works well, fastest shipping, dependable supplier, ordered many times before. Will order again",1 1518 | ,0 1519 | 4,1 1520 | Best Cartridge for the money EASY,1 1521 | ,0 1522 | Posted by BOTY (Boss Of The Year) on Mar 5th 2019,1 1523 | ,0 1524 | "We now have 6 Brother printers that run on these cartridges which we use for office printing, job tickets, memos etc.. These cartridges will not win any awards for the greatest print coverage, but they will save you a ton of money. We can buy a 5pack here for the price of 1 cartridge from a big-box store and free shipping always helps..",1 1525 | "So if you're planning on using these to print beautiful charcoal drawings, these may not be for you, but for normal printing these are great..",1 1526 | ,0 1527 | 5,1 1528 | I WILL ALWAYS BUY THIS PRODUCT THRU SO.com,1 1529 | ,0 1530 | Posted by Rose on Feb 22nd 2019,1 1531 | ,0 1532 | "I own a Tax business and were ALWAYS in need of toner, and SuppliesOutlet is the BEST company by far that we have ever dealt with!",1 1533 | ,0 1534 | 5,1 1535 | Arrived as ordered and as promised.,1 1536 | ,0 1537 | Posted by mike_at_GLY on Feb 15th 2019,1 1538 | ,1 1539 | Easy to work with. I'll be back. Thank you.,1 1540 | ,1 1541 | 5,1 1542 | Very Happy,1 1543 | ,1 1544 | Posted by EL on Aug 15th 2018,1 1545 | ,1 1546 | I've been ordering these for years. Really helps keep our copying costs down.,1 1547 | ,1 1548 | 5,1 1549 | Quality for a fraction of the normal cost,1 1550 | ,1 1551 | Posted by Aaron on Aug 14th 2018,1 1552 | ,1 1553 | I can buy about 5 high capacity printer cartridges or 1 locally for about the same price. Do a little planning and save big!,1 1554 | ,1 1555 | 5,1 1556 | "Good product, great buy!",1 1557 | ,1 1558 | Posted by skeptic on Jul 30th 2018,1 1559 | ,1 1560 | "See no difference from Brother's product, except in price",1 1561 | ,1 1562 | 5,1 1563 | greta product,1 1564 | ,1 1565 | Posted by Jimmy V. on Mar 19th 2018,1 1566 | ,1 1567 | "I got the toner and right on time, works great thanks!!",1 1568 | ,1 1569 | 5,1 1570 | Fast shipping,1 1571 | ,1 1572 | Posted by Cindy on Mar 19th 2018,1 1573 | ,1 1574 | The shipping time was great and the product is always good. I have going to begin purchasing the Jumbo style of this toner as it is double the amount of copies and only $3.00 more in price. Wish I would have noticed sooner.,1 1575 | Next,1 1576 | RELATED ITEMS,1 1577 | CUSTOMERS ALSO VIEWED,1 1578 | "Brother TN660 Set of Two Compatible Toner Cartridges for HL-L2320D, HL-L2340DW and HL-L2360DW ..",0 1579 | $26.99,0 1580 | Brother TN660 OEM High Yield Black Toner Cartridge,0 1581 | $61.09,0 1582 | Brother TN660 Compatible Black Jumbo Toner Cartridge ..,0 1583 | $19.99,0 1584 | Brother TN660 Compatible Black Toner Cartridge,0 1585 | MSRP: $14.99,0 1586 | $9.99,0 1587 | Brother TN660 Compatible Black Toner Cartridge.,0 1588 | $10.99,0 1589 | 1,0 1590 | Navigate,0 1591 | Shipping Info,0 1592 | Warranty & Returns,0 1593 | Contact Us,0 1594 | About Us,0 1595 | My Account,0 1596 | Shopping Cart,0 1597 | Sitemap,0 1598 | Printer Brands,0 1599 | Brother,0 1600 | Canon,0 1601 | Dell,0 1602 | Epson,0 1603 | HP,0 1604 | Samsung,0 1605 | Xerox,0 1606 | More Brands,0 1607 | Info,0 1608 | Supplies Outlet,0 1609 | 5440 Reno Corporate Dr,0 1610 | "Reno, NV 89511",0 1611 | Call us at 1-877-822-8659,0 1612 | Subscribe for Savings,1 1613 | Get the latest updates on new products and upcoming sales,1 1614 | "All manufacturer brand names are registered trademarks of their respective owners. Any brand name designations or references are made solely for descriptive purposes or for demonstrating cartridge compatibility. Suppliesoutlet.com has no affiliation with The Hewlett Packard Company (“HP”), and is not an authorized distributor of genuine HP products. SuppliesOutlet.com is not responsible for typographical errors. SuppliesOutlet.com's limitation of liability is strictly limited to the purchase price of the product. In no event shall we be responsible for incidental or consequential damages of any kind. Prices and availability are subject to change at any time. 5440 Reno Corporate Drive | Reno, NV 89511",0 1615 | ,0 1616 | © 2019 Supplies Outlet - All rights reserved.,0 1617 | SHOP NOW,1 1618 | STORES,0 1619 | ABOUT US,0 1620 | ShopHomeNETGEAR  Router & Satellite...,0 1621 | "Say goodbye to any wiring thanks to a fast, dedicated wireless connection between router and satellite. The Orbi Pro AC3000 Tri-band WiFi System by NETGEAR comes with an Orbi Pro Router and Satellite that provide seamless, high-speed WiFi with high-performance FastLane3 patented Tri-band AC3000 technology. It provides WiFi for up to 40 users and covers up to 5,000 sq ft. Features include MU-MIMO and wire-free installation.",0 1622 | NETGEAR Router & Satellite WiFi System SRK60,0 1623 | Orbi Pro Better WiFi for Businesses and Customers,0 1624 | b8ta price,0 1625 | ,0 1626 | $499.99,0 1627 | Sorry this product is currently out of stock. Enter your email and we’ll let you know when it’s back.,1 1628 | EMAIL ADDRESS,0 1629 | SUBMIT,0 1630 | Free shipping.,0 1631 | ,0 1632 | Full refund on most items within 30 days.,0 1633 | ,0 1634 | See details.,0 1635 | AccessibilitySupportCareersPressPartner With UsBuilt by b8taPrivacyTerms of UseBlog,0 1636 | © 2019 b8ta,0 1637 | UK & Ireland,0 1638 | Products,0 1639 | Support,0 1640 | Education,0 1641 | News,0 1642 | Corporate,0 1643 | Careers,0 1644 | Login,0 1645 | Home,0 1646 | Products,0 1647 | Label Products,0 1648 | KL-7400-UH,0 1649 | KL-7400 Label Printer,0 1650 | At a glance,0 1651 | Features,0 1652 | Specifications,0 1653 | Support,0 1654 | The image colour may differ slightly from the original.,0 1655 | KL-7400 Label Printer,0 1656 | £69.98,0 1657 | Buy,0 1658 | At a glance,0 1659 | "This KL-740 Label Printer display 4 lines and 16 digits metal cover. Its comes with barcode printing, 20 character sizes (1x1 to 4x4) with auto power.",0 1660 | Specifications,0 1661 | Functions,0 1662 |   No. of Lines max. 3,0 1663 | 20 Character Sizes (1x1 to 4x4),0 1664 | 60 pre-installed logos with text and icons,0 1665 | Copy & Paste Function,0 1666 | Full & Half Cut Function,0 1667 | "Barcode Printing: EAN-8, EAN-13",0 1668 | ,0 1669 | Fonts 5,0 1670 | ,0 1671 | "Effects Shading, Underline, Box",0 1672 | ,0 1673 | General Data,0 1674 |   QWERTY-Keyboard,0 1675 | ,0 1676 | Display 4 Lines / 16 DigitsMetal Cover,0 1677 | ,0 1678 | Printing Speed 10 mm/sec.,0 1679 | ,0 1680 | Resolution 200 dpi,0 1681 | ,0 1682 | Size (W x L x H) 202 x 216 x 64.5mm,0 1683 | ,0 1684 | Weight 750 g,0 1685 | ,0 1686 | Battery 8 x AA,0 1687 | ,0 1688 | Supported Label Tape Sizes 6 / 9 / 12 / 18 / 24 mm,0 1689 | ,0 1690 | "In order to ensure best printer function and stability, always use only genuine CASIO tape cartridges. Use of a non-CASIO tape cartridge can harm your printer, result in poor printing quality, and cause other problems that can permanently affect the printer’s ability to perform at the level for which it was designed. Also note that problems caused by use of a non-CASIO tape cartridge are not covered by the printer’s warranty, so any charges required for servicing and repair must be borne by you.",0 1691 | Support Information,0 1692 | FAQs,0 1693 | Manuals,0 1694 | Downloads,0 1695 | Label Products,0 1696 | Category Home,0 1697 | Home,0 1698 | Products,0 1699 | Label Products,0 1700 | KL-7400-UH,0 1701 | Products,0 1702 | Watches,0 1703 | Electronic Musical Instruments,0 1704 | Calculators,0 1705 | Label Printers,0 1706 | Integrated EPoS Solutions,0 1707 | Cash Registers,0 1708 | Projectors,0 1709 | Digital Cameras,0 1710 | Handheld Terminals,0 1711 | Support,0 1712 | FAQs,0 1713 | Manuals,0 1714 | Downloads,0 1715 | Windows / Mac OS,0 1716 | iOS / Android,0 1717 | Repair Tracking,0 1718 | Servicing & Repairs,0 1719 | Trade Repair Tracking,0 1720 | Product Registration,0 1721 | Contact Us,0 1722 | Feedback,0 1723 | Education,0 1724 | Resources,0 1725 | Training,0 1726 | Case Studies and News,0 1727 | Where to purchase,0 1728 | News,0 1729 | Corporate,0 1730 | Modern Slavery Act,0 1731 | WEEE Regulations,0 1732 | Shipping Returns,0 1733 | FOLLOW US,1 1734 | Facebook,1 1735 | Twitter,1 1736 | YouTube,1 1737 | Search,0 1738 | © 2019 CASIO ELECTRONICS CO. LIMITED Privacy Policy Terms of Use Cookie Policy Sitemap,0 1739 | UK & Ireland Select Country or Region,0 1740 | Free Shipping On Orders Over $49. Details,0 1741 | Log In Saved for Later Cart(0),0 1742 | AmericanMuscle.com,0 1743 | TALK TO A MUSTANG ENTHUSIAST,0 1744 | 1-877-887-1105,0 1745 | "M-F 8:30A-11P, Sat-Sun 8:30A-9P",0 1746 | Search,0 1747 | 1999-2004 MUSTANG CHANGE YEAR,0 1748 | ,0 1749 | CHANGE VEHICLE,0 1750 | Deals,0 1751 | ,0 1752 | Lifestyle,0 1753 | ,0 1754 | Brakes,0 1755 | ,0 1756 | Drivetrain,0 1757 | ,0 1758 | Engine,0 1759 | ,0 1760 | Exhaust,0 1761 | ,0 1762 | Exterior,0 1763 | ,0 1764 | Intake,0 1765 | ,0 1766 | Interior,0 1767 | ,0 1768 | Lights,0 1769 | ,0 1770 | Restoration,0 1771 | ,0 1772 | Suspension,0 1773 | ,0 1774 | Tuners,0 1775 | ,0 1776 | Wheels & Tires,0 1777 | "Win $5,000 For Your Mustang! Enter Daily",1 1778 | Mustang Parts & Accessories Ford Mustang Wheels & Tires Ford Mustang Wheels 1999-2004 Mustang Parts & Accessories 1999-2004 Mustang Wheels & Tires 1999-2004 Ford Mustang Wheels,0 1779 | Rovos Cape Town Satin Silver Wheel - 18x10.5 - Rear Only (99-04 All),0 1780 | Item 398170G99,0 1781 | Customer pics (6),1 1782 | Call a Mustang Enthusiast at 1-877-887-1105,0 1783 | "M-F 8:30A-11P, Sat-Sun 8:30A-9P",0 1784 | 5 Reviews 2 Answers,1 1785 | Market Price $328.90,1 1786 | You Save 54% ($178.91),1 1787 | On Sale,1 1788 | ,0 1789 | $149.99 (each),0 1790 | ,0 1791 | FREE Shipping,0 1792 | ,0 1793 | or as low as $14/mo with Affirm,1 1794 | see how much you prequalify for,1 1795 | WILL THIS FIT YOUR MUSTANG?,0 1796 | 1999-2004,0 1797 | Choose Year,0 1798 | 200420032002200120001999,0 1799 | Change Vehicle,0 1800 | Help?,0 1801 | Item Options,0 1802 | YES: Free Mount and Balance,1 1803 | ,0 1804 | $0.00,0 1805 | Yes,0 1806 | No,0 1807 | FREE 3-day Delivery,0 1808 | "In Stock Get it by Thursday, 11/14",0 1809 | Ship to: Old Westbury - 11568,0 1810 | UPDATE,0 1811 | Add to Cart,0 1812 | Save for later,0 1813 | 99-04 Mustang Owners Who Viewed This Item Also Viewed,1 1814 | -3,0 1815 | ,0 1816 | Rovos Cape Town Satin Bronze Wheel - 18x10.5 - Rear Only,0 1817 | (99-04 All),0 1818 | ,0 1819 | $140.41,0 1820 | -4,0 1821 | ,0 1822 | Rovos Cape Town Satin Silver Wheel - 18x9,0 1823 | (99-04 All),0 1824 | ,0 1825 | $209.79,0 1826 | -1,0 1827 | ,0 1828 | Rovos Pretoria Silver Wheel - 18x9,0 1829 | (99-04 All),0 1830 | ,0 1831 | $161.29,0 1832 | Features & Details,0 1833 | Five-Spoke Construction,0 1834 | Satin Center Cap,0 1835 | Powder Coated Satin Wheel with and Gloss Silver details,0 1836 | Fits all 1999-2004 Mustangs,0 1837 | Product Resources,0 1838 | Customer Photos (6) Customer Reviews (5) Questions (2) & Answers (2),1 1839 | Hit the Road with Attitude. Choose Rovos Cape Town Satin Silver Wheels for a bona fide bump in attitude. These wheels feature a contemporary five-spoke design that extends from the hub to the lip with a slight curve a the rim for style points. Rovos Cape Town Satin Silver Wheels are just what you need to add aggression to your aesthetic.,0 1840 | "Show Them What You’ve Got. Rovos Cape Town coats their Satin Silver Wheel with a premium finish and just the right amount of satin accents to give this rim a bold, modern contrast. With Rovos Cape Town Satin Silver Wheels, you can drive for the win confident that you and your ride will look awesome on the podium.",0 1841 | "Top Notch Quality. Rovos Cape Town casts their Satin Silver Wheel using low pressure, 99.9 percent pure aluminum that results in a stronger, denser wheel that holds up to the high-performance demands of the track. The manufacturing process saves costs, which Rovos passes on to you. Save money, look great and paint the track in style with Rovos Cape Town Satin Silver Wheels.",0 1842 | Warranty. Rovos warrants this wheel against material defects for 5-years and structural integrity for the life of the product. The guarantee protects the original purchaser.,0 1843 | Recommended or Required Upgrades. Combine two 18 inches by 9-inch front wheels and two 8 inches by 10.5 inch rear wheels for a staggered stance.,0 1844 | ,0 1845 | Application. The 18x10.5 Rovos Cape Town Satin Silver Wheel is designed to fit all 1999-2004 Ford Mustangs.,0 1846 | Fitment: 199920002001200220032004 Details,0 1847 | Mounting & Balancing: AmericanMuscle offers professional mounting and balancing on all wheels and tires when purchased together on the same order for an additional fee. This will allow you to swap out your old wheels for your new set when they arrive. We even offer Free Nitrogen tire fill.,0 1848 | ,0 1849 | State of the Art On-Site Tire Facility,0 1850 | Scratch Free Mounting Process,0 1851 | "Environmentally Friendly, Lead Free Wheel Weights",0 1852 | Free Optional Nitrogen Tire Fill,0 1853 | 1 to 2 Business Day Turn Around Time on Most Orders,0 1854 | MPN# SC072-1805511423SSCH,0 1855 | CA Residents: WARNING: Cancer and Reproductive Harm - www.P65Warnings.ca.gov,0 1856 | What's in the Box,0 1857 | (1) Wheel,0 1858 | (1) Center Cap,0 1859 | Installation Info,0 1860 | Installation Time,0 1861 | ,0 1862 | ,0 1863 | ,0 1864 | (approx) 30 Minutes,0 1865 | Difficulty Level:,0 1866 | ,0 1867 | ,0 1868 | ,0 1869 | Simple installation for anyone.,0 1870 | Installation Guides,0 1871 | ,0 1872 | ,0 1873 | ,0 1874 | No guide available for this part yet. Find out how to get up to $200 for writing an install guide.,0 1875 | Tech Specs,0 1876 | People Who Viewed This Item Ultimately Bought,1 1877 | -4,0 1878 | Rovos Cape Town Satin Silver Wheel - 18x9,0 1879 | (99-04 All),0 1880 | $209.79,0 1881 | -3,0 1882 | Bullitt Solid Anthracite Wheel - 17x8,0 1883 | (99-04 All),0 1884 | $59.99,0 1885 | -1,0 1886 | Rovos Pretoria Silver Wheel - 18x9,0 1887 | (99-04 All),0 1888 | $161.29,0 1889 | -29,0 1890 | 2010 GT500 Style Black Wheel - 18x10 - Rear Only,0 1891 | (94-98 All),0 1892 | $135.99,0 1893 | Customer Photos (6),1 1894 | Submit Your Photo,0 1895 | 46,0 1896 | 26,0 1897 | 17,0 1898 | 16,0 1899 | 16,0 1900 | 8,0 1901 | VIEW ALL 6 PHOTOS,0 1902 | Top Wheels for your 99-04 Mustang,0 1903 | -3,0 1904 | Bullitt Solid Anthracite Wheel - 17x8,0 1905 | (99-04 All),0 1906 | $59.99,0 1907 | -79,0 1908 | 2003 Cobra Style Black Wheel - 17x9,0 1909 | (99-04 All),0 1910 | $129.99,0 1911 | (100+),0 1912 | Deep Dish Bullitt Black Wheel - 17x10.5 - Rear Only,0 1913 | (99-04 All),0 1914 | $120.99,0 1915 | -4,0 1916 | Rovos Cape Town Satin Silver Wheel - 18x9,0 1917 | (99-04 All),0 1918 | $209.79,0 1919 | -6,0 1920 | 2013 GT500 Style Gloss Black Wheel - 18x9,0 1921 | (99-04 All),0 1922 | $171.99,0 1923 | (100+),0 1924 | Deep Dish Bullitt Anthracite Wheel - 17x10.5 - Rear Only,0 1925 | (99-04 All),0 1926 | $108.63,0 1927 | -2,0 1928 | Magnetic Style Black Wheel - 19x8.5,0 1929 | (99-04 All),0 1930 | $164.99,0 1931 | -65,0 1932 | 1995 Cobra R Style Chrome Wheel - 17x9,0 1933 | (99-04 All),0 1934 | $169.99,0 1935 | -71,0 1936 | Deep Dish Bullitt Black Wheel - 18x10 - Rear Only,0 1937 | (99-04 All),0 1938 | $154.00,0 1939 | -32,0 1940 | Bullitt Motorsport Black Wheel - 18x10 - Rear Only,0 1941 | (99-04 All),0 1942 | $164.00,0 1943 | -1,0 1944 | Rovos Pretoria Silver Wheel - 18x9,0 1945 | (99-04 All),0 1946 | $161.29,0 1947 | -3,0 1948 | Rovos Cape Town Satin Bronze Wheel - 18x10.5 - Rear Only,0 1949 | (99-04 All),0 1950 | $140.41,0 1951 | Questions & Answers (2),1 1952 | 2 Top Rated Questions,1 1953 | Can you install 18x10.5 on the front ?,1 1954 | "We would say no, some people may try this with spacers, but it is too large for the front, and spacers would put undue stress on the front axle. In addition, you would likely experience rubbing.",1 1955 | Helpful (0),1 1956 | will these fit a 06 gt? i dont want the 20s :/,1 1957 | These will work on the 06 models yes.,1 1958 | Helpful (0),1 1959 | Not finding an answer? Ask your question!,1 1960 | Post Your Question,1 1961 | 99-04 Mustang Owners Who Viewed This Item Also Viewed,1 1962 | -3,0 1963 | Rovos Cape Town Satin Bronze Wheel - 18x10.5 - Rear Only,0 1964 | (99-04 All),0 1965 | $140.41,0 1966 | -4,0 1967 | Rovos Cape Town Satin Silver Wheel - 18x9,0 1968 | (99-04 All),0 1969 | $209.79,0 1970 | -1,0 1971 | Rovos Pretoria Silver Wheel - 18x9,0 1972 | (99-04 All),0 1973 | $161.29,0 1974 | -4,0 1975 | Rovos Cape Town Satin Black Wheel - 18x10.5 - Rear Only,0 1976 | (99-04 All),0 1977 | $175.32,0 1978 | -10,0 1979 | Rovos Durban Black Chrome Wheel - 18x10.5 - Rear Only,0 1980 | (99-04 All),0 1981 | $299.00,0 1982 | -7,0 1983 | Rovos Durban Gunmetal Wheel - 18x10.5 - Rear Only,0 1984 | (99-04 All),0 1985 | $201.64,0 1986 | Bullitt Chrome Wheel - 17x8,0 1987 | (99-04 All),0 1988 | $183.99,0 1989 | -47,0 1990 | Deep Dish FR500 Style Anthracite w/Machined Lip Wheel - 18x10 - Rear Only,0 1991 | (99-04 All),0 1992 | $154.99,0 1993 | -4,0 1994 | Rovos Cape Town Satin Black Wheel - 18x10.5 - Rear Only,0 1995 | (94-98 All),0 1996 | $175.32,0 1997 | -89,0 1998 | AMR Black Wheel - 18x10 - Rear Only,0 1999 | (05-09 All),0 2000 | $139.99,0 2001 | -1,0 2002 | Rovos Durban Satin Bronze Wheel - 18x10.5 - Rear Only,0 2003 | (99-04 All),0 2004 | $202.24,0 2005 | -39,0 2006 | Saleen Style Black Chrome Wheel - 18x10 - Rear Only,0 2007 | (99-04 All),0 2008 | $235.99,0 2009 | Customer Reviews (5),1 2010 | WRITE A REVIEW,1 2011 | Overall Rating,1 2012 | 4.8,1 2013 | ,1 2014 | out of 5 stars,1 2015 | Installation Time:Less than 1 Hour,0 2016 | Finish,0 2017 | 5,1 2018 | 5,1 2019 | Appearance,0 2020 | 5,1 2021 | 5,1 2022 | Quality,0 2023 | 5,1 2024 | 5,1 2025 | Bang For Your Buck,0 2026 | 4.6,1 2027 | 4.6,1 2028 | Search Reviews,1 2029 | ,0 2030 | Search,0 2031 | Sort By,0 2032 | ,0 2033 | Most Helpful,1 2034 | Most Recent,0 2035 | Oldest First,0 2036 | Highest Rated,1 2037 | Lowest Rated,1 2038 | Filter By,0 2039 | ,0 2040 | All Ratings,1 2041 | 5 Stars,1 2042 | 4 Stars,1 2043 | ,1 2044 | All Years,0 2045 | 2004,0 2046 | 2003,0 2047 | 2002,0 2048 | 2000,0 2049 | 1994,0 2050 | ,0 2051 | All Submodels,0 2052 | Cobra,0 2053 | GT,0 2054 | Mach 1,0 2055 | 5/5,1 2056 | ,0 2057 | Installation Time:Less than 1 Hour,0 2058 | ,0 2059 | "September 27, 2019",0 2060 | ,0 2061 | Review from Rovos Cape Town Satin Silver Wheel - 18x10.5 - Rear Only (94-98 All),1 2062 | ,0 2063 | Sexy wheel,1 2064 | ,1 2065 | "i love the fact that it has a 3 inch lip with the concave design contrast. absolutely a great rear wheel paired with the fronts obviously, i am running 5/16 rear spacers to give a little more aggressive look but that’s just me!",1 2066 | ,0 2067 | taylort,1 2068 | ,0 2069 | Year: 2004,0 2070 | Submodel: Mach 1,0 2071 | ,0 2072 | Helpful (0),1 2073 | Finish,0 2074 | 5,1 2075 | ,1 2076 | 5,1 2077 | ,1 2078 | Appearance,0 2079 | 5,1 2080 | ,1 2081 | 5,1 2082 | ,1 2083 | Quality,0 2084 | 5,1 2085 | ,1 2086 | 5,1 2087 | ,1 2088 | Bang for your Buck,0 2089 | 5,1 2090 | ,1 2091 | 5,1 2092 | 5/5,1 2093 | ,1 2094 | Installation Time:Less than 1 Hour,0 2095 | ,1 2096 | "April 21, 2018",0 2097 | ,1 2098 | Review from Rovos Cape Town Satin Silver Wheel - 18x10.5 - Rear Only (94-98 All),1 2099 | ,0 2100 | Nice Wheel,1 2101 | ,1 2102 | "My wife purchased the Cape Towns for me for Christmas, after I finally got my suspension work done they were finally installed. I love the look and the ride quality is excellent. The only issue was one of the center caps on the staggered set was polished instead of silver but American Muscle took care of that in no time. If you order these without tires, make sure you let your tire installer know that the stainless steel lip is very soft, both my 18X10.5 rear wheels were damaged with dents by the installer during tire installation. Overall I love them.",1 2103 | ,0 2104 | NevilleC,1 2105 | ,1 2106 | Year: 2003,0 2107 | Submodel: GT,0 2108 | ,0 2109 | Helpful (7),1 2110 | Finish,0 2111 | 5,1 2112 | ,1 2113 | 5,1 2114 | ,1 2115 | Appearance,0 2116 | 5,1 2117 | ,1 2118 | 5,1 2119 | ,1 2120 | Quality,0 2121 | 5,1 2122 | ,1 2123 | 5,1 2124 | ,1 2125 | Bang for your Buck,0 2126 | 5,1 2127 | ,1 2128 | 5,1 2129 | 5/5,1 2130 | ,0 2131 | Installation Time:Less than 1 Hour,0 2132 | ,0 2133 | "March 29, 2018",0 2134 | ,1 2135 | Review from Rovos Cape Town Satin Silver Wheel - 18x10.5 - Rear Only (94-98 All),1 2136 | ,1 2137 | Nice!!!,1 2138 | ,1 2139 | I'm loving the rims and was worried about the offset but they lined up well.........look great!,1 2140 | ,1 2141 | Joe,1 2142 | ,0 2143 | Year: 1994,0 2144 | Submodel: Cobra,0 2145 | ,0 2146 | Helpful (7),1 2147 | Finish,0 2148 | 5,1 2149 | ,1 2150 | ,1 2151 | ,1 2152 | Appearance,0 2153 | 5,1 2154 | ,1 2155 | 5,1 2156 | ,1 2157 | Quality,0 2158 | 5,1 2159 | ,1 2160 | 5,1 2161 | ,1 2162 | Bang for your Buck,0 2163 | 5,1 2164 | ,1 2165 | 5,1 2166 | 4/5,1 2167 | ,0 2168 | Installation Time:Less than 1 Hour,0 2169 | ,0 2170 | "December 10, 2017",0 2171 | ,1 2172 | Review from Rovos Cape Town Satin Silver Wheel - 18x10.5 - Rear Only (94-98 All),1 2173 | ,1 2174 | Great quality wheels great finish,1 2175 | ,1 2176 | defiantly look way more expensive then they are great looking wheels,1 2177 | ,0 2178 | WillyC,1 2179 | ,0 2180 | Year: 2000,0 2181 | Submodel: GT,0 2182 | ,0 2183 | Helpful (8),1 2184 | Finish,0 2185 | 5,1 2186 | ,1 2187 | 5,1 2188 | ,1 2189 | Appearance,0 2190 | 5,1 2191 | ,1 2192 | 5,1 2193 | ,1 2194 | Quality,0 2195 | 5,1 2196 | ,1 2197 | 5,1 2198 | ,0 2199 | Bang for your Buck,0 2200 | 4,1 2201 | ,0 2202 | 4,1 2203 | 5/5,1 2204 | ,0 2205 | Installation Time:Afternoon,0 2206 | ,1 2207 | "August 18, 2017",0 2208 | ,1 2209 | Review from Rovos Cape Town Satin Silver Wheel - 18x10.5 - Rear Only (94-98 All),1 2210 | ,1 2211 | Great!,1 2212 | ,1 2213 | "These rims are awesome. Makes my car stand out against the rest in town, must get these!",1 2214 | ,0 2215 | Master,0 2216 | ,0 2217 | Year: 2002,0 2218 | Submodel: GT,0 2219 | ,1 2220 | Helpful (8),1 2221 | Finish,0 2222 | 5,1 2223 | ,1 2224 | 5,1 2225 | ,1 2226 | Appearance,0 2227 | 5,1 2228 | ,1 2229 | 5,1 2230 | ,1 2231 | Quality,0 2232 | 5,1 2233 | ,1 2234 | 5,1 2235 | ,1 2236 | Bang for your Buck,0 2237 | 4,1 2238 | ,1 2239 | 4,1 2240 | Word on The Street,1 2241 | "Fast & easy, great photos of item as well as great description of what to expect from the seller!",1 2242 | kuruxjz,0 2243 | Previous Slide Next Slide,0 2244 | Meet Our Team,0 2245 | "Dave, Gray Metallic '16 GT",1 2246 | Category Manager,0 2247 | ,1 2248 | ,1 2249 | "After owning several other Mustangs including 99 Cobra and a bunch of Fox body’s I finally decided it was time for a new car. One that would be reliable, fast, and be able to cruise with the AC on in the summer.  When the S550 platform came out I knew I had to have one.",1 2250 | Previous Slide Next Slide,0 2251 | SEE ALL PROFILES,0 2252 | PROJECT CARS & EVENTS,0 2253 | Project Cars,0 2254 | Bolt-On Build-Ups,0 2255 | Our Rides,0 2256 | Events,0 2257 | Hot Lap Episodes,0 2258 | CUSTOMER SERVICE,0 2259 | Help,0 2260 | Contact Us,0 2261 | Ordering,0 2262 | Check Order Status,0 2263 | Shipping,0 2264 | Returns,0 2265 | International FAQ,0 2266 | Warranty,0 2267 | ABOUT,0 2268 | Our Team,0 2269 | Overview,0 2270 | Awards,1 2271 | Giving Back,0 2272 | Mustang Clubs,0 2273 | Submit a Guide,0 2274 | SHOP MUSTANG,0 2275 | New Mustang Products,0 2276 | Mustang Deals,0 2277 | Mustang Brands,0 2278 | Mustang Info & Advice,0 2279 | Mustang Parts by Year & Model,0 2280 | Mustang Specs By Year,0 2281 | Subscribe: New Mustang videos daily!,0 2282 | Subscribe to our YouTube Channel,0 2283 | ENTER YOUR EMAIL FOR DEALS & OFFERS,1 2284 | SIGN UP,0 2285 | CONNECT WITH US,0 2286 | Connect with us on Facebook,0 2287 | AmericanMuscle on Youtube,0 2288 | Connect with us on Instagram,0 2289 | "FORD, FORD MUSTANG, MUSTANG GT, SVT COBRA, MACH 1 MUSTANG, SHELBY GT 500, COBRA R, BULLITT MUSTANG, SN95, S197, V6 MUSTANG, FOX BODY MUSTANG, AND 5.0 MUSTANG ARE REGISTERED TRADEMARKS OF FORD MOTOR COMPANY. DODGE, DODGE CHALLENGER, SRT8, R/T, RALLYE REDLINE, SCAT PACK, SRT HELLCAT, SRT DEMON, T/A, PENTASTAR, AND HEMI ARE REGISTERED TRADEMARKS OF FIAT CHRYSLER AUTOMOBILES (FCA). SALEEN IS A REGISTERED TRADEMARK OF SALEEN INCORPORATED. ROUSH IS A REGISTERED TRADEMARK OF ROUSH ENTERPRISES, INC. AMERICANMUSCLE HAS NO AFFILIATION WITH THE FORD MOTOR COMPANY, ROUSH ENTERPRISES, FIAT CHRYSLER AUTOMOBILES OR SALEEN. THROUGHOUT OUR WEBSITE AND MUSTANG CATALOG THESE TERMS ARE USED FOR IDENTIFICATION PURPOSES ONLY.",0 2290 | 2003-2019 AMERICANMUSCLE.COM. ®ALL RIGHTS RESERVED  SITEMAP  |  PRIVACY POLICY  |  MOBILE SITE,0 2291 | Home,0 2292 | Vibrators,0 2293 | Couples,0 2294 | Penis Toys,0 2295 | Dildos,0 2296 | Strap-Ons,0 2297 | Anal Toys,0 2298 | More,0 2299 | Movies,0 2300 | Sale,0 2301 | Sign In,1 2302 | FREE STANDARD SHIPPING ON ALL ORDERS OVER $69,1 2303 | Customer Service,0 2304 | Stores,0 2305 | Sign In,1 2306 | 0,0 2307 | Cart,0 2308 | Customer Service: (888) 289-8423,0 2309 | VIBRATORS,0 2310 | COUPLES,0 2311 | PENIS TOYS,0 2312 | DILDOS,0 2313 | STRAP-ONS,0 2314 | ANAL TOYS,0 2315 | MOVIES,0 2316 | MORE,0 2317 | Products,0 2318 | Sex Info,0 2319 | ToysSex BooksStraight Fiction,0 2320 | Fifty Shades Darker: Book two of the Fifty Shades Trilogy,0 2321 | No ratings yet. Be the first!,1 2322 | Rate It,1 2323 | By E L James,1 2324 | "Expect more of the steamy eroticism and BDSM sex play that hooked readers on the first book of the wildly popular Fifty Shades series by E.L. James. In the second installment, the naïve Ana winds up back in the arms of...",1 2325 | $14.95,0 2326 | In Stock Now!,1 2327 | Add To Cart,1 2328 | Wishlist,1 2329 | Review,1 2330 | Description,0 2331 | By E L James,0 2332 | "Expect more of the steamy eroticism and BDSM sex play that hooked readers on the first book of the wildly popular Fifty Shades series by E.L. James. In the second installment, the naïve Ana winds up back in the arms of wealthy older businessman Christian, and their bedroom antics continue to inflame women's fantasies and their sex lives: droves of women are coming into the stores looking for the toys inspired by the novels, so much so that we've put together a special kit called Fifty Shades of Grey Indulge Your Fantasies Kit for you to play with as you work your way through the trilogy.",1 2333 | Brand: Random House,0 2334 | Reviews & Ratings,1 2335 | No ratings yet. Be the first!,1 2336 | Rate and Review It,1 2337 | CUSTOMER SERVICE,0 2338 | Contact Us,0 2339 | Order Lookup,0 2340 | Shipping,0 2341 | FAQ & Return Policy,0 2342 | Terms,0 2343 | Privacy Policy,0 2344 | SEX TOYS 101 + INFO,0 2345 | How-To,0 2346 | Sex Tips,0 2347 | Learn About Sex,0 2348 | Sex Glossary,0 2349 | Sex Info,0 2350 | COMMUNITY,1 2351 | About Babeland,0 2352 | Store Locations,0 2353 | Events,0 2354 | Press,0 2355 | Affiliate Program,0 2356 | Job Opportunities,0 2357 | Donations,0 2358 | STAY CONNECTED,1 2359 | Join Our List Get,1 2360 | $5 Off Your Next Order,1 2361 | "Content © 2019 Babeland, LLC. All Rights Reserved",0 2362 | In order to give you a better service we use cookies. By continuing to browse the site you are agreeing to our use of cookies. I Agree,1 2363 | A great little set that's absolutely perfect for the newbies to the pleasures of bondage,1 2364 | The New Intimacy,0 2365 | WOMEN MEN COUPLES SEX TOYS VIBRATORS DILDOS ANAL TOYS SALE INFO,0 2366 | -1,0 2367 | 0,0 2368 | FREE STANDARD SHIPPING ON ORDERS $50+.,1 2369 | 24 Hour Dispatch.,1 2370 | SUPER SALE: SAVE UP TO 85% ON EVERYTHING,1 2371 | HOME,0 2372 | SEX TOY KITS,0 2373 | ALL SEX TOY KITS,0 2374 | Soft touch set,0 2375 | Complete BDSM set,0 2376 | 4.9,0 2377 | Wishlisth,0 2378 | Add to comparison,1 2379 | $52.00$15.60,0 2380 | 70% OFF,1 2381 | 80 POINTS,1 2382 | $52.00$15.60,0 2383 | Add To Cart,0 2384 | What makes it awesome,1 2385 | "Includes a pair of 9"" by 2.5"" cuffs with velcro closures and convenient D-ring and swivel hook hardware for easy adjustment and secure restraint;",0 2386 | "Plushy blindfold measures 8"" by 3"" and features elastic strap;",0 2387 | "A soft flogger has 6.5"" faux leather handle and 13"" tails.",0 2388 | A closer look,1 2389 | "If you are looking for a way to start your kinky bedroom adventures than the Soft Touch Set is for you. Made of soft, sensual fleece and cotton, this kit provides lots of kinky options for beginners, experimenting with bondage and fetish without being too hardcore.",0 2390 | How It Feels,0 2391 | Made from comfortable soft cotton,0 2392 | ,0 2393 | Made from durable and seductive faux-leather,0 2394 | ,0 2395 | Made from lightweight and soft fleece,0 2396 | ,0 2397 | Texture: Smooth,0 2398 | ,0 2399 | Fluffy and soft fleece lining,0 2400 | ,0 2401 | Color: Black,0 2402 | How It Measures,0 2403 | Size: One size fits most,1 2404 | ,0 2405 | "Length: 3""",0 2406 | ,0 2407 | Weight: 1 lb,0 2408 | How It Works,0 2409 | "Kit includes: Cuffs, flogger and a blindfold",0 2410 | ,0 2411 | Closes with silky and easy-to-unfast ribbon tie,0 2412 | ,0 2413 | Closes with secure swivel clip,0 2414 | ,0 2415 | Closes with easy-to-unfast velcro,0 2416 | Ordering Details,0 2417 | Manufacturer: EdenFantasys,0 2418 | Catalog ID: ETSK001,0 2419 | This set works well for the couple out to have a 50 Shades type experience.,1 2420 | 5,1 2421 | Starlight Requiem's review,1 2422 | "Great for beginners, good value for the money, well made",1 2423 | 5,1 2424 | freud13's review,1 2425 | Sturdy design Comfortable fit for most sizes Soft and luxurious feel Beginner-friendly,1 2426 | 5,1 2427 | sXeVegan90's review,1 2428 | Great for beginners Very lightweight Multiple types of play,1 2429 | 4,1 2430 | Ms. Paprika's review,1 2431 | Amazing promotions,1 2432 | Soft touch set,1 2433 | $52.00,0 2434 | 1,0 2435 | Select Enhance it,0 2436 | 2,0 2437 | Select Foreplay,0 2438 | 3,0 2439 | "Select Penis extensions, lingerie and more",0 2440 | Kit Price:,0 2441 |  ,0 2442 | You save:,1 2443 |  ,0 2444 | Sale price is not valid in the kit,1 2445 | 1,0 2446 | Select: Enhance it,0 2447 | (7 styles),0 2448 | Edenfantasys rechargeable C bunny,0 2449 | $64.99,0 2450 | Perfect companion rechargeable mini,0 2451 | $62.99,0 2452 | Sweet vibrating nipple clamps,0 2453 | $34.99,0 2454 | Eden rechargeable silicone tongue,0 2455 | $62.99,0 2456 | 2,0 2457 | Select: Foreplay,0 2458 | (7 styles),0 2459 | Grace,0 2460 | $89.99,0 2461 | Magic force,0 2462 | $89.99,0 2463 | Rechargeable Hitachi style wand,0 2464 | $66.99,0 2465 | Eden rechargeable pocket wand with attachments,0 2466 | $62.99,0 2467 | 3,0 2468 | "Select: Penis extensions, lingerie and more",0 2469 | (10 styles),0 2470 | High society cupless bra and garter set,0 2471 | $29.99,0 2472 | Silicone extension with vibrating bunny,0 2473 | $24.99,0 2474 | Extender,0 2475 | $19.99,0 2476 | Red stockings,0 2477 | $14.99,0 2478 | Hide kit,0 2479 | Other delightful options,0 2480 | Glass delight kit,0 2481 | $77.99 $38.99,0 2482 | Mistress bondage kit,0 2483 | $71.99 $28.80,0 2484 | Kegel trainer set,0 2485 | $59.99 $29.99,0 2486 | All All Sex Toy Kits,0 2487 | TOP,1 2488 | HOME,0 2489 | SEX TOY KITS,0 2490 | ALL SEX TOY KITS,0 2491 | © 2019,0 2492 | "Web Merchants, Inc. All Rights Reserved",0 2493 | ,0 2494 | "640 Airport South Parkway, 400 Atlanta, GA 30349, USA",0 2495 | ,0 2496 | Phone: +1 (770) 604 - 1352 Customer Service 24/7,0 2497 | ,0 2498 | Fax: (609) 920-0332,0 2499 | Order status,0 2500 | Shipping,0 2501 | Returns,0 2502 | FAQ,0 2503 | About,0 2504 | Terms,0 2505 | Privacy,0 2506 | Sitemap,0 2507 | Mobile version,0 2508 | Affiliates,0 2509 | Wholesale Sex Toys,0 2510 | Eden services support,0 2511 | This site is intended for viewing and shopping by audience 18+,0 2512 | All models are 18 years of age or older.,0 2513 | 2257 Compliance Notice,0 2514 | "Last update: October 29, 2019",0 2515 | My VOD Dashboard | Sign In,1 2516 | Try Unlimited,1 2517 | Free Shipping Over $25.     Millions of Satisfied Customers,1 2518 | Cart,0 2519 | All,0 2520 | DVD,0 2521 | On Demand,0 2522 | Blu-ray,0 2523 | Sex Toys,0 2524 | Used,0 2525 | Rental,0 2526 | DVD,0 2527 | On Demand,1 2528 | Sales,0 2529 | New Releases,0 2530 | Categories,0 2531 | Unlimited,1 2532 | Sex Toys,0 2533 | Live Cams,0 2534 | On Demand,0 2535 | DVD,0 2536 | Blu-ray,0 2537 | Rental,0 2538 | Sex Toys,0 2539 | Live Cams,0 2540 | Video On Demand Bestsellers,0 2541 | What's Trending?,1 2542 | 1080p HD,0 2543 | 1080p HD,0 2544 | 1080p HD,0 2545 | 1080p HD,0 2546 | 1080p HD,0 2547 | 1080p HD,0 2548 | 1080p HD,0 2549 | 720p HD,0 2550 | DVD Recent Releases,0 2551 | What's Trending?,0 2552 | 1080p HD,0 2553 | 1080p HD,0 2554 | 1080p HD,0 2555 | 1080p HD,0 2556 | 1080p HD,0 2557 | Sex Toys,0 2558 | The Rocco Jack Daddy Stroker - Clear,0 2559 | Swiss Navy Silicone Based Anal Relaxing Lubricant - 2oz.,0 2560 | Tenga Premium Vacuum Cup Original - Blue,0 2561 | "Rascal: Adam Killian 8"" Silicone Dildo With Silicone Handle and Suction Cup Base",0 2562 | Bathmate Hydromax3 - Crystal Clear,0 2563 | Maia: Jayden Rechargeable Vibrating Erection Enhancer - Rose Gold,0 2564 | GayEmpireLive Cams,0 2565 | FREE,1 2566 | 120,0 2567 | CREDITS,1 2568 | Exclusive Offers! Special Discounts!,1 2569 | Sign up for our newsletter today!,1 2570 | I am 18 or over and consent to receive sexually explicit material.,1 2571 | Sign Up,1 2572 | About Us,0 2573 | About Us,0 2574 | Discreet Service,0 2575 | Discreet Packaging,0 2576 | Customer Testimonials,1 2577 | Webmasters $$,0 2578 | Gift Certificates,0 2579 | Purchase,0 2580 | Redeem,0 2581 | Customer Service,0 2582 | 1-888-383-1880,0 2583 | Contact Us,0 2584 | Help Center,0 2585 | Guest Order Lookup,0 2586 | Account,0 2587 | Your Account,0 2588 | Track Your Order,0 2589 | Shipping Rates,0 2590 | Returns,0 2591 | Make A Suggestion,1 2592 | Other Empire Sites,0 2593 | Adult DVD Empire,0 2594 | Adult Empire,0 2595 | Adult Empire Unlimited,0 2596 | Adult Empire Cash,0 2597 | Used DVDs,0 2598 | "©1997-2019 Ravana, LLC.",0 2599 | Copyright Notice - Terms of Use - Privacy Policy,0 2600 | 18 U.S.C. § 2257,0 2601 | Home,0 2602 | BEST SELLERS,1 2603 | VIBRATORS,0 2604 | DILDOS,0 2605 | PENIS TOYS,0 2606 | ANAL TOYS,0 2607 | SEE ALL,0 2608 | SEX INFO,0 2609 | MOVIES,0 2610 | Stores,0 2611 | Account,0 2612 | Wish List,0 2613 | Sign In,0 2614 | FREE DISCREET SHIPPING ON ORDERS $69+,1 2615 | Customer Service,0 2616 | Stores,0 2617 | Account,0 2618 | Wish List,0 2619 | Sign In,0 2620 | 0,0 2621 | Cart,0 2622 | BEST SELLERS,1 2623 | VIBRATORS,0 2624 | DILDOS,0 2625 | PENIS TOYS,0 2626 | ANAL TOYS,0 2627 | SEE ALL,0 2628 | SEX INFO,0 2629 | MOVIES,0 2630 | Toys,0 2631 | Sex Info,0 2632 | Ooh Classic Vibrator Attachment by Je Joue,0 2633 | No ratings yet. Be the first!,1 2634 | Rate It,1 2635 | This silky smooth and elegantly contoured attachment is designed for both internal and external play.,0 2636 | $15.00,0 2637 | In Stock Now!,1 2638 | Add To Cart,0 2639 | Wishlist,0 2640 | Review,0 2641 | Description,0 2642 | Mix & Match the Ooh Large Motor Vibrator with other Je Joue Ooh silicone attachments,0 2643 | ,0 2644 | This silky smooth and elegantly contoured attachment is designed for both internal and external play. Its bulbous head delivers additional sensations when inserted and is made of high-grade silicone. Simply snap it onto the Ooh Motor (sold separately) to enjoy three powerful speeds and 2 vibration patterns.,0 2645 | ,0 2646 | "This product is also available in the “Her Name is Rio” and “What Happens in Vegas” kits. Each offers the Classic Vibrator attachment, Ooh Large Motor, plus one additional attachment at a discounted price.",0 2647 | Ooh Classic Vibrator Attachment by Je Joue,0 2648 | Red or Pink Silicone,0 2649 | 6 ¼” x 1 1/3”,0 2650 | Must be paired with a Ooh Rechargeable Motor Vibrator (sold separately),0 2651 | Volume: 2,0 2652 | Intensity: 4,0 2653 | ,0 2654 | Product Video,0 2655 | Brand: Je Joue,0 2656 | Product Details,0 2657 | Material: Silicone,0 2658 | Color: Red,0 2659 | Warranty: 1 Year,0 2660 | ,0 2661 | Related Products,0 2662 | Please Cream Lubricant,0 2663 | $1.00 - $20.00,0 2664 | Buy Now,1 2665 | Ooh What Happens In Vegas Pack by Je Joue,0 2666 | $70.00,0 2667 | Buy Now,0 2668 | Ooh Her Name Is Rio Pack by Je Joue,0 2669 | $70.00,0 2670 | Buy Now,0 2671 | Ooh Ibiza Vibes Pleasure Pack by Je Joue,0 2672 | $59.00,0 2673 | Buy Now,1 2674 | Reviews & Ratings,1 2675 | No ratings yet. Be the first!,1 2676 | Rate and Review It,1 2677 | CUSTOMER SERVICE,0 2678 | About Us,0 2679 | Contact Us,0 2680 | Order Lookup,1 2681 | Shipping,0 2682 | Privacy Policy,0 2683 | Terms,0 2684 | FAQ & Return Policy,0 2685 | SEX EDUCATION,0 2686 | How-To Sex Ed Articles,0 2687 | Ask Dr. Carol Queen - Sex Advice,0 2688 | Sexual Health Outreach Workshops S.H.O.W.,0 2689 | COMMUNITY,1 2690 | Affiliate Program,0 2691 | Antique Vibrator Museum,0 2692 | Events,0 2693 | GiVe Donation Program,0 2694 | Jobs,0 2695 | Blog,0 2696 | Join Our List Get,0 2697 | $5 Off Your Next Order,1 2698 | ©-2019 Barnaby Ltd dba Good Vibrations,0 2699 | ,0 2700 | 18 U.S.C. §2257 Recordkeeping Requirements Compliance Statement,0 2701 | In order to give you a better service we use cookies. By continuing to browse the site you are agreeing to our use of cookies. I Agree,0 --------------------------------------------------------------------------------