Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

2300
LINES

< > BotCompany Repo | #1011292 // thesaurus.com demo page

Document

1  
<!DOCTYPE html>
2  
<html xmlns="http://www.w3.org/1999/xhtml"
3  
      prefix="og: http://opengraphprotocol.org/schema/ fb: http://www.facebook.com/2010/fbml d: http://dictionary.com/2011/dml">
4  
    <head>
5  
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6  
        <base href="http://www.thesaurus.com/">
7  
        <title>Fat Synonyms, Fat Antonyms | Thesaurus.com</title>
8  
        <script type="text/javascript">
9  
    var cookiesManager = function (){
10  
        'use strict';
11  
12  
        var persistentValues = [];
13  
14  
        return {
15  
            getCookieValue : function(name) {
16  
                var value = null,
17  
                    cookies = document.cookie,
18  
                    searchedCookie = cookies.indexOf(" " + name + "=");
19  
20  
                // it's worth to check, if cookie is not first cookie
21  
                if (searchedCookie === -1) {
22  
                    var checkFirstCookie = cookies.indexOf(name + "=");
23  
                    searchedCookie = checkFirstCookie == 0 ? 0 : -1;
24  
                }
25  
26  
                if (searchedCookie > -1) {
27  
                    var startPositionOfValue = cookies.indexOf("=", searchedCookie) + 1,
28  
                        endPositionOfValue = cookies.indexOf(";", searchedCookie);
29  
30  
                    if (endPositionOfValue === -1) {
31  
                        endPositionOfValue = searchedCookie.length;
32  
                    }
33  
34  
                    value = cookies.substring(startPositionOfValue,endPositionOfValue);
35  
                }
36  
37  
                return value;
38  
            },
39  
40  
            setCookie: function(name, value, hours, domain) {
41  
                var expires = '',
42  
                    domain  = domain || UrlHelper.getCurrentDomain();
43  
44  
                if(hours !== undefined) {
45  
                    var now     = new Date(),
46  
                        time    = now.getTime();
47  
48  
                    time += (3600 * hours) * 1000;
49  
                    now.setTime(time);
50  
51  
                    expires = ';expires=' + now.toGMTString();
52  
                }
53  
54  
                document.cookie =
55  
                    name + '=' + value +
56  
                        expires +
57  
                        ';path=/' +
58  
                        ';domain=' + domain;
59  
            },
60  
61  
            /*
62  
            * This method ensures, that everywhere on the page value of cookie will be the same.
63  
            * It's important in case of cookie, which value can change across the page.
64  
            */
65  
            getPersistentCookieValue: function(name) {
66  
                if (typeof persistentValues[name] === 'undefined') {
67  
                    persistentValues[name] = this.getCookieValue(name);
68  
                    // after reading value, cookie has to be removed
69  
                    this.setCookie(name, null, -1);
70  
                }
71  
72  
                return persistentValues[name];
73  
            }
74  
        }
75  
    }();
76  
</script><script type="text/javascript">
77  
    /*jslint browser: true */
78  
79  
    var UrlHelper = function() {
80  
        var COOKIE_DOMAIN_THESAURUS     = '.thesaurus.com';
81  
        var COOKIE_DOMAIN_DICTIONARY    = '.dictionary.com';
82  
        var COOKIE_DOMAIN_REFERENCE     = '.reference.com';
83  
84  
        var domain = null;
85  
        var currentURL = null;
86  
        var spanidsUrl = null;
87  
88  
        function getSpanidsUrl(bid, sid, currentDomain) {
89  
            var url     = 'http://';
90  
            var source  = '';
91  
92  
            if(currentDomain == COOKIE_DOMAIN_DICTIONARY) {
93  
                url += 'spanids.reference.com/?';
94  
                source = 'd';
95  
            } else if (currentDomain == COOKIE_DOMAIN_REFERENCE){
96  
                url += 'spanids.dictionary.com/?';
97  
                source = 'r';
98  
            } else {
99  
                url += 'spanids.dictionary.com/?';
100  
                source = 't';
101  
            }
102  
103  
            url += 'bid=' + bid + '&asid=' + sid + '&bidnew=1&asidnew=1&source=' + source + '&site=app';
104  
105  
106  
            return url;
107  
        }
108  
109  
        function getCurrentDomain() {
110  
            var host = window.location.host;
111  
            var value = "";
112  
            if(host.indexOf(COOKIE_DOMAIN_THESAURUS) > -1) {
113  
                value = COOKIE_DOMAIN_THESAURUS;
114  
            } else if(host.indexOf(COOKIE_DOMAIN_DICTIONARY) > -1) {
115  
                value = COOKIE_DOMAIN_DICTIONARY;
116  
            } else if(host.indexOf(COOKIE_DOMAIN_REFERENCE) > -1){
117  
                value = COOKIE_DOMAIN_REFERENCE;
118  
            }
119  
120  
            return value;
121  
        }
122  
123  
        return {
124  
            getCurrentDomain : function() {
125  
                if(domain === null) {
126  
                    domain = getCurrentDomain();
127  
                }
128  
                return domain;
129  
            },
130  
131  
            getCurrentDomainFromRequest : function() {
132  
                return window.location.host;
133  
            },
134  
135  
            getCurrentUrl : function() {
136  
                if(currentURL === null) {
137  
                    currentURL = window.location.protocol + "//" + window.location.host + "" + window.location.pathname;
138  
                }
139  
                return currentURL;
140  
            },
141  
142  
            getSpanidsUrl : function(bid, sid, domain) {
143  
                if(spanidsUrl === null) {
144  
                    spanidsUrl = getSpanidsUrl(bid, sid, domain);
145  
                }
146  
147  
                return spanidsUrl;
148  
            }
149  
        }
150  
    }();
151  
</script><script type="text/javascript">
152  
    var BidSidGenerator = (function () {
153  
        'use strict';
154  
        var COOKIE_NAME_BID = 'bid',
155  
            COOKIE_NAME_SID = 'sid',
156  
            COOKIE_NAME_SPANIDS = 'spanids',
157  
            COOKIE_BID_EXPIRES = 17520, //two years
158  
            COOKIE_SID_EXPIRES = 0.5, //half an hour
159  
            bidCookieValue = null,
160  
            sidCookieValue = null,
161  
            bidCookieCreated = false,
162  
            sidCookieCreated = false,
163  
            spanIdsCookiePresent = false;
164  
165  
        // generates value of bid/sid cookie
166  
        function generateCookieValue() {
167  
            var max = 999999,
168  
                min = 100000,
169  
                rand = Math.floor(Math.random() * (max - min)) + min,
170  
                time = new Date().getTime();
171  
172  
            return rand + "-" + time;
173  
        }
174  
175  
        // sets value of spanIdsCookiePresent attribute to true and delete spanids cookie,
176  
        // if cookie exist and have appropriate value
177  
        function processSpanIdsCookie() {
178  
            var spanIdsValue = cookiesManager.getCookieValue(COOKIE_NAME_SPANIDS);
179  
180  
            if(spanIdsValue === '1') {
181  
                cookiesManager.setCookie(COOKIE_NAME_SPANIDS, 0, -1); //removes spanids cookie
182  
                spanIdsCookiePresent = true;
183  
            }
184  
185  
            return false;
186  
        }
187  
188  
        return {
189  
            init: function () {
190  
                bidCookieValue  = cookiesManager.getCookieValue(COOKIE_NAME_BID);
191  
                sidCookieValue  = cookiesManager.getCookieValue(COOKIE_NAME_SID);
192  
193  
                if (bidCookieValue == null || bidCookieValue.length == 0) {
194  
                    bidCookieValue = generateCookieValue();
195  
                    cookiesManager.setCookie(COOKIE_NAME_BID, bidCookieValue, COOKIE_BID_EXPIRES);
196  
                    bidCookieCreated = true;
197  
                }
198  
199  
                if (sidCookieValue == null || sidCookieValue.length == 0) {
200  
                    sidCookieValue = generateCookieValue();
201  
                    sidCookieCreated = true;
202  
                }
203  
204  
                processSpanIdsCookie();
205  
                cookiesManager.setCookie(COOKIE_NAME_SID, sidCookieValue, COOKIE_SID_EXPIRES);
206  
            },
207  
            propagateCookies: function() {
208  
                if (bidCookieCreated || sidCookieCreated || spanIdsCookiePresent) {
209  
                    var url = UrlHelper.getSpanidsUrl(bidCookieValue, sidCookieValue, UrlHelper.getCurrentDomain()),
210  
                        iFrame = '<iframe id="spanids" style="width:1px;height:1px;margin-left:-1;position:absolute;border:none;" src="' + url + '"></iframe>';
211  
                    document.write(iFrame);
212  
                }
213  
            },
214  
            touchSidCookie: function () {
215  
                sidCookieValue  = cookiesManager.getCookieValue(COOKIE_NAME_SID);
216  
                if (sidCookieValue == null || sidCookieValue.length == 0) {
217  
                    sidCookieValue = generateCookieValue();
218  
                    sidCookieCreated = true;
219  
                }
220  
221  
                cookiesManager.setCookie(COOKIE_NAME_SID, sidCookieValue, COOKIE_SID_EXPIRES);
222  
            },
223  
            isSidCookieCreated: function () {
224  
                return sidCookieCreated;
225  
            },
226  
            isSpanIdsCookiePresent: function () {
227  
                return spanIdsCookiePresent;
228  
            }
229  
        };
230  
    }());
231  
232  
    BidSidGenerator.init();
233  
    BidSidGenerator.propagateCookies();
234  
</script>
235  
<script>
236  
    var DARCI = DARCI || {},
237  
        u = "http://track.thesaurus.com/main.gif?ev=ps&qr=%25%25QUERY%25%25&rf_qr=%25%25REFQUERY%25%25&pn=the&st=thes&ab=&dc=desktop",
238  
        s = location.search.match(new RegExp('[\?\&]s=([^\&]*)(\&?)', 'i')),
239  
        ms = (typeof ms === 'undefined') ? cookiesManager.getCookieValue('mseg') || "" : ms,
240  
241  
        /**
242  
         * Because this file is added only in case when CSL is enabled,
243  
         * we can be sure cookieManager will be available.
244  
         */
245  
        refQuery = cookiesManager.getPersistentCookieValue('ReferrerQuery'),
246  
        query, orgQuery;
247  
248  
    DARCI.SearchBoxClickLinkId = '205vpa';
249  
250  
            orgQuery = typeof DARCI.OQR !== 'undefined' ? DARCI.OQR.getValue() : null;
251  
        query =  orgQuery !== null ? orgQuery : "fat";
252  
253  
        u = u.replace('%25%25QUERY%25%25', query);
254  
    
255  
256  
    if (s != null && s[1]) {
257  
        if (s[1] == 't' || s[1] == 'ts' || s[1] == 'tn') {
258  
            var ev = u.indexOf('ev=');
259  
            if (ev !== -1) {
260  
                ev = ev + 3;
261  
                u = u.slice(0, ev) + 'c' + u.slice(ev) + '&cl=205vpa&sc=1';
262  
                u = u.replace('%25%25REFQUERY%25%25', refQuery);
263  
            }
264  
        }
265  
    }
266  
267  
    new Image().src = u + "&ms=" + ms + "&rf=" + encodeURIComponent(document.referrer) + "&cb=" + Math.floor((Math.random() * 899999999) + 100000000);
268  
</script>
269  
<link rel="dns-prefetch" href="//www.googletagmanager.com" /><link rel="dns-prefetch" href="//ox-d.ask.servedbyopenx.com" /><link rel="dns-prefetch" href="//edge.quantserve.com" /><link rel="dns-prefetch" href="//c.amazon-adsystem.com" /><link rel="dns-prefetch" href="//partner.googleadservices.com" /><link rel="dns-prefetch" href="//aax.amazon-adsystem.com" /><link rel="dns-prefetch" href="//tpc.googlesyndication.com" /><link rel="dns-prefetch" href="//connect.facebook.net" /><link rel="dns-prefetch" href="//www.google-analytics.com" /><link rel="dns-prefetch" href="https://platform.twitter.com" /><script type="text/javascript">
270  
    var src = null;
271  
                        new Image().src = 'http://www.thesaurus.com/trc/img/serp/sprite-lowdpi-1c8ce.png';
272  
                                new Image().src = 'http://www.thesaurus.com/trc/img/topheavy_hdr_bg-49963.png';
273  
            </script><meta property="og:title" content="I found great synonyms for &quot;fat&quot; on the new Thesaurus.com!" /><meta property="og:site_name" content="www.thesaurus.com" /><meta property="og:image" content="http://static.sfdict.com/thescloud/img/thesaurus_social_logo-208ba.png" /><meta property="fb:app_id" content="118269238218175" /><meta property="fb:admins" content="100000304287730,109125464873" /><meta name="msvalidate.01" content="DF5542D7723770377E9ABFF59AC1DC97" /><meta name="description" content="Synonyms for fat at Thesaurus.com with free online thesaurus, antonyms, and definitions. Dictionary and Word of the Day." /><meta name="keywords" content="fat,fat synonyms,fat antonyms,fat thesaurus" /><link rel="shortcut icon" href="http://static.sfdict.com/thescloud/favicon.ico" /><link rel="apple-touch-icon-precomposed" href="http://static.sfdict.com/thescloud/img/touch_icon.png" /><link rel="search" type="application/opensearchdescription+xml" title="Dictionary.com" href="http://www.thesaurus.com/opensearch_desc.xml" /><link rel="next" href="http://www.thesaurus.com/browse/fat/2" /><link rel="canonical" href="http://www.thesaurus.com/browse/fat" /><link rel="stylesheet" href="http://www.thesaurus.com/trc/css/combinedSerpDesktop-17255.css" type="text/css" media="all" /><script type="text/javascript">
274  
    var _query = "fat";var fby = fby || [];var searchURL = "http://www.thesaurus.com/browse/%40%40queryText%40%40?s=t";var pageName = "the";</script>
275  
<script type="text/javascript">
276  
    var UserController = function() {
277  
        var USER_STATUS_LOGGED_IN = 'L';
278  
        var USER_STATUS_NOT_LOGGED = 'N';
279  
280  
        var USER_UNDER_13 = 'Y';
281  
        var USER_OVER_13 = 'N';
282  
283  
        var COOKIE_NAME_SESS = 'sess';
284  
        var COOKIE_NAME_FAV = 'fav';
285  
        var COOKIE_NAME_SUPERSESS = 'ss';
286  
287  
        var PREMIUM_STATUS_VALUE = 9;
288  
        var FAV_COOKIE_PREMIUM_STATUS_KEY = 0;
289  
        var FAV_COOKIE_FAV_COUNT_KEY = 1;
290  
        var FAV_COOKIE_USER_UNDER_13_KEY = 2;
291  
292  
        var isLoggedIn = null;
293  
        var isPremium = null;
294  
        var isSuperSess = null;
295  
        var favNumber = null;
296  
        var isUnder13 = null;
297  
        var displayAds = null;
298  
299  
        /**
300  
         * Checking if user is under 13 using value from fav cookie
301  
         * @returns {boolean}
302  
         */
303  
        function checkIsUserUnder13() {
304  
            if (isLoggedIn !== true) {
305  
                return false;
306  
            }
307  
308  
            var isUnder13 = USER_OVER_13;
309  
            var favCookieValue = cookiesManager.getCookieValue(COOKIE_NAME_FAV);
310  
311  
            if(favCookieValue != null) {
312  
                favCookieValue = decodeURIComponent(favCookieValue);
313  
                isUnder13 = favCookieValue.split('|')[FAV_COOKIE_USER_UNDER_13_KEY];
314  
            }
315  
316  
            return isUnder13 === USER_UNDER_13;
317  
        }
318  
319  
        function checkIsUserLoggedIn() {
320  
            var userStatus = USER_STATUS_NOT_LOGGED;
321  
            var sessCookieValue = cookiesManager.getCookieValue(COOKIE_NAME_SESS);
322  
323  
            if(sessCookieValue != null) {
324  
                userStatus = sessCookieValue.charAt(0);
325  
            }
326  
327  
            return userStatus === USER_STATUS_LOGGED_IN;
328  
        }
329  
330  
        function checkIfUserIsPremium() {
331  
            var premiumStatus = null;
332  
            var favCookieValue = cookiesManager.getCookieValue(COOKIE_NAME_FAV);
333  
334  
            if(favCookieValue != null) {
335  
                favCookieValue = decodeURIComponent(favCookieValue);
336  
                premiumStatus = favCookieValue.split('|')[FAV_COOKIE_PREMIUM_STATUS_KEY];
337  
            }
338  
339  
            return premiumStatus == PREMIUM_STATUS_VALUE;
340  
        }
341  
342  
        function getFavNum() {
343  
            var count = 0;
344  
            var favCookieValue = cookiesManager.getCookieValue(COOKIE_NAME_FAV);
345  
346  
            if(favCookieValue != null) {
347  
                favCookieValue = decodeURIComponent(favCookieValue);
348  
                count = favCookieValue.split('|')[FAV_COOKIE_FAV_COUNT_KEY];
349  
            }
350  
351  
            return count;
352  
        }
353  
354  
355  
        /**
356  
         * Checking super session cookie and calling ajax endpoint if cookie exists
357  
         * @returns {boolean}
358  
         */
359  
        function checkIfUserHasSuperSession() {
360  
            // get ss cookie value
361  
            var superSessionCookieValue = cookiesManager.getCookieValue(COOKIE_NAME_SUPERSESS);
362  
363  
            // if there is ss cookie then make ajax (cors) call to check ss cookie and get response on callback
364  
            if(superSessionCookieValue !== null){
365  
366  
                var xhr = createCORSRequest('GET', 'http://app.dictionary.com/supersession/check/' + superSessionCookieValue);
367  
368  
                if (xhr){
369  
                    // Define a callback function
370  
                    xhr.onload = function(){
371  
                        var responseData = xhr.responseText;
372  
                        var data = JSON.parse(responseData);
373  
                        // process the response.
374  
375  
                        // if response is null then do nothing
376  
                        if(data == null) {
377  
                            // do nothing
378  
                        } else {
379  
                            // otherwise set the session cookie
380  
                            cookiesManager.setCookie("sess", data['sessionCookie']);
381  
382  
                            // change header appropriately
383  
                            changeBodyClassNameForUser();
384  
                        }
385  
                    };
386  
387  
                    // Send request
388  
                    xhr.send();
389  
                }
390  
391  
                return true;
392  
            } else {
393  
                return false;
394  
            }
395  
        }
396  
397  
        /**
398  
         * A method to create cors request
399  
         * @param method
400  
         * @param url
401  
         * @returns {XMLHttpRequest}
402  
         */
403  
        function createCORSRequest(method, url) {
404  
            var xhr = new XMLHttpRequest();
405  
            if ("withCredentials" in xhr) {
406  
407  
                // Check if the XMLHttpRequest object has a "withCredentials" property.
408  
                // "withCredentials" only exists on XMLHTTPRequest2 objects.
409  
                xhr.open(method, url, true);
410  
411  
            } else if (typeof XDomainRequest != "undefined") {
412  
413  
                // Otherwise, check if XDomainRequest.
414  
                // XDomainRequest only exists in IE, and is IE's way of making CORS requests.
415  
                xhr = new XDomainRequest();
416  
                xhr.open(method, url);
417  
418  
            } else {
419  
420  
                // Otherwise, CORS is not supported by the browser.
421  
                xhr = null;
422  
423  
            }
424  
425  
            return xhr;
426  
        }
427  
428  
        /**
429  
         * Checking user status and setting correct body className for user
430  
         */
431  
        function changeBodyClassNameForUser() {
432  
            if(isPremium)
433  
                document.body.className+=' premium';
434  
            if(isLoggedIn)
435  
                document.body.className+=' loggedin';
436  
            if(isUnder13)
437  
                document.body.className+=' isUnder13';
438  
        }
439  
440  
        return {
441  
442  
            initHead: function() {
443  
                isLoggedIn = checkIsUserLoggedIn();
444  
                isPremium = checkIfUserIsPremium();
445  
                isUnder13 = checkIsUserUnder13();
446  
            },
447  
448  
            initBody: function(){
449  
                // on initialization check user status and change append body class name accordingly
450  
                changeBodyClassNameForUser();
451  
452  
                // if the user is not logged in then check to see if the user has an ss cookie
453  
                if(isLoggedIn !== true) {
454  
                    // call function responsible for checking ss cookie and calling ajax endpoint
455  
                    isSuperSess = checkIfUserHasSuperSession();
456  
                }
457  
            },
458  
459  
            isLoggedIn : function() {
460  
                return isLoggedIn;
461  
            },
462  
463  
            isPremium : function() {
464  
                return isPremium
465  
            },
466  
467  
            getFavNumber : function() {
468  
                if(favNumber === null) {
469  
                    favNumber = getFavNum();
470  
                }
471  
                return favNumber;
472  
            },
473  
474  
            isUnder13 : function() {
475  
                return isUnder13;
476  
            },
477  
478  
            shouldDisplayAds: function() {
479  
                if(displayAds === null) {
480  
                    displayAds = !isPremium && !checkIsUserUnder13();
481  
                }
482  
                return displayAds;
483  
            }
484  
        }
485  
486  
487  
    }();
488  
    UserController.initHead();
489  
</script>
490  
<script type="text/javascript">
491  
    var _sp_=function(n){function t(e){if(o[e])return o[e].exports;var r=o[e]={i:e,l:!1,exports:{}};return n[e].call(r.exports,r,r.exports,t),r.l=!0,r.exports}var o={};return t.m=n,t.c=o,t.i=function(n){return n},t.d=function(n,o,e){t.o(n,o)||Object.defineProperty(n,o,{configurable:!1,enumerable:!0,get:e})},t.n=function(n){var o=n&&n.__esModule?function(){return n["default"]}:function(){return n};return t.d(o,"a",o),o},t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},t.p="",t(t.s=2)}([function(n,t,o){function e(n,t){r&&console[n].apply(console,["[bootstrap]"].concat(Array.prototype.slice.call(t)))}var r=(o(0),!1);n.exports={debug:function(){e("debug",arguments)},info:function(){e("info",arguments)},time:function(){e("time",arguments)},warn:function(){e("warn",arguments)},error:function(){e("error",arguments)},useDefaults:function(){r=!0},DEBUG:1}},function(n,t,o){"use strict";function e(){D||(D=!0,z=h.config=h.config||{},s(),N=z.bootstrap&&z.bootstrap.contentControlCallback||z.content_control_callback,B=z.accountId||z.account_id||z.client_id||window.sp_cid,G=z.beacon&&z.beacon.contentControlEndpoint||z.content_control_beacon_endpoint||v.a,z.debug_level&&"OFF"!==z.debug_level.toString().toUpperCase()||z.debug&&z.debug.level&&"OFF"!==z.debug.level.toString().toUpperCase()?q=!0:window.location.search&&null!=window.location.search.match(/_sp_debug_level=(?!off|OFF)/)&&(q=!0),q&&m.useDefaults({defaultLevel:m.DEBUG}))}function r(n,t,e){function r(o,e){var r=new Image;r.src="//"+G+"/cct?v="+encodeURIComponent(v.b)+"&ct="+_+"&cid="+encodeURIComponent(B)+"&l="+encodeURIComponent(n.toString())+"&rc="+encodeURIComponent(t)+"&d0="+encodeURIComponent(i)+(o?"&d1="+encodeURIComponent(o):"")+(e?"&d2="+encodeURIComponent(e):""),g.info("sending beacon: "+r.src),a&&a()}var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"",c=arguments[4],a=arguments[5];if(c){var u=e.lastIndexOf("."),d=e.lastIndexOf("/"),s=-1===u||d>u?e+".png":e.substring(0,u)+".png",l=new Image;l.addEventListener("load",function(){r("1",s)}),l.addEventListener("error",function(){o.i(f.a)(s,function(n,t,o){r("0",s+"::"+o)})}),l.src=s}else r()}function i(n,t,o,e){var r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},c=arguments.length>5&&void 0!==arguments[5]&&arguments[5],a=function(){i(n,t,o,e,r,!0)};n(t,c?o:a,e,r)}function c(n,t,o,e){function r(o,r){t(o,n,r,e.enableImageLoad)}function i(t,r){o(t,n,r,e.enableImageLoad),e.onError&&e.onError(r)}var c=document.createElement("script");c.src=n,c.onload=function(){e.onLoad&&e.onLoad()},c.onerror=function(){function t(n){return o.indexOf(n)>-1}var o=(navigator.userAgent||navigator.vendor||window.opera).toLowerCase();t("mobi")||t("ipad")||t("android")||t("iphone")?i(C):t("exabot")?i(k):t("bingbot")||t("bingpreview")?i(U):t("googlebot")||t("adsbot-google")||t("mediapartners-google")?i(I):t("googleweblight")?i(O):window.location.host===w?i(E):window.location.host.indexOf(b)>-1?i(j):t("msie 10")||t("msie 9")||t("msie 8")?i(S):a(n,r,i)},document.head.appendChild(c),document.querySelector('script[src="'+n+'"]')||-1!==window.location.host.indexOf(b)||(g.info("Script not present"),r(L,n))}function a(n,t,e){o.i(f.a)(n,function(o,r,i,c){(o||r?t:e)(c,n+"::"+i)})}function u(n,t,o,e){if(F)return void d(R+"::"+n,o);r(x,n,t,o,e,function(){if(N){if(q){g.error("bootstrap locking",x,n,t,o,e);debugger}setTimeout(function(){N()},250)}})}function d(n,t,o,e){r(y,n,t,o,e)}function s(){h._networkListenerData||(h._networkListenerData=o.i(p.a)())}function l(n,t){e(),g.info("bootstrap called with",n,t),i(c,n,u,d,t)}Object.defineProperty(t,"__esModule",{value:!0});var f=o(4),p=o(5),v=o(3),g=o(0),m=void 0;m=o(0);var w=["w","e","b","c","a","c","h","e",".","g","o","o","g","l","e","u","s","e","r","c","o","n","t","e","n","t",".","c","o","m"].join(""),b=["o","p","t","i","m","i","z","e","l","y","p","r","e","v","i","e","w",".","c","o","m"].join(""),h=window._sp_||{},_=1,y=0,x=1,L="s",C="m",I="g",E="gw",O="gl",S="i",U="b",k="e",R="n",j="o",D=!1,F=!1,q=!1,z=void 0,N=void 0,B=void 0,G=void 0;window.addEventListener("beforeunload",function(){F=!0}),window._sp_=h,h.setupNetworkListeners=s,h.bootstrap=l,window.spBootstrap=l,t["default"]=h},function(n,t,o){o(0);n.exports=o(1)["default"]},function(n,t,o){"use strict";function e(n){return n.join("")}o.d(t,"b",function(){return r}),o.d(t,"a",function(){return i});var r=(o(0),"2.0.919"),i=(e(["w","w","w",".","s","u","m","m","e","r","h","a","m","s","t","e","r",".","c","o","m"]),e(["w","w","w",".","r","o","o","s","t","e","r","f","i","r","e","w","o","r","k",".","c","o","m"]));e(["/","/","f","s","m","1","0","1","9",".","g","l","o","b","a","l",".","s","s","l",".","f","a","s","t","l","y",".","n","e","t","/","f","s","m","/","d","s"]),e(["h","t","t","p","s",":","/","/","d","2","z","v","5","r","k","i","i","4","6","m","i","q",".","c","l","o","u","d","f","r","o","n","t",".","n","e","t","/","0","/","2",".","0",".","9","1","9","/","r","e","c","o","v","e","r","y","_","d","f","p","_","i","n","t","e","r","n","a","l","-","v","2",".","0",".","9","1","9",".","j","s"]),e(["h","t","t","p","s",":","/","/","d","2","z","v","5","r","k","i","i","4","6","m","i","q",".","c","l","o","u","d","f","r","o","n","t",".","n","e","t","/","0","/","2",".","0",".","9","1","9","/","r","e","c","o","v","e","r","y","_","l","i","b","_","a","p","i","_","i","f","r","a","m","e","-","v","2",".","0",".","9","1","9",".","h","t","m","l"]),e(["h","t","t","p","s",":","/","/","d","2","z","v","5","r","k","i","i","4","6","m","i","q",".","c","l","o","u","d","f","r","o","n","t",".","n","e","t","/","0","/","2",".","0",".","9","1","9","/","r","e","c","o","v","e","r","y","_","l","i","b","_","r","i","d","_","i","f","r","a","m","e","-","v","2",".","0",".","9","1","9",".","h","t","m","l"])},function(n,t,o){"use strict";function e(n,t){function o(n){try{return n&&n.timeStamp?n.timeStamp:window.performance.now()}catch(n){return Date.now()}}var e=document.createElement("a");if(e.href=n,"https:"===window.location.protocol&&e.protocol!==window.location.protocol)return void t(!1,!1,e.protocol,u);var d=new XMLHttpRequest;try{d.open("GET",n)}catch(n){return void t(!0,!1,n.toString(),c,d)}var s=void 0,l=void 0;d.onloadstart=function(n){s=o(n)},d.onreadystatechange=function(n){if(4===this.readyState){l=o(n)-s;var e=0===this.status,c="2"===this.status.toString()[0],a=c?i:r;return void t(e,c,this.status+"::"+l,a,d)}};try{d.send()}catch(n){return void t(!0,!1,n.toString(),a,d)}}t.a=e;var r=(o(0),"n"),i="nx",c="xo",a="xs",u="p"},function(n,t,o){"use strict";function e(){var n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document,t=[],o=[],e=r.bind(null,t),i=r.bind(null,o);return n.addEventListener("load",e,!0),n.addEventListener("error",i,!0),{load:{events:t,listener:e},error:{events:o,listener:i}}}function r(n,t){if(t.target){var o="string"==typeof t.target.tagName?t.target.tagName.toLowerCase():"",e=t.target.src||"";"iframe"!==o&&n.push({tagName:o,src:e})}}t.a=e;o(0)}]);
492  
//# sourceMappingURL=https://s3.amazonaws.com/d3jlsadfjkuern/2.0.919/Ym9vdHN0cmFwLmpz.map
493  
    (function () {
494  
        
495  
window.DARCI = window.DARCI || {};
496  
window.DARCI.gptLoadedCallback = function () {
497  
window.gptLoaded = true;
498  
resetAndLoadGPTRecovery();
499  
};
500  
501  
function resetAndLoadGPTRecovery() {
502  
if (gptLoaded && isBlocking) {
503  
resetGpt();
504  
window._sp_.dfp.loadGPT();
505  
}
506  
}
507  
508  
function resetGpt () {
509  
googletag.cmd.push(function () {
510  
googletag.destroySlots();
511  
});
512  
513  
if(typeof spots_deferred !== 'undefined') {
514  
for(var i in spots_deferred) spots_deferred[i].code = spots_deferred[i].code_sp;
515  
}
516  
517  
window.googletag = {};
518  
window.googletag.cmd = [];
519  
window.googletag.slots = {};
520  
521  
googletag.cmd.push(function () {
522  
googletag.slots["thesaurus_serp_atf_728x90"] = googletag.defineSlot("/23219321/iac.dict.thesrs.dw/dic/serp_0_y", [[728,90],[970,90], [970,250]], "thesaurus_serp_atf_728x90").addService(googletag.pubads()).setTargeting("pos", "top").setTargeting("pos2", "728x90_1").setTargeting("tx1", "results").setTargeting("tx2", "serp_0_y").setTargeting("ptype", "content").setTargeting("spe", "y");googletag.slots["thesaurus_serp_atf_300x250"] = googletag.defineSlot("/23219321/iac.dict.thesrs.dw/dic/serp_0_y", [[300,250],[300,600]], "thesaurus_serp_atf_300x250").addService(googletag.pubads()).setTargeting("pos", "top").setTargeting("pos2", "300x250_1").setTargeting("tx1", "results").setTargeting("tx2", "serp_0_y").setTargeting("ptype", "content").setTargeting("spe", "y");googletag.slots["thesaurus_serp_btf_2"] = googletag.defineSlot("/23219321/iac.dict.thesrs.dw/dic/serp_0_y", [728,90], "thesaurus_serp_btf_2").addService(googletag.pubads()).setTargeting("pos", "bot").setTargeting("pos2", "728x90_2").setTargeting("tx1", "results").setTargeting("tx2", "serp_0_y").setTargeting("ptype", "content").setTargeting("spe", "y");googletag.slots["thesaurus_serp_btf_300x252"] = googletag.defineSlot("/23219321/iac.dict.thesrs.dw/dic/serp_0_y", [300,250], "thesaurus_serp_btf_300x252").addService(googletag.pubads()).setTargeting("pos", "mid").setTargeting("pos2", "300x250_2").setTargeting("tx1", "results").setTargeting("tx2", "serp_0_y").setTargeting("ptype", "content").setTargeting("spe", "y");adStatus.renderedAdsCount = 0;
523  
adStatus.spotsCount = 4;
524  
googletag.pubads().addEventListener('slotRenderEnded', handleSlotRender);
525  
googletag.pubads().enableSingleRequest();
526  
googletag.enableServices();
527  
for(var i = 0; i < adStatus.displayedSpots.length; i++)
528  
    googletag.display(adStatus.displayedSpots[i]);
529  
});
530  
}
531  
        window._sp_ = window._sp_ || {};
532  
window._sp_.config = window._sp_.config || {};
533  
window._sp_.config.account_id = 294;
534  
window._sp_.config.publisher_base = '//spb.dictionary.com/proxy';
535  
window._sp_.config.gpt_auto_load = false;
536  
window._sp_.config.enable_rid = false;
537  
window._sp_.config.content_control_callback = function () {
538  
    window.location.href = "http://www.thesaurus.com/why-am-i-seeing-ads";
539  
};
540  
window._sp_.config.enable_vid= false;
541  
window._sp_.config.vid_control_callback = function() {
542  
    console.log("VID Triggered!");
543  
};
544  
545  
document.addEventListener('sp.blocking', function (e) {
546  
isBlocking = true;
547  
resetAndLoadGPTRecovery();
548  
});
549  
550  
        window._sp_.bootstrap('http://www.thesaurus.com/js/sp.js');
551  
552  
    })();
553  
</script><script type="text/javascript">
554  
var get_request_identifier = (function () { return Math.random().toString(36).substr(2) }()),
555  
    get_modified_page_url = (function () {
556  
        sep = window.location.search.length >= 0 && window.location.href.indexOf("?") !== -1 ? "&" : "?";
557  
        return window.location.href + sep + "rquid=" + get_request_identifier
558  
    })();
559  
560  
var ad_config = {
561  
    pageTargeting: {
562  
        ref: window.document.referrer.search("dictionary.com|thesaurus.com|reference.com") > -1 ? "organic" : "direct",
563  
        lang: window.navigator.userLanguage || window.navigator.language,
564  
        rpv: Math.floor((Math.random() * 100) + 1).toString(),
565  
        dc_ref: encodeURIComponent(get_modified_page_url),
566  
        loc: 'US',
567  
        ld: '0',
568  
        dow: new Date().getDay().toString(),
569  
        page_url: get_modified_page_url,
570  
        rquid: get_request_identifier,
571  
    }
572  
};
573  
ad_config.pageTargeting.tx1 = 'results';
574  
ad_config.pageTargeting.tx2 = 'serp_0_n';
575  
ad_config.pageTargeting.ptype = 'content';
576  
ad_config.pageTargeting.spe = 'n';
577  
ad_config.slots = [{"placement":"thesaurus_serp_atf_728x90","code":"\/23219321\/iac.dict.thesrs.dw\/dic\/serp_0_n","ad_uuid":"728x90_top","targeting":{"pos":"top","pos2":"728x90_1"},"sizes":[[728,90],[970,90],[970,250]]},{"placement":"thesaurus_serp_atf_300x250","code":"\/23219321\/iac.dict.thesrs.dw\/dic\/serp_0_n","ad_uuid":"300x250_top","targeting":{"pos":"top","pos2":"300x250_1"},"sizes":[[300,250],[300,600]]},{"placement":"thesaurus_serp_btf_2","code":"\/23219321\/iac.dict.thesrs.dw\/dic\/serp_0_n","ad_uuid":"728x90_bot","targeting":{"pos":"bot","pos2":"728x90_2"},"sizes":[[728,90]]},{"placement":"thesaurus_serp_btf_300x252","code":"\/23219321\/iac.dict.thesrs.dw\/dic\/serp_0_n","ad_uuid":"300x250_mid","targeting":{"pos":"mid","pos2":"300x250_2"},"sizes":[[300,250]]}];
578  
</script>
579  
<script type="text/javascript">
580  
var adStatus = {
581  
    spotsCount: 4,
582  
    renderedSpots: [],
583  
    renderedSpotsCount: 0,
584  
    displayedSpots: [],
585  
    set: function(name, size) {
586  
        this.renderedSpots[name] = {
587  
            size: size
588  
        };
589  
    },
590  
    get: function(name) {
591  
        return this.renderedSpots[name];
592  
    },
593  
    getSlotKey: function(slot) {
594  
        var slotKey;
595  
        for (slotKey in googletag.slots) {
596  
            if(googletag.slots[slotKey] == slot) {
597  
                break;
598  
            }
599  
        }
600  
        return slotKey;
601  
    },
602  
    adsLoaded: function() {
603  
        return this.renderedSpotsCount >= this.spotsCount;
604  
    }
605  
};
606  
607  
adStatus.dispatchLoadedEvent = function () {
608  
    if(adStatus.adsLoaded()) {
609  
        if (document.createEvent) {
610  
            var event = new CustomEvent('gptAdsLoaded');
611  
            document.dispatchEvent(event);
612  
        } else {
613  
            var event = document.createEventObject();
614  
            event.eventType = "gptAdsLoaded";
615  
            document.fireEvent("ongptAdsLoaded", event);
616  
        }
617  
    }
618  
};
619  
620  
var handleSlotRender = function(data) {
621  
    var key = adStatus.getSlotKey(data.slot);
622  
    adStatus.set(key, data.size);
623  
    adStatus.renderedSpotsCount += 1;
624  
        adStatus.dispatchLoadedEvent();
625  
    };
626  
</script><script type="text/javascript">
627  
var spots_deferred = [];
628  
</script>
629  
<script type="text/javascript">
630  
631  
  var PWT = {}; //Initialize Namespace
632  
  var googletag = googletag || {};
633  
  googletag.cmd = googletag.cmd || [];
634  
  googletag.slots = googletag.slots || {};
635  
636  
  PWT.jsLoaded = function() { //PubMatic pwt.js on load callback is used to load GPT
637  
    window.OWT.registerExternalBidders(); // Notifies OpenWrap that there are some external bidders for which it has to wait before calling DFP.
638  
    (function() {
639  
      var gads = document.createElement('script');
640  
      var useSSL = 'https:' == document.location.protocol;
641  
      gads.src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
642  
      var node = document.getElementsByTagName('script')[0];
643  
      node.parentNode.insertBefore(gads, node);
644  
    })();
645  
  };
646  
  (function() {
647  
    var purl = window.location.href;
648  
    var url = '//ads.pubmatic.com/AdServer/js/pwt/103207/307';
649  
    var profileVersionId = '';
650  
    if (purl.indexOf('pwtv=') > 0) {
651  
      var regexp = /pwtv=(.*?)(&|$)/g;
652  
      var matches = regexp.exec(purl);
653  
      if (matches.length >= 2 && matches[1].length > 0) {
654  
        profileVersionId = '/' + matches[1];
655  
      }
656  
    }
657  
    var wtads = document.createElement('script');
658  
    wtads.async = true;
659  
    wtads.type = 'text/javascript';
660  
    wtads.src = url + profileVersionId + '/pwt.js';
661  
    var node = document.getElementsByTagName('script')[0];
662  
    node.parentNode.insertBefore(wtads, node);
663  
  })();
664  
665  
  /**---------- Set page level targeting for DFP ----------*/
666  
  for (var pageTarget in ad_config.pageTargeting) {
667  
    if (ad_config.pageTargeting.hasOwnProperty(pageTarget)) {
668  
      (function(key, value) {
669  
        googletag.cmd.push(function() {
670  
          googletag.pubads().setTargeting(key, value);
671  
        });
672  
      })(pageTarget, ad_config.pageTargeting[pageTarget]);
673  
    }
674  
  };
675  
676  
  /**---------- Set ad slot level targeting for DFP ----------*/
677  
  if (typeof ad_config.slots === "object") {
678  
    ad_config.slots.forEach(function(slot, index) {
679  
      googletag.cmd.push(function() {
680  
        googletag.slots[slot.placement] = googletag.defineSlot(slot.code, slot.sizes, slot.placement).addService(googletag.pubads());
681  
        for (var target in slot.targeting) {
682  
          if (slot.targeting.hasOwnProperty(target)) {
683  
            googletag.slots[slot.placement].setTargeting(target, slot.targeting[target]);
684  
          }
685  
        }
686  
      });
687  
    });
688  
  }
689  
690  
  /**---------- Push gpt ad slots to DFP ----------*/
691  
  googletag.cmd.push(function() {
692  
    googletag.pubads().enableSingleRequest();
693  
    googletag.enableServices();
694  
  });
695  
696  
</script>
697  
698  
<script type="text/javascript">
699  
var slotsObject = JSON.parse('[{"slotID":"thesaurus_serp_atf_728x90","sizes":[[728,90],[970,90],[970,250]]},{"slotID":"thesaurus_serp_atf_300x250","sizes":[[300,250],[300,600]]},{"slotID":"thesaurus_serp_btf_2","sizes":[[728,90]]},{"slotID":"thesaurus_serp_btf_300x252","sizes":[[300,250]]}]');
700  
701  
!function(a9,a,p,s,t,A,g){if(a[a9])return;function q(c,r){a[a9]._Q.push([c,r])}a[a9]={init:function(){q("i",arguments)},fetchBids:function()
702  
{q("f",arguments)},setDisplayBids:function(){},_Q:[]};A=p.createElement(s);A.async=!0;A.src=t;g=p.getElementsByTagName(s)[0];g.parentNode.insertBefore( A,g)}("apstag",window,document,"script","//c.amazon-adsystem.com/aax2/apstag.js");
703  
704  
// initialize apstag and have apstag set bids on the googletag slots when they are returned to the page
705  
apstag.init({
706  
  pubID: '3067',
707  
  adServer: 'googletag',
708  
  bidTimeout: 1000
709  
});
710  
711  
// request the bids for the 3 googletag slots
712  
apstag.fetchBids({
713  
    slots: slotsObject
714  
}, function(bids) {
715  
  // Your callback method, in this example it triggers the first DFP request for googletag's disableInitialLoad integration after bids have been set
716  
  googletag.cmd.push(function(){
717  
    apstag.setDisplayBids();
718  
    if (typeof window.OWT === 'undefined') {
719  
      googletag.pubads().refresh();
720  
    } else {
721  
      // This will tell OpenWrap that all the external bidders have returned bid.
722  
      window.OWT.notifyExternalBiddingComplete();
723  
    }
724  
  });
725  
});
726  
</script><script type='text/javascript'>
727  
    window.dataLayer = window.dataLayer || [];
728  
729  
    dataLayer.push({
730  
        'event': 'pageview',
731  
        'device': 'Desktop',
732  
        'pageName': 'the',
733  
        'LDid': '0',
734  
        'mseg': cookiesManager.getCookieValue("mseg"),
735  
        'sessionId': cookiesManager.getCookieValue("sid"),
736  
        'browserId': cookiesManager.getCookieValue("bid")    });
737  
</script><!--[if lt IE 9]><script type="text/javascript" src="http://static.sfdict.com/app/js/html5-92a89.js" ></script><![endif]--><!-- Begin Quantcast Tag, part 1 -->
738  
<script type="text/javascript"> 
739  
  
740  
  var _qevents = _qevents || [];
741  
742  
  (function() {
743  
   var elem = document.createElement('script');
744  
745  
   elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
746  
   elem.async = true;
747  
   elem.type = "text/javascript";
748  
   var scpt = document.getElementsByTagName('script')[0];
749  
   scpt.parentNode.insertBefore(elem, scpt);  
750  
  })();
751  
</script>
752  
<!-- End Quantcast Tag, part 1 -->
753  
<script type="application/ld+json">
754  
{
755  
    "@context": "http://schema.org",
756  
    "@type": "WebPage",
757  
    "@id": "http://www.thesaurus.com/browse/fat",
758  
    "potentialAction":
759  
    { "@type": "ViewAction", "target": "android-app://com.dictionary/http/www.thesaurus.com/browse/fat" }
760  
}
761  
</script>    </head>
762  
    <body >
763  
            <!-- Google Tag Manager -->
764  
<noscript>
765  
    <iframe src="//www.googletagmanager.com/ns.html?id=GTM-PVMWP3" height="0" width="0" style="display:none;visibility:hidden">
766  
    </iframe>
767  
</noscript>
768  
<script>
769  
    (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
770  
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
771  
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;
772  
        j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;
773  
        f.parentNode.insertBefore(j, f);
774  
    })(window,document,'script','dataLayer','GTM-PVMWP3');
775  
</script>
776  
<!-- End Google Tag Manager -->                <div id="fb-root"></div>
777  
            <!-- ClickTale Top part -->
778  
<script type="text/javascript">
779  
    var WRInitTime = (new Date()).getTime();
780  
</script>
781  
<!-- ClickTale end of Top part -->
782  
<script type="text/javascript">
783  
    UserController.initBody();
784  
</script>
785  
<script type="text/javascript">
786  
        /**
787  
     * Redirects user to address from parameter
788  
     *
789  
     * @param url
790  
     * @returns {boolean}
791  
     */
792  
    function submitForm(url) {
793  
        var queryText = document.getElementById('q').value || 'search';
794  
795  
        queryText = encodeURIComponent(queryText);
796  
797  
        url = url.replace('%40%40queryText%40%40', queryText);
798  
799  
                location.href = url;
800  
        return false;
801  
    }
802  
803  
    function prepareSearchBox(el) {
804  
        var dataTerm = el.getAttribute('data-term');
805  
        var value = el.value;
806  
        if (!(/(iPad|iPhone|iPod)/g.test(navigator.userAgent))) {
807  
            el.focus();
808  
            if (dataTerm == value) {
809  
                el.select();
810  
            }
811  
        }
812  
    }
813  
</script>
814  
<nav class="ham-nav">
815  
    <ul>
816  
        <li class="ham-main-menu"><a href="http://www.dictionary.com/" data-linkid="lxabec" >Dictionary.com</a></li>
817  
        <li>
818  
            <ul class="ham-submenu">
819  
                <li><a href="http://www.dictionary.com/wordoftheday/" data-linkid="1498ik" >Word <i class="wotd-italic">of the</i>  Day</a></li>
820  
                <li><a href="http://translate.reference.com/" data-linkid="au3zd1" >Translate</a></li>
821  
                <li><a href="http://www.dictionary.com/fun" data-linkid="yp2k17" >Games</a></li>
822  
                <li><a href="http://blog.dictionary.com/" data-linkid="t6ehki" >Blog</a></li>
823  
            </ul>
824  
        </li>
825  
                <li class="ham-main-menu">
826  
            <a href="http://app.dictionary.com/favorites">Favorites
827  
                <span class="dicticon-header-favourites-star"></span>
828  
                <span class="ham-favourites-number"></span>
829  
            </a>
830  
        </li>
831  
    </ul>
832  
</nav>
833  
<button class="dicticon-hamburger-menu slide-element"></button>
834  
<header class="js-header thesaurus-header">
835  
    <div class="header-nav-row">
836  
        <ul class="header-main-nav">
837  
                            <li >
838  
                    <a href="http://www.dictionary.com/" data-linkid="tqks0v" >Dictionary.com</a>
839  
                </li>
840  
                            <li class="nav-active">
841  
                    <a href="http://www.thesaurus.com/" data-linkid="qxnxzj" >Thesaurus.com</a>
842  
                </li>
843  
                    </ul>
844  
        <ul class="header-login-nav">
845  
                            <li class="user-logged-in account"><a href="http://app.dictionary.com/users/settings">My Account</a></li>
846  
                <li class="user-logged-in"><a href="http://app.dictionary.com/logout?logindest=http%3A%2F%2Fwww.thesaurus.com%2Fbrowse%2Ffat">Log Out</a></li>
847  
                <li class="user-logged-out"><a rel="nofollow" href="http://app.dictionary.com/login?source=header_core&amp;logindest=http%3A%2F%2Fwww.thesaurus.com%2Fbrowse%2Ffat">Log In</a></li>
848  
                    </ul>
849  
850  
    <a href="http://www.dictionary.com/apps"  class="header-apps-links" data-linkid="dbvvdc" >        <span class="dicticon-header-app-android"></span>
851  
        <span class="dicticon-header-app-ios"></span>
852  
        Try Our Apps
853  
        </a>
854  
    </div>
855  
856  
    <div class="header-search-row">
857  
        <div class="header-wrapper-row">
858  
            <a href="http://www.thesaurus.com/" data-linkid="yg487x" >            <img src="http://www.thesaurus.com/trc/img/tcom-logo-b30fc.png" alt='Thesaurus.com'/>
859  
            </a>
860  
            <form id="main_search" class="header-search-form" action="http://www.thesaurus.com/search">
861  
                <div class="header-search-wrapper">
862  
                    <div class="search-filter-nav">
863  
                        <span class="dicticon-filter"></span>
864  
                        <span class="filter-item-active" data-filter-action="http://www.thesaurus.com/browse/%40%40queryText%40%40">synonyms</span>
865  
                    </div>
866  
                    <input type="text"
867  
                           value="fat"
868  
                           autoComplete="off"
869  
                           autocapitalize="off"
870  
                           autocorrect="off"
871  
                           name="q"
872  
                           class="search-input transparent-text"
873  
                           id="q"
874  
                           data-term="fat">
875  
                                        <input type="hidden" name="s" value="t"/>
876  
                    <button type="submit" id="search-submit" class="dicticon-search-submit" value=""></button>
877  
                    <ul class="filter-list filter-hidden">
878  
                                                    <li class="" data-filter="http://www.dictionary.com/browse/%40%40queryText%40%40">definitions</li>
879  
                                                    <li class="filter-hidden" data-filter="http://www.thesaurus.com/browse/%40%40queryText%40%40">synonyms</li>
880  
                                                    <li class="" data-filter="http://translate.reference.com/?query=%40%40queryText%40%40">translations</li>
881  
                                            </ul>
882  
                </div>
883  
            </form>
884  
        </div>
885  
    </div>
886  
    <div class="social-follow-module">
887  
    <ul class="social-follow-btns">
888  
        <li>
889  
            <div class="fb-like-wrapper">
890  
                <div class="fb-like" data-href="https://www.facebook.com/dictionarycom" data-layout="button_count" data-action="like" data-show-faces="true" data-share="false"></div>
891  
            </div>
892  
        </li>
893  
        <li>
894  
            <a class="twitter-follow-button" href="https://twitter.com/dictionarycom" data-show-screen-name="false">Follow @dictionarycom</a>
895  
        </li>
896  
        <li>
897  
            <span class="ig-follow" data-id="17031a6e93" data-handle="igfbdotcom" data-count="true" data-size="medium" data-username="false"></span>
898  
        </li>
899  
        <li>
900  
            <div class="g-follow" data-annotation="bubble" data-height="20" data-href="https://plus.google.com/117428481782081853923" data-rel="publisher"></div>
901  
        </li>
902  
    </ul>
903  
    <p>follow Dictionary.com</p>
904  
</div></header>
905  
<script type="text/javascript">
906  
    var DARCI = DARCI || {};
907  
    DARCI.searchedTerm = typeof DARCI.OQR !== 'undefined' ? DARCI.OQR.getValue() : null;
908  
    DARCI.searchedTerm = DARCI.searchedTerm !== null ? DARCI.searchedTerm : 'fat';
909  
910  
    document.getElementById('main_search').onsubmit = function(e, url) {
911  
        // if url parameter wasn't passed submitFrom() is called with default parameter, which is searchURL
912  
        // searchURL is defined and added as a global js option in controller
913  
        return submitForm(url || searchURL);
914  
    }
915  
916  
    prepareSearchBox(document.getElementById('q'));
917  
918  
    cookiesManager.setCookie('ReferrerQuery', DARCI.searchedTerm);
919  
</script><!-- main wrapper -->
920  
<!-- main wrapper -->
921  
<div id="container" class="container ">
922  
923  
    <div id="heading">
924  
        <div id="fb-root"></div>
925  
<section id="breadcrumbs" class="breadcrumbs">
926  
    <div class="holder"  data-linkid='wd84go'>
927  
    </div>
928  
    <div class="prev-breadcrumbs adrefresh-mousedown">-</div>
929  
    <div class="next-breadcrumbs adrefresh-mousedown">+</div>
930  
    <section id="favor">
931  
        <a href="http://www.thesaurus.com/my-synonyms" data-linkid="kx52va" >My Synonyms</a>
932  
        <span>(<span class="count">0</span>)</span>
933  
    </section>
934  
</section>
935  
<!-- ad-top -->
936  
<section class="promo-top">
937  
    <div class="banner">
938  
        <div id="thesaurus_serp_atf_728x90">
939  
    <script type="text/javascript">
940  
        if (typeof UserController !== "undefined" && !UserController.shouldDisplayAds()) {
941  
            document.getElementById("thesaurus_serp_atf_728x90").parentNode.removeChild(document.getElementById(""));
942  
        } else {
943  
            adStatus.displayedSpots.push("thesaurus_serp_atf_728x90");
944  
            googletag.cmd.push(function () {
945  
                googletag.display("thesaurus_serp_atf_728x90");
946  
            });
947  
        }
948  
    </script>
949  
</div>    </div>
950  
</section>
951  
<!-- heading -->
952  
<div class="frame-holder">
953  
    <section class="main-heading">
954  
        <div class="part-of-speech">
955  
            <div class="main">
956  
                <h1>fat</h1>
957  
                                    <div class="audio-wrapper cts-disabled">
958  
    <audio>
959  
        <source src="http://static.sfdict.com/audio/lunawav/F00/F0054000.ogg" type="audio/ogg">
960  
        <source src="http://static.sfdict.com/audio/F00/F0054000.mp3" type="audio/mpeg">
961  
    </audio>
962  
    <div class="speaker"></div>
963  
</div>                                        <div id="headword-star" class="star">star</div>
964  
                    <a href="http://www.dictionary.com/browse/fat"  class="def"  target="_blank" data-linkid="k7mlp0" >                        see definition of <span class="headword">fat</span></a>
965  
                                                                    <div class="part-of-speech-filter"  data-linkid='dzkc96'>
966  
                    show 
967  
                    <select id="part-of-speech-filter">
968  
                                                <option value="http://www.thesaurus.com/browse/fat/" >all</option>
969  
                                                <option value="http://www.thesaurus.com/browse/fat/adjective" >adjective</option>
970  
                                                <option value="http://www.thesaurus.com/browse/fat/noun" >noun</option>
971  
                                        </select>
972  
                </div>
973  
                            </div>
974  
            <!-- words-gallery -->
975  
            <div id="words-gallery" class="words-gallery" style="display: none">
976  
                <div class="mask">
977  
                    <ul>
978  
                                                    <li>
979  
                                <a href="#" data-complbuckets="3" data-explore="big" data-syncount="46" data-thes-id="7539" data-id="0" id="pos-tab-0" class="pos-tab">
980  
                                    <em class="txt">adj</em>
981  
                                    <strong class="ttl">overweight</strong>
982  
                                </a>
983  
                            </li>
984  
                                                        <li>
985  
                                <a href="#" data-complbuckets="3" data-explore="fatty" data-syncount="7" data-thes-id="7540" data-id="1" id="pos-tab-1" class="pos-tab">
986  
                                    <em class="txt">adj</em>
987  
                                    <strong class="ttl">containing an oily substance</strong>
988  
                                </a>
989  
                            </li>
990  
                                                        <li>
991  
                                <a href="#" data-complbuckets="3" data-explore="lucrative" data-syncount="12" data-thes-id="7541" data-id="2" id="pos-tab-2" class="pos-tab">
992  
                                    <em class="txt">adj</em>
993  
                                    <strong class="ttl">productive, rich</strong>
994  
                                </a>
995  
                            </li>
996  
                                                        <li>
997  
                                <a href="#" data-complbuckets="3" data-explore="flesh" data-syncount="20" data-thes-id="7542" data-id="3" id="pos-tab-3" class="pos-tab">
998  
                                    <em class="txt">noun</em>
999  
                                    <strong class="ttl">overweight, adipose tissue</strong>
1000  
                                </a>
1001  
                            </li>
1002  
                                                                        </ul>
1003  
                </div>
1004  
                <span class="layer disabled"></span>
1005  
                <span class="layer-l disabled"></span>
1006  
                <a href="#" class="prev disabled adrefresh-mousedown">prev</a>
1007  
                <a href="#" class="next disabled adrefresh-mousedown">next</a>
1008  
            </div>
1009  
        </div>
1010  
        <div class="clear"></div>
1011  
    </section>
1012  
1013  
   <a href="http://www.thesaurus.com/"  class="back-button"  id="prev-gutter" data-linkid="jgq255" >    </a>
1014  
1015  
1016  
    <a href="http://www.thesaurus.com/browse/big"  class="next-button"  id="explore-gutter" data-linkid="huiazc" >        <strong class="text gutter-text ">
1017  
            big        </strong>
1018  
            </a>
1019  
</div>
1020  
    </div>
1021  
    <div id="content" class="direct">
1022  
        <div class="main-content"  data-linkid='nn1ov4'>
1023  
    <div class="main-content-holder">
1024  
        
1025  
                <!-- sliders -->
1026  
        <div class="sliders">
1027  
            <div class="slider-frame active box1">
1028  
                <strong class="ttl">Relevance</strong>
1029  
                <div class="tooltip">
1030  
                    <div>
1031  
                        <b>Relevance</b> ranks synonyms and suggests the best matches based on how closely a synonym’s sense matches the sense you selected.
1032  
                    </div>
1033  
                </div>
1034  
                <!-- switcher -->
1035  
                <div class="slider-box sort-slider">
1036  
                    <div class="frame">
1037  
                        <div class="slider-line ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
1038  
                            <input type="hidden" class="min-val" value="0">
1039  
                            <input type="hidden" class="max-val" value="1">
1040  
                            <input type="hidden" class="cur-val" value="0">
1041  
                            <input type="hidden" class="step" value="1">
1042  
                            <div class="ui-slider-range ui-widget-header ui-slider-range-min" style="width: 0%;"></div>
1043  
                            <div class="ui-handle-helper-parent">
1044  
                                <div class="ui-slider-handle ui-state-default ui-corner-all" style="left: 0%;"></div>
1045  
                            </div>
1046  
                        </div>
1047  
                    </div>
1048  
                </div>
1049  
                <strong class="ttl second">A-Z</strong>
1050  
            </div>
1051  
            <div class="slider-frame box2">
1052  
                <strong class="ttl">Complexity</strong>
1053  
                <div class="tooltip">
1054  
                    <div>
1055  
                        <b>Complexity</b> sorts synonyms based on their difficulty. Adjust it higher to choose from words that are more complex.
1056  
                    </div>
1057  
                </div>
1058  
                <div class="slider-box filter-slider min" data-group="complexity">
1059  
                    <div class="frame">
1060  
                        <div class="slider-line ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
1061  
                            <input type="hidden" class="min-val" value="0">
1062  
                            <input type="hidden" class="max-val" value="3">
1063  
                            <input type="hidden" class="cur-val" value="0">
1064  
                            <input type="hidden" class="step" value="1">
1065  
                            <div class="ui-handle-helper-parent">
1066  
                                <div class="ui-slider-handle ui-state-default ui-corner-all" style="left: 0%;"></div>
1067  
                            </div>
1068  
1069  
                        </div>
1070  
                    </div>
1071  
                    <div class="minus disabled">-</div>
1072  
                    <div class="plus">+</div>
1073  
                    <span class="filter-mask" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; z-index: 10; display: none;"></span>
1074  
                </div>
1075  
            </div>
1076  
            <div class="slider-frame box3">
1077  
                <strong class="ttl">Length</strong>
1078  
                <div class="tooltip">
1079  
                    <div>
1080  
                        <b>Length</b> ranks your synonyms based on character count.
1081  
                    </div>
1082  
                </div>
1083  
                <div class="slider-box filter-slider min" data-group="length">
1084  
                    <div class="frame">
1085  
                        <div class="slider-line ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all">
1086  
                            <input type="hidden" class="min-val" value="0">
1087  
                            <input type="hidden" class="max-val" value="5">
1088  
                            <input type="hidden" class="cur-val" value="0">
1089  
                            <input type="hidden" class="step" value="1">
1090  
                            <div class="ui-handle-helper-parent">
1091  
                                <div class="ui-slider-handle ui-state-default ui-corner-all" style="left: 0%;"></div>
1092  
                            </div>
1093  
                        </div>
1094  
                    </div>
1095  
                    <div class="minus disabled">-</div>
1096  
                    <div class="plus">+</div>
1097  
                    <span class="filter-mask" style="position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; z-index: 10; display: none;"></span>
1098  
                </div>
1099  
            </div>
1100  
        </div>
1101  
        <div class="clear"></div>
1102  
        <!-- google_ad_section_start(name=maincontent,weight=1) -->
1103  
<div class="synonyms_wrapper">
1104  
    <!-- tabset -->
1105  
    <ul class="tabset">
1106  
        <li id="list-visualization" class="lists active adrefresh-mousedown"><span>lists</span></li>
1107  
        <li id="block-visualization" class="blocks adrefresh-mousedown"><span>blocks</span></li>
1108  
    </ul>
1109  
        <div class="form-block">
1110  
        <!-- words-form -->
1111  
        <div class="words-form">
1112  
            <input type="checkbox" id="common_checkbox" class="jcf-hidden">
1113  
            <label for="common_checkbox" class="">Common</label>
1114  
            <div class="tooltip">
1115  
                <div>
1116  
                    <b>Common</b> words appear frequently in written and spoken language across many genres from radio to academic journals.
1117  
                </div>
1118  
            </div>
1119  
        </div>
1120  
        <div class="words-form">
1121  
            <input type="checkbox" id="informal_checkbox" class="jcf-hidden">
1122  
            <label for="informal_checkbox" class="">Informal</label>
1123  
            <div class="tooltip">
1124  
                <div>
1125  
                    <b>Informal</b> words should be reserved for casual, colloquial communication.
1126  
                </div>
1127  
            </div>
1128  
        </div>
1129  
    </div>
1130  
                                        <div id="synonyms-0" class="synonyms">
1131  
            <div class="heading-row synonyms-heading">
1132  
                <em class="txt">adj</em>
1133  
                <strong class="ttl">overweight</strong>
1134  
            </div>
1135  
            <div class="filters" id="filters-0">
1136  
                <div class="heading-row">
1137  
                    <h2>
1138  
                        Synonyms <span>for fat</span>                    </h2>
1139  
                </div>
1140  
                <div class="synonym-description">
1141  
                    <em class="txt">adj</em>
1142  
                    <strong class="ttl">overweight</strong>
1143  
                </div>
1144  
                <div class="relevancy-block">
1145  
                    <div class="relevancy-list">
1146  
                                                                         
1147  
                            <ul>
1148  
                                                                    <li><a href="http://www.thesaurus.com/browse/bulky" data-id="1" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">bulky</span><span class="star inactive">star</span></a></li>
1149  
                                                                    <li><a href="http://www.thesaurus.com/browse/obese" data-id="2" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="1"><span class="text">obese</span><span class="star inactive">star</span></a></li>
1150  
                                                                    <li><a href="http://www.thesaurus.com/browse/inflated" data-id="3" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="2"><span class="text">inflated</span><span class="star inactive">star</span></a></li>
1151  
                                                                    <li><a href="http://www.thesaurus.com/browse/bulging" data-id="4" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="2"><span class="text">bulging</span><span class="star inactive">star</span></a></li>
1152  
                                                                    <li><a href="http://www.thesaurus.com/browse/hefty" data-id="5" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="1"><span class="text">hefty</span><span class="star inactive">star</span></a></li>
1153  
                                                                    <li><a href="http://www.thesaurus.com/browse/large" class="common-word" data-id="6" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">large</span><span class="star inactive">star</span></a></li>
1154  
                                                                    <li><a href="http://www.thesaurus.com/browse/chunky" data-id="7" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="2"><span class="text">chunky</span><span class="star inactive">star</span></a></li>
1155  
                                                                    <li><a href="http://www.thesaurus.com/browse/big" class="common-word" data-id="8" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="1"><span class="text">big</span><span class="star inactive">star</span></a></li>
1156  
                                                                    <li><a href="http://www.thesaurus.com/browse/heavy" class="common-word" data-id="9" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">heavy</span><span class="star inactive">star</span></a></li>
1157  
                                                                    <li><a href="http://www.thesaurus.com/browse/meaty" data-id="10" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="1"><span class="text">meaty</span><span class="star inactive">star</span></a></li>
1158  
                                                                    <li><a href="http://www.thesaurus.com/browse/plump" data-id="11" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="2" data-length="1"><span class="text">plump</span><span class="star inactive">star</span></a></li>
1159  
                                                                    <li><a href="http://www.thesaurus.com/browse/gross" class="common-word" data-id="12" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">gross</span><span class="star inactive">star</span></a></li>
1160  
                                                            </ul>
1161  
                         
1162  
                            <ul>
1163  
                                                                    <li><a href="http://www.thesaurus.com/browse/bull" class="common-word" data-id="13" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">bull</span><span class="star inactive">star</span></a></li>
1164  
                                                                    <li><a href="http://www.thesaurus.com/browse/solid" class="common-word" data-id="14" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">solid</span><span class="star inactive">star</span></a></li>
1165  
                                                                    <li><a href="http://www.thesaurus.com/browse/broad" class="common-word" data-id="15" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">broad</span><span class="star inactive">star</span></a></li>
1166  
                                                                    <li><a href="http://www.thesaurus.com/browse/lard" data-id="16" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">lard</span><span class="star inactive">star</span></a></li>
1167  
                                                                    <li><a href="http://www.thesaurus.com/browse/roly-poly" data-id="17" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="3"><span class="text">roly-poly</span><span class="star inactive">star</span></a></li>
1168  
                                                                    <li><a href="http://www.thesaurus.com/browse/bovine" data-id="18" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="2"><span class="text">bovine</span><span class="star inactive">star</span></a></li>
1169  
                                                                    <li><a href="http://www.thesaurus.com/browse/blimp" data-id="19" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">blimp</span><span class="star inactive">star</span></a></li>
1170  
                                                                    <li><a href="http://www.thesaurus.com/browse/stout" data-id="20" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">stout</span><span class="star inactive">star</span></a></li>
1171  
                                                                    <li><a href="http://www.thesaurus.com/browse/swollen" class="common-word" data-id="21" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="2"><span class="text">swollen</span><span class="star inactive">star</span></a></li>
1172  
                                                                    <li><a href="http://www.thesaurus.com/browse/husky" data-id="22" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">husky</span><span class="star inactive">star</span></a></li>
1173  
                                                                    <li><a href="http://www.thesaurus.com/browse/distended" data-id="23" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="3"><span class="text">distended</span><span class="star inactive">star</span></a></li>
1174  
                                                                    <li><a href="http://www.thesaurus.com/browse/beefy" data-id="24" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="1"><span class="text">beefy</span><span class="star inactive">star</span></a></li>
1175  
                                                            </ul>
1176  
                         
1177  
                            <ul>
1178  
                                                                    <li><a href="http://www.thesaurus.com/browse/brawny" data-id="25" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">brawny</span><span class="star inactive">star</span></a></li>
1179  
                                                                    <li><a href="http://www.thesaurus.com/browse/burly" data-id="26" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="1"><span class="text">burly</span><span class="star inactive">star</span></a></li>
1180  
                                                                    <li><a href="http://www.thesaurus.com/browse/corpulent" data-id="27" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="3"><span class="text">corpulent</span><span class="star inactive">star</span></a></li>
1181  
                                                                    <li><a href="http://www.thesaurus.com/browse/dumpy" data-id="28" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="1"><span class="text">dumpy</span><span class="star inactive">star</span></a></li>
1182  
                                                                    <li><a href="http://www.thesaurus.com/browse/elephantine" data-id="29" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">elephantine</span><span class="star inactive">star</span></a></li>
1183  
                                                                    <li><a href="http://www.thesaurus.com/browse/fleshy" data-id="30" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="1" data-length="2"><span class="text">fleshy</span><span class="star inactive">star</span></a></li>
1184  
                                                                    <li><a href="http://www.thesaurus.com/browse/gargantuan" data-id="31" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">gargantuan</span><span class="star inactive">star</span></a></li>
1185  
                                                                    <li><a href="http://www.thesaurus.com/browse/ponderous" data-id="32" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="3"><span class="text">ponderous</span><span class="star inactive">star</span></a></li>
1186  
                                                                    <li><a href="http://www.thesaurus.com/browse/porcine" data-id="33" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">porcine</span><span class="star inactive">star</span></a></li>
1187  
                                                                    <li><a href="http://www.thesaurus.com/browse/portly" data-id="34" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">portly</span><span class="star inactive">star</span></a></li>
1188  
                                                                    <li><a href="http://www.thesaurus.com/browse/pudgy" data-id="35" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="1"><span class="text">pudgy</span><span class="star inactive">star</span></a></li>
1189  
                                                                    <li><a href="http://www.thesaurus.com/browse/rotund" data-id="36" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">rotund</span><span class="star inactive">star</span></a></li>
1190  
                                                            </ul>
1191  
                         
1192  
                            <ul>
1193  
                                                                    <li><a href="http://www.thesaurus.com/browse/weighty" data-id="37" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">weighty</span><span class="star inactive">star</span></a></li>
1194  
                                                                    <li><a href="http://www.thesaurus.com/browse/heavyset" data-id="38" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="2"><span class="text">heavyset</span><span class="star inactive">star</span></a></li>
1195  
                                                                    <li><a href="http://www.thesaurus.com/browse/plumpish" data-id="39" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="2"><span class="text">plumpish</span><span class="star inactive">star</span></a></li>
1196  
                                                                    <li><a href="http://www.thesaurus.com/browse/thickset" data-id="40" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="2"><span class="text">thickset</span><span class="star inactive">star</span></a></li>
1197  
                                                                    <li><a href="http://www.thesaurus.com/browse/butterball" data-id="41" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="3"><span class="text">butterball</span><span class="star inactive">star</span></a></li>
1198  
                                                                    <li><a href="http://www.thesaurus.com/browse/jelly-belly" data-id="42" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">jelly-belly</span><span class="star inactive">star</span></a></li>
1199  
                                                                    <li><a href="http://www.thesaurus.com/browse/oversize" data-id="43" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">oversize</span><span class="star inactive">star</span></a></li>
1200  
                                                                    <li><a href="http://www.thesaurus.com/browse/paunchy" data-id="44" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">paunchy</span><span class="star inactive">star</span></a></li>
1201  
                                                                    <li><a href="http://www.thesaurus.com/browse/potbellied" data-id="45" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">potbellied</span><span class="star inactive">star</span></a></li>
1202  
                                                                    <li><a href="http://www.thesaurus.com/browse/whalelike" data-id="46" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">whalelike</span><span class="star inactive">star</span></a></li>
1203  
                                                            </ul>
1204  
                                            </div>
1205  
                </div>
1206  
            </div>
1207  
            <div id="filter-0"></div>
1208  
                        <div class="editorial-content-feed"></div>
1209  
                                    <section class="container-info antonyms" >
1210  
                <div class="heading-row">
1211  
                    <h2>Antonyms <span>for fat</span></h2>
1212  
                </div>
1213  
                <div class="list-holder">
1214  
                                                                <ul class="list">
1215  
                                                            <li><a href="http://www.thesaurus.com/browse/miniature" data-id="46" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="2" data-length="2"><span class="text">miniature</span></a></li>
1216  
                                                            <li><a href="http://www.thesaurus.com/browse/tiny" class="common-word" data-id="47" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="2" data-length="1"><span class="text">tiny</span></a></li>
1217  
                                                            <li><a href="http://www.thesaurus.com/browse/skinny" data-id="48" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="2" data-length="1"><span class="text">skinny</span></a></li>
1218  
                                                            <li><a href="http://www.thesaurus.com/browse/unimportant" data-id="49" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="3" data-length="3"><span class="text">unimportant</span></a></li>
1219  
                                                            <li><a href="http://www.thesaurus.com/browse/insignificant" data-id="50" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="3" data-length="3"><span class="text">insignificant</span></a></li>
1220  
                                                            <li><a href="http://www.thesaurus.com/browse/slender" data-id="51" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">slender</span></a></li>
1221  
                                                    </ul>
1222  
                                            <ul class="list">
1223  
                                                            <li><a href="http://www.thesaurus.com/browse/lean" class="common-word" data-id="52" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">lean</span></a></li>
1224  
                                                            <li><a href="http://www.thesaurus.com/browse/impoverished" data-id="53" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="3"><span class="text">impoverished</span></a></li>
1225  
                                                            <li><a href="http://www.thesaurus.com/browse/unproductive" data-id="54" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="3" data-length="3"><span class="text">unproductive</span></a></li>
1226  
                                                            <li><a href="http://www.thesaurus.com/browse/small" class="common-word" data-id="55" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="1" data-length="1"><span class="text">small</span></a></li>
1227  
                                                            <li><a href="http://www.thesaurus.com/browse/thin" class="common-word" data-id="56" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="1" data-length="1"><span class="text">thin</span></a></li>
1228  
                                                            <li><a href="http://www.thesaurus.com/browse/slight" class="common-word" data-id="57" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="1" data-length="1"><span class="text">slight</span></a></li>
1229  
                                                    </ul>
1230  
                                            <ul class="list">
1231  
                                                            <li><a href="http://www.thesaurus.com/browse/little" class="common-word" data-id="58" data-category="{&quot;name&quot;: &quot;relevant--3&quot;, &quot;color&quot;: &quot;#c7c8ca&quot;}" data-complexity="1" data-length="1"><span class="text">little</span></a></li>
1232  
                                                            <li><a href="http://www.thesaurus.com/browse/soft" class="common-word" data-id="59" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="1" data-length="1"><span class="text">soft</span></a></li>
1233  
                                                            <li><a href="http://www.thesaurus.com/browse/slim" data-id="60" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="1"><span class="text">slim</span></a></li>
1234  
                                                            <li><a href="http://www.thesaurus.com/browse/poor" class="common-word" data-id="61" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">poor</span></a></li>
1235  
                                                    </ul>
1236  
                                    </div>
1237  
                <div class="citation">
1238  
                    <div>
1239  
                        Roget's 21st Century Thesaurus, Third Edition Copyright © 2013 by the Philip Lief Group.
1240  
                    </div>
1241  
                    <a class="underline" href="http://www.thesaurus.com/cite.html?qh=fat&ia=lexrog">Cite This Source</a>
1242  
                </div>
1243  
            </section>
1244  
                                </div>
1245  
            <div id="synonyms-1" class="synonyms">
1246  
            <div class="heading-row synonyms-heading">
1247  
                <em class="txt">adj</em>
1248  
                <strong class="ttl">containing an oily substance</strong>
1249  
            </div>
1250  
            <div class="filters" id="filters-1">
1251  
                <div class="heading-row">
1252  
                    <h2>
1253  
                        Synonyms                     </h2>
1254  
                </div>
1255  
                <div class="synonym-description">
1256  
                    <em class="txt">adj</em>
1257  
                    <strong class="ttl">containing an oily substance</strong>
1258  
                </div>
1259  
                <div class="relevancy-block">
1260  
                    <div class="relevancy-list">
1261  
                                                                         
1262  
                            <ul>
1263  
                                                                    <li><a href="http://www.thesaurus.com/browse/fatty" data-id="1" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">fatty</span><span class="star inactive">star</span></a></li>
1264  
                                                                    <li><a href="http://www.thesaurus.com/browse/greasy" data-id="2" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">greasy</span><span class="star inactive">star</span></a></li>
1265  
                                                            </ul>
1266  
                         
1267  
                            <ul>
1268  
                                                                    <li><a href="http://www.thesaurus.com/browse/unctuous" data-id="3" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="1" data-length="2"><span class="text">unctuous</span><span class="star inactive">star</span></a></li>
1269  
                                                                    <li><a href="http://www.thesaurus.com/browse/adipose" data-id="4" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="2"><span class="text">adipose</span><span class="star inactive">star</span></a></li>
1270  
                                                            </ul>
1271  
                         
1272  
                            <ul>
1273  
                                                                    <li><a href="http://www.thesaurus.com/browse/oleaginous" data-id="5" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">oleaginous</span><span class="star inactive">star</span></a></li>
1274  
                                                                    <li><a href="http://www.thesaurus.com/browse/fatlike" data-id="6" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="2"><span class="text">fatlike</span><span class="star inactive">star</span></a></li>
1275  
                                                            </ul>
1276  
                         
1277  
                            <ul>
1278  
                                                                    <li><a href="http://www.thesaurus.com/browse/suety" data-id="7" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="1"><span class="text">suety</span><span class="star inactive">star</span></a></li>
1279  
                                                            </ul>
1280  
                                            </div>
1281  
                </div>
1282  
            </div>
1283  
            <div id="filter-1"></div>
1284  
                        <div class="editorial-content-feed"></div>
1285  
                                    <section class="container-info antonyms" >
1286  
                <div class="heading-row">
1287  
                    <h2>Antonyms </h2>
1288  
                </div>
1289  
                <div class="list-holder">
1290  
                                                                <ul class="list">
1291  
                                                            <li><a href="http://www.thesaurus.com/browse/skinny" data-id="7" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="1"><span class="text">skinny</span></a></li>
1292  
                                                            <li><a href="http://www.thesaurus.com/browse/slender" data-id="8" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="2"><span class="text">slender</span></a></li>
1293  
                                                            <li><a href="http://www.thesaurus.com/browse/lean" class="common-word" data-id="9" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">lean</span></a></li>
1294  
                                                    </ul>
1295  
                                            <ul class="list">
1296  
                                                            <li><a href="http://www.thesaurus.com/browse/impoverished" data-id="10" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="3"><span class="text">impoverished</span></a></li>
1297  
                                                            <li><a href="http://www.thesaurus.com/browse/unproductive" data-id="11" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="3" data-length="3"><span class="text">unproductive</span></a></li>
1298  
                                                            <li><a href="http://www.thesaurus.com/browse/slight" class="common-word" data-id="12" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">slight</span></a></li>
1299  
                                                    </ul>
1300  
                                            <ul class="list">
1301  
                                                            <li><a href="http://www.thesaurus.com/browse/slim" data-id="13" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="1"><span class="text">slim</span></a></li>
1302  
                                                            <li><a href="http://www.thesaurus.com/browse/thin" class="common-word" data-id="14" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">thin</span></a></li>
1303  
                                                            <li><a href="http://www.thesaurus.com/browse/poor" class="common-word" data-id="15" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">poor</span></a></li>
1304  
                                                    </ul>
1305  
                                    </div>
1306  
                <div class="citation">
1307  
                    <div>
1308  
                        Roget's 21st Century Thesaurus, Third Edition Copyright © 2013 by the Philip Lief Group.
1309  
                    </div>
1310  
                    <a class="underline" href="http://www.thesaurus.com/cite.html?qh=fat&ia=lexrog">Cite This Source</a>
1311  
                </div>
1312  
            </section>
1313  
                                </div>
1314  
            <div id="synonyms-2" class="synonyms">
1315  
            <div class="heading-row synonyms-heading">
1316  
                <em class="txt">adj</em>
1317  
                <strong class="ttl">productive, rich</strong>
1318  
            </div>
1319  
            <div class="filters" id="filters-2">
1320  
                <div class="heading-row">
1321  
                    <h2>
1322  
                        Synonyms                     </h2>
1323  
                </div>
1324  
                <div class="synonym-description">
1325  
                    <em class="txt">adj</em>
1326  
                    <strong class="ttl">productive, rich</strong>
1327  
                </div>
1328  
                <div class="relevancy-block">
1329  
                    <div class="relevancy-list">
1330  
                                                                         
1331  
                            <ul>
1332  
                                                                    <li><a href="http://www.thesaurus.com/browse/lucrative" data-id="1" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="3" data-length="2"><span class="text">lucrative</span><span class="star inactive">star</span></a></li>
1333  
                                                                    <li><a href="http://www.thesaurus.com/browse/flourishing" data-id="2" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="3"><span class="text">flourishing</span><span class="star inactive">star</span></a></li>
1334  
                                                                    <li><a href="http://www.thesaurus.com/browse/thriving" class="common-word" data-id="3" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="2"><span class="text">thriving</span><span class="star inactive">star</span></a></li>
1335  
                                                            </ul>
1336  
                         
1337  
                            <ul>
1338  
                                                                    <li><a href="http://www.thesaurus.com/browse/good" class="common-word" data-id="4" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">good</span><span class="star inactive">star</span></a></li>
1339  
                                                                    <li><a href="http://www.thesaurus.com/browse/lush" data-id="5" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">lush</span><span class="star inactive">star</span></a></li>
1340  
                                                                    <li><a href="http://www.thesaurus.com/browse/affluent" data-id="6" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="2"><span class="text">affluent</span><span class="star inactive">star</span></a></li>
1341  
                                                            </ul>
1342  
                         
1343  
                            <ul>
1344  
                                                                    <li><a href="http://www.thesaurus.com/browse/cushy" data-id="7" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="1"><span class="text">cushy</span><span class="star inactive">star</span></a></li>
1345  
                                                                    <li><a href="http://www.thesaurus.com/browse/fertile" data-id="8" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="1" data-length="2"><span class="text">fertile</span><span class="star inactive">star</span></a></li>
1346  
                                                                    <li><a href="http://www.thesaurus.com/browse/fruitful" data-id="9" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="2"><span class="text">fruitful</span><span class="star inactive">star</span></a></li>
1347  
                                                            </ul>
1348  
                         
1349  
                            <ul>
1350  
                                                                    <li><a href="http://www.thesaurus.com/browse/profitable" data-id="10" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">profitable</span><span class="star inactive">star</span></a></li>
1351  
                                                                    <li><a href="http://www.thesaurus.com/browse/prosperous" data-id="11" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="2" data-length="3"><span class="text">prosperous</span><span class="star inactive">star</span></a></li>
1352  
                                                                    <li><a href="http://www.thesaurus.com/browse/remunerative" data-id="12" data-category="{&quot;name&quot;: &quot;relevant-1&quot;, &quot;color&quot;: &quot;#fce8c4&quot;}" data-complexity="3" data-length="3"><span class="text">remunerative</span><span class="star inactive">star</span></a></li>
1353  
                                                            </ul>
1354  
                                            </div>
1355  
                </div>
1356  
            </div>
1357  
            <div id="filter-2"></div>
1358  
                        <div class="editorial-content-feed"></div>
1359  
                                    <section class="container-info antonyms" >
1360  
                <div class="heading-row">
1361  
                    <h2>Antonyms </h2>
1362  
                </div>
1363  
                <div class="list-holder">
1364  
                                                                <ul class="list">
1365  
                                                            <li><a href="http://www.thesaurus.com/browse/failing" class="common-word" data-id="12" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="2" data-length="2"><span class="text">failing</span></a></li>
1366  
                                                            <li><a href="http://www.thesaurus.com/browse/skinny" data-id="13" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="1"><span class="text">skinny</span></a></li>
1367  
                                                            <li><a href="http://www.thesaurus.com/browse/slender" data-id="14" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="2"><span class="text">slender</span></a></li>
1368  
                                                            <li><a href="http://www.thesaurus.com/browse/lean" class="common-word" data-id="15" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">lean</span></a></li>
1369  
                                                    </ul>
1370  
                                            <ul class="list">
1371  
                                                            <li><a href="http://www.thesaurus.com/browse/impoverished" data-id="16" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="3"><span class="text">impoverished</span></a></li>
1372  
                                                            <li><a href="http://www.thesaurus.com/browse/unproductive" data-id="17" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="3" data-length="3"><span class="text">unproductive</span></a></li>
1373  
                                                            <li><a href="http://www.thesaurus.com/browse/languishing" data-id="18" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="2" data-length="3"><span class="text">languishing</span></a></li>
1374  
                                                            <li><a href="http://www.thesaurus.com/browse/slight" class="common-word" data-id="19" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">slight</span></a></li>
1375  
                                                    </ul>
1376  
                                            <ul class="list">
1377  
                                                            <li><a href="http://www.thesaurus.com/browse/slim" data-id="20" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="2" data-length="1"><span class="text">slim</span></a></li>
1378  
                                                            <li><a href="http://www.thesaurus.com/browse/thin" class="common-word" data-id="21" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">thin</span></a></li>
1379  
                                                            <li><a href="http://www.thesaurus.com/browse/poor" class="common-word" data-id="22" data-category="{&quot;name&quot;: &quot;relevant--1&quot;, &quot;color&quot;: &quot;#f1f2f2&quot;}" data-complexity="1" data-length="1"><span class="text">poor</span></a></li>
1380  
                                                    </ul>
1381  
                                    </div>
1382  
                <div class="citation">
1383  
                    <div>
1384  
                        Roget's 21st Century Thesaurus, Third Edition Copyright © 2013 by the Philip Lief Group.
1385  
                    </div>
1386  
                    <a class="underline" href="http://www.thesaurus.com/cite.html?qh=fat&ia=lexrog">Cite This Source</a>
1387  
                </div>
1388  
            </section>
1389  
                                </div>
1390  
            <div id="synonyms-3" class="synonyms">
1391  
            <div class="heading-row synonyms-heading">
1392  
                <em class="txt">noun</em>
1393  
                <strong class="ttl">overweight, adipose tissue</strong>
1394  
            </div>
1395  
            <div class="filters" id="filters-3">
1396  
                <div class="heading-row">
1397  
                    <h2>
1398  
                        Synonyms                     </h2>
1399  
                </div>
1400  
                <div class="synonym-description">
1401  
                    <em class="txt">noun</em>
1402  
                    <strong class="ttl">overweight, adipose tissue</strong>
1403  
                </div>
1404  
                <div class="relevancy-block">
1405  
                    <div class="relevancy-list">
1406  
                                                                         
1407  
                            <ul>
1408  
                                                                    <li><a href="http://www.thesaurus.com/browse/flesh" class="common-word" data-id="1" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">flesh</span><span class="star inactive">star</span></a></li>
1409  
                                                                    <li><a href="http://www.thesaurus.com/browse/grease" data-id="2" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">grease</span><span class="star inactive">star</span></a></li>
1410  
                                                                    <li><a href="http://www.thesaurus.com/browse/lard" data-id="3" data-category="{&quot;name&quot;: &quot;relevant-3&quot;, &quot;color&quot;: &quot;#fcbb45&quot;}" data-complexity="1" data-length="1"><span class="text">lard</span><span class="star inactive">star</span></a></li>
1411  
                                                                    <li><a href="http://www.thesaurus.com/browse/surplus" data-id="4" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">surplus</span><span class="star inactive">star</span></a></li>
1412  
                                                                    <li><a href="http://www.thesaurus.com/browse/overabundance" data-id="5" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="3"><span class="text">overabundance</span><span class="star inactive">star</span></a></li>
1413  
                                                            </ul>
1414  
                         
1415  
                            <ul>
1416  
                                                                    <li><a href="http://www.thesaurus.com/browse/plethora" data-id="6" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="2"><span class="text">plethora</span><span class="star inactive">star</span></a></li>
1417  
                                                                    <li><a href="http://www.thesaurus.com/browse/paunch" data-id="7" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">paunch</span><span class="star inactive">star</span></a></li>
1418  
                                                                    <li><a href="http://www.thesaurus.com/browse/fatness" data-id="8" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">fatness</span><span class="star inactive">star</span></a></li>
1419  
                                                                    <li><a href="http://www.thesaurus.com/browse/bulk" class="common-word" data-id="9" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">bulk</span><span class="star inactive">star</span></a></li>
1420  
                                                                    <li><a href="http://www.thesaurus.com/browse/superfluity" data-id="10" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="3"><span class="text">superfluity</span><span class="star inactive">star</span></a></li>
1421  
                                                            </ul>
1422  
                         
1423  
                            <ul>
1424  
                                                                    <li><a href="http://www.thesaurus.com/browse/tallow" data-id="11" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">tallow</span><span class="star inactive">star</span></a></li>
1425  
                                                                    <li><a href="http://www.thesaurus.com/browse/corpulence" data-id="12" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="2"><span class="text">corpulence</span><span class="star inactive">star</span></a></li>
1426  
                                                                    <li><a href="http://www.thesaurus.com/browse/blubber" data-id="13" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">blubber</span><span class="star inactive">star</span></a></li>
1427  
                                                                    <li><a href="http://www.thesaurus.com/browse/obesity" data-id="14" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="1"><span class="text">obesity</span><span class="star inactive">star</span></a></li>
1428  
                                                                    <li><a href="http://www.thesaurus.com/browse/overflow" data-id="15" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="2"><span class="text">overflow</span><span class="star inactive">star</span></a></li>
1429  
                                                            </ul>
1430  
                         
1431  
                            <ul>
1432  
                                                                    <li><a href="http://www.thesaurus.com/browse/excess" data-id="16" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="1" data-length="1"><span class="text">excess</span><span class="star inactive">star</span></a></li>
1433  
                                                                    <li><a href="http://www.thesaurus.com/browse/surfeit" data-id="17" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">surfeit</span><span class="star inactive">star</span></a></li>
1434  
                                                                    <li><a href="http://www.thesaurus.com/browse/suet" data-id="18" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">suet</span><span class="star inactive">star</span></a></li>
1435  
                                                                    <li><a href="http://www.thesaurus.com/browse/flab" data-id="19" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="2" data-length="1"><span class="text">flab</span><span class="star inactive">star</span></a></li>
1436  
                                                                    <li><a href="http://www.thesaurus.com/browse/cellulite" data-id="20" data-category="{&quot;name&quot;: &quot;relevant-2&quot;, &quot;color&quot;: &quot;#fbd48e&quot;}" data-complexity="3" data-length="2"><span class="text">cellulite</span><span class="star inactive">star</span></a></li>
1437  
                                                            </ul>
1438  
                                            </div>
1439  
                </div>
1440  
            </div>
1441  
            <div id="filter-3"></div>
1442  
                        <div class="editorial-content-feed"></div>
1443  
                                    <section class="container-info antonyms" >
1444  
                <div class="heading-row">
1445  
                    <h2>Antonyms </h2>
1446  
                </div>
1447  
                <div class="list-holder">
1448  
                                                                <ul class="list">
1449  
                                                            <li><a href="http://www.thesaurus.com/browse/lack" class="common-word" data-id="20" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="1" data-length="1"><span class="text">lack</span></a></li>
1450  
                                                            <li><a href="http://www.thesaurus.com/browse/necessity" class="common-word" data-id="21" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="2" data-length="3"><span class="text">necessity</span></a></li>
1451  
                                                    </ul>
1452  
                                            <ul class="list">
1453  
                                                            <li><a href="http://www.thesaurus.com/browse/scarcity" data-id="22" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="3" data-length="3"><span class="text">scarcity</span></a></li>
1454  
                                                            <li><a href="http://www.thesaurus.com/browse/need" class="common-word" data-id="23" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="1" data-length="1"><span class="text">need</span></a></li>
1455  
                                                    </ul>
1456  
                                            <ul class="list">
1457  
                                                            <li><a href="http://www.thesaurus.com/browse/want" class="common-word" data-id="24" data-category="{&quot;name&quot;: &quot;relevant--2&quot;, &quot;color&quot;: &quot;#e6e7e8&quot;}" data-complexity="1" data-length="1"><span class="text">want</span></a></li>
1458  
                                                    </ul>
1459  
                                    </div>
1460  
                <div class="citation">
1461  
                    <div>
1462  
                        Roget's 21st Century Thesaurus, Third Edition Copyright © 2013 by the Philip Lief Group.
1463  
                    </div>
1464  
                    <a class="underline" href="http://www.thesaurus.com/cite.html?qh=fat&ia=lexrog">Cite This Source</a>
1465  
                </div>
1466  
            </section>
1467  
                                </div>
1468  
    </div>
1469  
<!-- google_ad_section_end(name=maincontent) -->
1470  
<script type="text/javascript">
1471  
    var synonyms = document.getElementsByClassName('synonyms');
1472  
    for (var i in synonyms) {
1473  
        if ( i > 0) {
1474  
            synonyms[i].style.display = "none";
1475  
        }
1476  
    }
1477  
</script>
1478  
            <div class="survey"  data-imp="4b238x">
1479  
        <a href="http://www.dictionary.com/e/s/y-e-s-words-acronyms/?src=tcom-serp-tab"  class="link"  target="_blank" data-linkid="4b238x" >These Words Are Acronyms</a>    </div>
1480  
                
1481  
                
1482  
            </div>
1483  
    
1484  
</div>
1485  
<div id="synonym_of_synonyms_0" class="box syn_of_syns oneClick-area">
1486  
    <div class="box-content-holder">
1487  
        <h2 class="oneClick-disabled">More words related to <strong>fat</strong></h2>
1488  
        <div  data-linkid='nn1ov4' data-ordinal='1' >
1489  
    <div class="subtitle">
1490  
        <a href="http://www.thesaurus.com/browse/best">best<a/>    </div>
1491  
    <div class="def">noun. most outstanding thing in class</div>
1492  
        <ul>
1493  
                    <li><a href="http://www.thesaurus.com/browse/choice" class="syn_of_syns">choice</a></li>
1494  
                    <li><a href="http://www.thesaurus.com/browse/cream" class="syn_of_syns">cream</a></li>
1495  
                    <li><a href="http://www.thesaurus.com/browse/cream%20of%20the%20crop" class="syn_of_syns">cream of the crop</a></li>
1496  
                    <li><a href="http://www.thesaurus.com/browse/elite" class="syn_of_syns">elite</a></li>
1497  
            </ul>
1498  
        <ul>
1499  
                    <li><a href="http://www.thesaurus.com/browse/fat" class="syn_of_syns">fat</a></li>
1500  
                    <li><a href="http://www.thesaurus.com/browse/favorite" class="syn_of_syns">favorite</a></li>
1501  
                    <li><a href="http://www.thesaurus.com/browse/finest" class="syn_of_syns">finest</a></li>
1502  
                    <li><a href="http://www.thesaurus.com/browse/first" class="syn_of_syns">first</a></li>
1503  
            </ul>
1504  
        <ul>
1505  
                    <li><a href="http://www.thesaurus.com/browse/flower" class="syn_of_syns">flower</a></li>
1506  
                    <li><a href="http://www.thesaurus.com/browse/gem" class="syn_of_syns">gem</a></li>
1507  
                    <li><a href="http://www.thesaurus.com/browse/model" class="syn_of_syns">model</a></li>
1508  
                    <li><a href="http://www.thesaurus.com/browse/nonpareil" class="syn_of_syns">nonpareil</a></li>
1509  
            </ul>
1510  
        <ul>
1511  
                    <li><a href="http://www.thesaurus.com/browse/paragon" class="syn_of_syns">paragon</a></li>
1512  
                    <li><a href="http://www.thesaurus.com/browse/pick" class="syn_of_syns">pick</a></li>
1513  
                    <li><a href="http://www.thesaurus.com/browse/prime" class="syn_of_syns">prime</a></li>
1514  
                    <li><a href="http://www.thesaurus.com/browse/prize" class="syn_of_syns">prize</a></li>
1515  
            </ul>
1516  
        <ul>
1517  
                    <li><a href="http://www.thesaurus.com/browse/select" class="syn_of_syns">select</a></li>
1518  
                    <li><a href="http://www.thesaurus.com/browse/top" class="syn_of_syns">top</a></li>
1519  
            </ul>
1520  
        <div class="link">
1521  
    </div>
1522  
</div>
1523  
    </div>
1524  
</div>
1525  
<div id="synonym_of_synonyms_1" class="box syn_of_syns oneClick-area">
1526  
    <div class="box-content-holder">
1527  
        <h2 class="oneClick-disabled"></h2>
1528  
        <div  data-linkid='nn1ov4' data-ordinal='1' >
1529  
    <div class="subtitle">
1530  
        <a href="http://www.thesaurus.com/browse/big">big<a/>    </div>
1531  
    <div class="def">adj. large, great</div>
1532  
        <ul>
1533  
                    <li><a href="http://www.thesaurus.com/browse/a%20whale%20of%20a" class="syn_of_syns">a whale of a</a></li>
1534  
                    <li><a href="http://www.thesaurus.com/browse/ample" class="syn_of_syns">ample</a></li>
1535  
                    <li><a href="http://www.thesaurus.com/browse/awash" class="syn_of_syns">awash</a></li>
1536  
                    <li><a href="http://www.thesaurus.com/browse/brimming" class="syn_of_syns">brimming</a></li>
1537  
                    <li><a href="http://www.thesaurus.com/browse/bulky" class="syn_of_syns">bulky</a></li>
1538  
                    <li><a href="http://www.thesaurus.com/browse/bull" class="syn_of_syns">bull</a></li>
1539  
                    <li><a href="http://www.thesaurus.com/browse/burly" class="syn_of_syns">burly</a></li>
1540  
                    <li><a href="http://www.thesaurus.com/browse/capacious" class="syn_of_syns">capacious</a></li>
1541  
                    <li><a href="http://www.thesaurus.com/browse/chock-full" class="syn_of_syns">chock-full</a></li>
1542  
                    <li><a href="http://www.thesaurus.com/browse/colossal" class="syn_of_syns">colossal</a></li>
1543  
            </ul>
1544  
        <ul>
1545  
                    <li><a href="http://www.thesaurus.com/browse/commodious" class="syn_of_syns">commodious</a></li>
1546  
                    <li><a href="http://www.thesaurus.com/browse/considerable" class="syn_of_syns">considerable</a></li>
1547  
                    <li><a href="http://www.thesaurus.com/browse/copious" class="syn_of_syns">copious</a></li>
1548  
                    <li><a href="http://www.thesaurus.com/browse/crowded" class="syn_of_syns">crowded</a></li>
1549  
                    <li><a href="http://www.thesaurus.com/browse/enormous" class="syn_of_syns">enormous</a></li>
1550  
                    <li><a href="http://www.thesaurus.com/browse/extensive" class="syn_of_syns">extensive</a></li>
1551  
                    <li><a href="http://www.thesaurus.com/browse/fat" class="syn_of_syns">fat</a></li>
1552  
                    <li><a href="http://www.thesaurus.com/browse/full" class="syn_of_syns">full</a></li>
1553  
                    <li><a href="http://www.thesaurus.com/browse/gigantic" class="syn_of_syns">gigantic</a></li>
1554  
                    <li><a href="http://www.thesaurus.com/browse/heavy-duty" class="syn_of_syns">heavy-duty</a></li>
1555  
            </ul>
1556  
        <ul>
1557  
                    <li><a href="http://www.thesaurus.com/browse/heavyweight" class="syn_of_syns">heavyweight</a></li>
1558  
                    <li><a href="http://www.thesaurus.com/browse/hefty" class="syn_of_syns">hefty</a></li>
1559  
                    <li><a href="http://www.thesaurus.com/browse/huge" class="syn_of_syns">huge</a></li>
1560  
                    <li><a href="http://www.thesaurus.com/browse/hulking" class="syn_of_syns">hulking</a></li>
1561  
                    <li><a href="http://www.thesaurus.com/browse/humongous" class="syn_of_syns">humongous</a></li>
1562  
                    <li><a href="http://www.thesaurus.com/browse/husky" class="syn_of_syns">husky</a></li>
1563  
                    <li><a href="http://www.thesaurus.com/browse/immense" class="syn_of_syns">immense</a></li>
1564  
                    <li><a href="http://www.thesaurus.com/browse/jumbo" class="syn_of_syns">jumbo</a></li>
1565  
                    <li><a href="http://www.thesaurus.com/browse/mammoth" class="syn_of_syns">mammoth</a></li>
1566  
                    <li><a href="http://www.thesaurus.com/browse/massive" class="syn_of_syns">massive</a></li>
1567  
            </ul>
1568  
        <ul>
1569  
                    <li><a href="http://www.thesaurus.com/browse/mondo" class="syn_of_syns">mondo</a></li>
1570  
                    <li><a href="http://www.thesaurus.com/browse/monster" class="syn_of_syns">monster</a></li>
1571  
                    <li><a href="http://www.thesaurus.com/browse/oversize" class="syn_of_syns">oversize</a></li>
1572  
                    <li><a href="http://www.thesaurus.com/browse/packed" class="syn_of_syns">packed</a></li>
1573  
                    <li><a href="http://www.thesaurus.com/browse/ponderous" class="syn_of_syns">ponderous</a></li>
1574  
                    <li><a href="http://www.thesaurus.com/browse/prodigious" class="syn_of_syns">prodigious</a></li>
1575  
                    <li><a href="http://www.thesaurus.com/browse/roomy" class="syn_of_syns">roomy</a></li>
1576  
                    <li><a href="http://www.thesaurus.com/browse/sizable" class="syn_of_syns">sizable</a></li>
1577  
                    <li><a href="http://www.thesaurus.com/browse/spacious" class="syn_of_syns">spacious</a></li>
1578  
                    <li><a href="http://www.thesaurus.com/browse/strapping" class="syn_of_syns">strapping</a></li>
1579  
            </ul>
1580  
        <ul>
1581  
                    <li><a href="http://www.thesaurus.com/browse/stuffed" class="syn_of_syns">stuffed</a></li>
1582  
                    <li><a href="http://www.thesaurus.com/browse/substantial" class="syn_of_syns">substantial</a></li>
1583  
                    <li><a href="http://www.thesaurus.com/browse/super%20colossal" class="syn_of_syns">super colossal</a></li>
1584  
                    <li><a href="http://www.thesaurus.com/browse/thundering" class="syn_of_syns">thundering</a></li>
1585  
                    <li><a href="http://www.thesaurus.com/browse/tremendous" class="syn_of_syns">tremendous</a></li>
1586  
                    <li><a href="http://www.thesaurus.com/browse/vast" class="syn_of_syns">vast</a></li>
1587  
                    <li><a href="http://www.thesaurus.com/browse/voluminous" class="syn_of_syns">voluminous</a></li>
1588  
                    <li><a href="http://www.thesaurus.com/browse/walloping" class="syn_of_syns">walloping</a></li>
1589  
                    <li><a href="http://www.thesaurus.com/browse/whopper" class="syn_of_syns">whopper</a></li>
1590  
                    <li><a href="http://www.thesaurus.com/browse/whopping" class="syn_of_syns">whopping</a></li>
1591  
            </ul>
1592  
        <div class="link">
1593  
    </div>
1594  
</div>
1595  
    </div>
1596  
</div>
1597  
<div id="synonym_of_synonyms_2" class="box syn_of_syns oneClick-area">
1598  
    <div class="box-content-holder">
1599  
        <h2 class="oneClick-disabled"></h2>
1600  
        <div  data-linkid='nn1ov4' data-ordinal='1' >
1601  
    <div class="subtitle">
1602  
        <a href="http://www.thesaurus.com/browse/considerable">considerable<a/>    </div>
1603  
    <div class="def">adj. important</div>
1604  
        <ul>
1605  
                    <li><a href="http://www.thesaurus.com/browse/big" class="syn_of_syns">big</a></li>
1606  
                    <li><a href="http://www.thesaurus.com/browse/consequential" class="syn_of_syns">consequential</a></li>
1607  
                    <li><a href="http://www.thesaurus.com/browse/distinguished" class="syn_of_syns">distinguished</a></li>
1608  
                    <li><a href="http://www.thesaurus.com/browse/doozie" class="syn_of_syns">doozie</a></li>
1609  
                    <li><a href="http://www.thesaurus.com/browse/dynamite" class="syn_of_syns">dynamite</a></li>
1610  
                    <li><a href="http://www.thesaurus.com/browse/essential" class="syn_of_syns">essential</a></li>
1611  
            </ul>
1612  
        <ul>
1613  
                    <li><a href="http://www.thesaurus.com/browse/fab" class="syn_of_syns">fab</a></li>
1614  
                    <li><a href="http://www.thesaurus.com/browse/fat" class="syn_of_syns">fat</a></li>
1615  
                    <li><a href="http://www.thesaurus.com/browse/influential" class="syn_of_syns">influential</a></li>
1616  
                    <li><a href="http://www.thesaurus.com/browse/material" class="syn_of_syns">material</a></li>
1617  
                    <li><a href="http://www.thesaurus.com/browse/meaningful" class="syn_of_syns">meaningful</a></li>
1618  
                    <li><a href="http://www.thesaurus.com/browse/momentous" class="syn_of_syns">momentous</a></li>
1619  
            </ul>
1620  
        <ul>
1621  
                    <li><a href="http://www.thesaurus.com/browse/mondo" class="syn_of_syns">mondo</a></li>
1622  
                    <li><a href="http://www.thesaurus.com/browse/noteworthy" class="syn_of_syns">noteworthy</a></li>
1623  
                    <li><a href="http://www.thesaurus.com/browse/renowned" class="syn_of_syns">renowned</a></li>
1624  
                    <li><a href="http://www.thesaurus.com/browse/significant" class="syn_of_syns">significant</a></li>
1625  
                    <li><a href="http://www.thesaurus.com/browse/solid%20gold" class="syn_of_syns">solid gold</a></li>
1626  
                    <li><a href="http://www.thesaurus.com/browse/something" class="syn_of_syns">something</a></li>
1627  
            </ul>
1628  
        <ul>
1629  
                    <li><a href="http://www.thesaurus.com/browse/something%20else" class="syn_of_syns">something else</a></li>
1630  
                    <li><a href="http://www.thesaurus.com/browse/substantial" class="syn_of_syns">substantial</a></li>
1631  
                    <li><a href="http://www.thesaurus.com/browse/super" class="syn_of_syns">super</a></li>
1632  
                    <li><a href="http://www.thesaurus.com/browse/super-duper" class="syn_of_syns">super-duper</a></li>
1633  
                    <li><a href="http://www.thesaurus.com/browse/to%20the%20max" class="syn_of_syns">to the max</a></li>
1634  
                    <li><a href="http://www.thesaurus.com/browse/unreal" class="syn_of_syns">unreal</a></li>
1635  
            </ul>
1636  
        <ul>
1637  
                    <li><a href="http://www.thesaurus.com/browse/venerable" class="syn_of_syns">venerable</a></li>
1638  
                    <li><a href="http://www.thesaurus.com/browse/weighty" class="syn_of_syns">weighty</a></li>
1639  
            </ul>
1640  
        <div class="link">
1641  
    </div>
1642  
</div>
1643  
    </div>
1644  
</div>
1645  
<div id="synonym_of_synonyms_3" class="box syn_of_syns oneClick-area">
1646  
    <div class="box-content-holder">
1647  
        <h2 class="oneClick-disabled"></h2>
1648  
        <div  data-linkid='nn1ov4' data-ordinal='1' >
1649  
    <div class="subtitle">
1650  
        <a href="http://www.thesaurus.com/browse/corpulent">corpulent<a/>    </div>
1651  
    <div class="def">adj. fat, chubby</div>
1652  
        <ul>
1653  
                    <li><a href="http://www.thesaurus.com/browse/baby%20elephant" class="syn_of_syns">baby elephant</a></li>
1654  
                    <li><a href="http://www.thesaurus.com/browse/beefy" class="syn_of_syns">beefy</a></li>
1655  
                    <li><a href="http://www.thesaurus.com/browse/blimp" class="syn_of_syns">blimp</a></li>
1656  
                    <li><a href="http://www.thesaurus.com/browse/bulky" class="syn_of_syns">bulky</a></li>
1657  
                    <li><a href="http://www.thesaurus.com/browse/burly" class="syn_of_syns">burly</a></li>
1658  
                    <li><a href="http://www.thesaurus.com/browse/embonpoint" class="syn_of_syns">embonpoint</a></li>
1659  
            </ul>
1660  
        <ul>
1661  
                    <li><a href="http://www.thesaurus.com/browse/fat" class="syn_of_syns">fat</a></li>
1662  
                    <li><a href="http://www.thesaurus.com/browse/fleshy" class="syn_of_syns">fleshy</a></li>
1663  
                    <li><a href="http://www.thesaurus.com/browse/gross" class="syn_of_syns">gross</a></li>
1664  
                    <li><a href="http://www.thesaurus.com/browse/having%20a%20bay%20window" class="syn_of_syns">having a bay window</a></li>
1665  
                    <li><a href="http://www.thesaurus.com/browse/having%20a%20spare%20tire" class="syn_of_syns">having a spare tire</a></li>
1666  
                    <li><a href="http://www.thesaurus.com/browse/heavy" class="syn_of_syns">heavy</a></li>
1667  
            </ul>
1668  
        <ul>
1669  
                    <li><a href="http://www.thesaurus.com/browse/hefty" class="syn_of_syns">hefty</a></li>
1670  
                    <li><a href="http://www.thesaurus.com/browse/husky" class="syn_of_syns">husky</a></li>
1671  
                    <li><a href="http://www.thesaurus.com/browse/large" class="syn_of_syns">large</a></li>
1672  
                    <li><a href="http://www.thesaurus.com/browse/lusty" class="syn_of_syns">lusty</a></li>
1673  
                    <li><a href="http://www.thesaurus.com/browse/obese" class="syn_of_syns">obese</a></li>
1674  
                    <li><a href="http://www.thesaurus.com/browse/overblown" class="syn_of_syns">overblown</a></li>
1675  
            </ul>
1676  
        <ul>
1677  
                    <li><a href="http://www.thesaurus.com/browse/overweight" class="syn_of_syns">overweight</a></li>
1678  
                    <li><a href="http://www.thesaurus.com/browse/plump" class="syn_of_syns">plump</a></li>
1679  
                    <li><a href="http://www.thesaurus.com/browse/portly" class="syn_of_syns">portly</a></li>
1680  
                    <li><a href="http://www.thesaurus.com/browse/roly-poly" class="syn_of_syns">roly-poly</a></li>
1681  
                    <li><a href="http://www.thesaurus.com/browse/rotund" class="syn_of_syns">rotund</a></li>
1682  
                    <li><a href="http://www.thesaurus.com/browse/stout" class="syn_of_syns">stout</a></li>
1683  
            </ul>
1684  
        <ul>
1685  
                    <li><a href="http://www.thesaurus.com/browse/tubby" class="syn_of_syns">tubby</a></li>
1686  
                    <li><a href="http://www.thesaurus.com/browse/weighty" class="syn_of_syns">weighty</a></li>
1687  
                    <li><a href="http://www.thesaurus.com/browse/well-padded" class="syn_of_syns">well-padded</a></li>
1688  
            </ul>
1689  
        <div class="link">
1690  
    </div>
1691  
</div>
1692  
    </div>
1693  
</div>
1694  
<div id="synonym_of_synonyms_4" class="box syn_of_syns oneClick-area">
1695  
    <div class="box-content-holder">
1696  
        <h2 class="oneClick-disabled"></h2>
1697  
        <div  data-linkid='nn1ov4' data-ordinal='1' >
1698  
    <div class="subtitle">
1699  
        <a href="http://www.thesaurus.com/browse/cream">cream<a/>    </div>
1700  
    <div class="def">noun. the best</div>
1701  
        <ul>
1702  
                    <li><a href="http://www.thesaurus.com/browse/choice" class="syn_of_syns">choice</a></li>
1703  
                    <li><a href="http://www.thesaurus.com/browse/cr%C3%A8me%20de%20la%20cr%C3%A8me" class="syn_of_syns">crème de la crème</a></li>
1704  
                    <li><a href="http://www.thesaurus.com/browse/elite" class="syn_of_syns">elite</a></li>
1705  
            </ul>
1706  
        <ul>
1707  
                    <li><a href="http://www.thesaurus.com/browse/fat" class="syn_of_syns">fat</a></li>
1708  
                    <li><a href="http://www.thesaurus.com/browse/favorite" class="syn_of_syns">favorite</a></li>
1709  
                    <li><a href="http://www.thesaurus.com/browse/finest" class="syn_of_syns">finest</a></li>
1710  
            </ul>
1711  
        <ul>
1712  
                    <li><a href="http://www.thesaurus.com/browse/flower" class="syn_of_syns">flower</a></li>
1713  
                    <li><a href="http://www.thesaurus.com/browse/pick" class="syn_of_syns">pick</a></li>
1714  
                    <li><a href="http://www.thesaurus.com/browse/pride" class="syn_of_syns">pride</a></li>
1715  
            </ul>
1716  
        <ul>
1717  
                    <li><a href="http://www.thesaurus.com/browse/prime" class="syn_of_syns">prime</a></li>
1718  
                    <li><a href="http://www.thesaurus.com/browse/prize" class="syn_of_syns">prize</a></li>
1719  
                    <li><a href="http://www.thesaurus.com/browse/skim" class="syn_of_syns">skim</a></li>
1720  
            </ul>
1721  
        <ul>
1722  
                    <li><a href="http://www.thesaurus.com/browse/top" class="syn_of_syns">top</a></li>
1723  
            </ul>
1724  
        <div class="link">
1725  
    </div>
1726  
</div>
1727  
    </div>
1728  
</div>
1729  
<div id="synonym_of_synonyms_5" class="box syn_of_syns oneClick-area">
1730  
    <div class="box-content-holder">
1731  
        <h2 class="oneClick-disabled"></h2>
1732  
        <div  data-linkid='nn1ov4' data-ordinal='1' >
1733  
    <div class="subtitle">
1734  
        <a href="http://www.thesaurus.com/browse/dumpy">dumpy<a/>    </div>
1735  
    <div class="def">adj. short and stout</div>
1736  
        <ul>
1737  
                    <li><a href="http://www.thesaurus.com/browse/chubby" class="syn_of_syns">chubby</a></li>
1738  
                    <li><a href="http://www.thesaurus.com/browse/chunky" class="syn_of_syns">chunky</a></li>
1739  
                    <li><a href="http://www.thesaurus.com/browse/fat" class="syn_of_syns">fat</a></li>
1740  
            </ul>
1741  
        <ul>
1742  
                    <li><a href="http://www.thesaurus.com/browse/homely" class="syn_of_syns">homely</a></li>
1743  
                    <li><a href="http://www.thesaurus.com/browse/plump" class="syn_of_syns">plump</a></li>
1744  
                    <li><a href="http://www.thesaurus.com/browse/podgy" class="syn_of_syns">podgy</a></li>
1745  
            </ul>
1746  
        <ul>
1747  
                    <li><a href="http://www.thesaurus.com/browse/pudgy" class="syn_of_syns">pudgy</a></li>
1748  
                    <li><a href="http://www.thesaurus.com/browse/roly-poly" class="syn_of_syns">roly-poly</a></li>
1749  
                    <li><a href="http://www.thesaurus.com/browse/squat" class="syn_of_syns">squat</a></li>
1750  
            </ul>
1751  
        <ul>
1752  
                    <li><a href="http://www.thesaurus.com/browse/stocky" class="syn_of_syns">stocky</a></li>
1753  
                    <li><a href="http://www.thesaurus.com/browse/stumpy" class="syn_of_syns">stumpy</a></li>
1754  
                    <li><a href="http://www.thesaurus.com/browse/tubby" class="syn_of_syns">tubby</a></li>
1755  
            </ul>
1756  
        <div class="link">
1757  
    </div>
1758  
</div>
1759  
    </div>
1760  
</div>
1761  
    <div class="citation">
1762  
        <div>
1763  
            Roget's 21st Century Thesaurus, Third Edition Copyright © 2013 by the Philip Lief Group.
1764  
        </div>
1765  
        <a href="http://www.thesaurus.com/cite.html?qh=dumpy&ia=lexrog"  class="underline" data-linkid="xjkd2s" >Cite This Source</a>
1766  
    </div>
1767  
1768  
1769  
    <div id="paginator"  data-linkid='2b1bcp'>
1770  
                                                                <div class="active">
1771  
                        <a href="http://www.thesaurus.com/browse/fat/1">
1772  
                            1                        </a>
1773  
                    </div>
1774  
                                                                                    <div >
1775  
                        <a href="http://www.thesaurus.com/browse/fat/2">
1776  
                            2                        </a>
1777  
                    </div>
1778  
                                                                                    <div >
1779  
                        <a href="http://www.thesaurus.com/browse/fat/3">
1780  
                            3                        </a>
1781  
                    </div>
1782  
                                                                                    ...                                                                                    <div class="last">
1783  
                        <a href="http://www.thesaurus.com/browse/fat/6">
1784  
                            6                        </a>
1785  
                    </div>
1786  
                                                        <span>
1787  
                <a href="http://www.thesaurus.com/browse/fat/2">
1788  
                    NEXT
1789  
                </a>
1790  
            </span>
1791  
            </div>
1792  
    <div class="bottom-border">&nbsp</div>
1793  
1794  
<div class="ad">
1795  
    <div class="banner">
1796  
        <div id="thesaurus_serp_btf_2">
1797  
    <script type="text/javascript">
1798  
        if (typeof UserController !== "undefined" && !UserController.shouldDisplayAds()) {
1799  
            document.getElementById("thesaurus_serp_btf_2").parentNode.removeChild(document.getElementById(""));
1800  
        } else {
1801  
            adStatus.displayedSpots.push("thesaurus_serp_btf_2");
1802  
            googletag.cmd.push(function () {
1803  
                googletag.display("thesaurus_serp_btf_2");
1804  
            });
1805  
        }
1806  
    </script>
1807  
</div>    </div>
1808  
</div>
1809  
1810  
    </div>
1811  
    <div id="right-sidebar">
1812  
        <!-- sidebar -->
1813  
<aside id="sidebar" class="direct">
1814  
    
1815  
    <div class="content-block">
1816  
        <!-- ad -->
1817  
        <div class="ad">
1818  
            <div class="banner">
1819  
                <div id="thesaurus_serp_atf_300x250">
1820  
    <script type="text/javascript">
1821  
        if (typeof UserController !== "undefined" && !UserController.shouldDisplayAds()) {
1822  
            document.getElementById("thesaurus_serp_atf_300x250").parentNode.removeChild(document.getElementById(""));
1823  
        } else {
1824  
            adStatus.displayedSpots.push("thesaurus_serp_atf_300x250");
1825  
            googletag.cmd.push(function () {
1826  
                googletag.display("thesaurus_serp_atf_300x250");
1827  
            });
1828  
        }
1829  
    </script>
1830  
</div>            </div>
1831  
        </div>
1832  
                <script type="text/javascript">
1833  
            if (UserController.shouldDisplayAds()) {
1834  
                document.write('');
1835  
            }
1836  
        </script>
1837  
1838  
        
1839  
        <div class="empty-box" data-cts='{"linkId":"nn1ov4","infix":"","domain":"dictionary.com","clkpage":"the","clkmod":"1clk","clksite":"thes","clkld":0}' data-href='http://www.dictionary.com/browse/'>
1840  
        <div id="word-origin" class="box  oneClick-area">
1841  
    <div class="box-content-holder">
1842  
        <h2 class="oneClick-disabled">Word Origin & History</h2>
1843  
        <div>
1844  
<p>
1845  
fat O.E. f&aelig;tt, originally a contracted pp. of f&aelig;ttian "to cram, stuff," from P.Gmc. *faitaz "fat" (cf. O.N. feitr, Du. vet, Ger. feist), from PIE *poid- "to abound in water, milk, fat, etc." (cf. Gk. piduein "to gush forth"), from base *poi- "sap, juice" (cf. Skt. payate "swells, exuberates," Lith. pienas "milk," Gk. pion "fat, wealthy," L. pinguis "fat"). Fig. sense of "best or most rewarding part" is from 1570; teen slang meaning "attractive, up to date" (also later phat) is attested from 1951. Fat cat "privileged and rich person" is from 1928; fat chance "no chance at all" attested  <span class="hide" style="display: inline">...</span><span class="hide">from 1906. Fathead is from 1842; fat-witted is from 1596; fatso is first recorded 1944. </span></p>
1846  
</div>
1847  
<span class="link-row">
1848  
    <a class="more" href="#" onclick="return false">
1849  
        EXPAND
1850  
    </a>
1851  
</span>
1852  
    </div>
1853  
</div>
1854  
       </div>
1855  
        
1856  
        <div class="ad">
1857  
            <div class="banner">
1858  
                <div id="thesaurus_serp_btf_300x252">
1859  
    <script type="text/javascript">
1860  
        if (typeof UserController !== "undefined" && !UserController.shouldDisplayAds()) {
1861  
            document.getElementById("thesaurus_serp_btf_300x252").parentNode.removeChild(document.getElementById(""));
1862  
        } else {
1863  
            adStatus.displayedSpots.push("thesaurus_serp_btf_300x252");
1864  
            googletag.cmd.push(function () {
1865  
                googletag.display("thesaurus_serp_btf_300x252");
1866  
            });
1867  
        }
1868  
    </script>
1869  
</div>            </div>  
1870  
        </div>
1871  
        
1872  
        <div class="empty-box" data-cts='{"linkId":"ixxth0","infix":"","domain":"dictionary.com","clkpage":"the","clkmod":"1clkesp","clksite":"thes","clkld":0}' data-href='http://www.dictionary.com/browse/'>
1873  
        <div id="example-sentences" class="box  oneClick-area">
1874  
    <div class="box-content-holder">
1875  
        <h2 class="oneClick-disabled">Example Sentences <span>for fat</span></h2>
1876  
        <div>
1877  
    <p class="">
1878  
        There—do you see that <b>fat</b> man that's just going out—him as has got on the Indy 'ankycher?    </p>
1879  
    <p class="">
1880  
        The <b>fat</b> man from behind the register had come to take his order.    </p>
1881  
    <p class="">
1882  
        Strain the liquid from the veal and bones and remove the <b>fat</b>.    </p>
1883  
    <p class="">
1884  
        Give the proportions of <b>fat</b> and flour that may be used for pastry.    </p>
1885  
    <p class="hide">
1886  
        Remove the <b>fat</b> and serve some of the nicest joints with the soup.    </p>
1887  
    <p class="hide">
1888  
        Then wipe the meat carefully and brown it on all sides in the <b>fat</b>.    </p>
1889  
    <p class="hide">
1890  
        Remove from the <b>fat</b>, drain, and sprinkle with salt and pepper.    </p>
1891  
    <p class="hide">
1892  
        Hamlet lets out inadvertently that he was <b>fat</b>, but he will not say so openly.    </p>
1893  
    <p class="hide">
1894  
        He was older than I, but he was also <b>fat</b>, and for all his Shaman's dress I was not frightened.    </p>
1895  
    <p class="hide">
1896  
        The Cherub pursed his <b>fat</b> round lips in a soft whistle of enlightenment.    </p>
1897  
</div>
1898  
<span class="link-row">
1899  
    <a class="more" href="#" onclick="return false">
1900  
        EXPAND
1901  
    </a>
1902  
</span>
1903  
    </div>
1904  
</div>
1905  
        </div>	
1906  
    </div>
1907  
</aside>
1908  
    </div>
1909  
    <div class="clear"></div>
1910  
</div>
1911  
<div id="audioPlayerWrapper">
1912  
    <p id="audioplayer"></p>
1913  
</div>
1914  
<div>
1915  
    <div id="gsl_init"
1916  
     data-type='csa'
1917  
     data-bpc='1'
1918  
     data-afsClient='aj-lexico-thes'
1919  
     data-afsChannel='channel-01+LD1'
1920  
     data-afcClient='ca-aj-lexico-thes'
1921  
     data-afcChannel='channel-01+LD1'
1922  
     data-numOfAds='0'
1923  
     data-adtest='off'
1924  
     data-afsQuery='fat'
1925  
     data-afcQuery='fat'
1926  
     data-impression='{"basePath":"http:\/\/track.thesaurus.com\/track\/impression2","attributes":{"site":"thes","pageName":"the","ldid":0}}'
1927  
     	 data-customPage='{"width":"100%"}'
1928  
     data-customSpot='{"sitelinks":"true"}'
1929  
        >
1930  
</div>
1931  
<div id="afcadcontainer"></div></div>
1932  
<div id='bkpix'></div>
1933  
<div id='csPixel'></div>
1934  
<div id='neiPixel'></div><footer class="footer-thin">
1935  
    <div class="footer-container"  data-linkid='gy27eg'>
1936  
        <div>
1937  
            <ul class="footer-navbar">
1938  
                <li class="footer-navbar-list">
1939  
                    <a href="http://content.dictionary.com/">About</a>
1940  
                </li>
1941  
                <li class="footer-navbar-list">
1942  
                    <a href="http://www.dictionary.com/terms">Terms & Privacy</a>
1943  
                </li>
1944  
            </ul>
1945  
            <div class="footer-copyright">
1946  
                &copy;&nbsp;2017 Dictionary.com, LLC.
1947  
            </div>
1948  
        </div>
1949  
    </div>
1950  
</footer>
1951  
<script>
1952  
    /*
1953  
     Below immediately function provide support for browsers, which do not support modern standards (https://dom.spec.whatwg.org/)
1954  
     partially taken from: plainjs.com
1955  
    */
1956  
    (function (e) {
1957  
        'use strict';
1958  
        e.matches = e.matches ||
1959  
            e.matchesSelector ||
1960  
            e.webkitMatchesSelector ||
1961  
            e.msMatchesSelector ||
1962  
            function (selector) {
1963  
                var node = this, nodes = (node.parentNode || node.document).querySelectorAll(selector), i = -1;
1964  
                while (nodes[++i] && nodes[i] != node);
1965  
                return !!nodes[i];
1966  
            };
1967  
        e.closest = e.closest || function (css) {
1968  
                var node = this;
1969  
                while (node) {
1970  
                    if (node.matches(css)) return node;
1971  
                    else node = node.parentElement;
1972  
                }
1973  
                return null;
1974  
            };
1975  
        e.hasClass = e.hasClass || function (className) {
1976  
                var node = this;
1977  
                return node.classList ? node.classList.contains(className) : new RegExp('\\b' + className + '\\b').test(node.className);
1978  
            };
1979  
        e.addClass = e.addClass || function (className) {
1980  
                var node = this;
1981  
                if (node.classList) node.classList.add(className);
1982  
                else if (!node.hasClass(node, className)) node.className += ' ' + className;
1983  
            };
1984  
        e.removeClass = e.removeClass || function(className) {
1985  
                var node = this;
1986  
                if (node.classList) node.classList.remove(className);
1987  
                else node.className = node.className.replace(new RegExp('\\b' + className + '\\b', 'g'), '');
1988  
            };
1989  
        e.on = e.on || function (event, selector, callback, context) {
1990  
                var el = context || document;
1991  
                el.addEventListener(event, function (e) {
1992  
                    var found, el = e.target || e.srcElement;
1993  
                    while (el && el.matches && el !== context && !(found = el.matches(selector))) el = el.parentElement;
1994  
                    if (found) callback.call(this, el, e);
1995  
                });
1996  
            };
1997  
    }(Element.prototype));
1998  
</script><script type="text/javascript" src="http://app.dictionary.com/js/advertisement.js"></script>
1999  
<script>
2000  
    if (typeof window.canRunAds === 'undefined') {
2001  
        var img = new Image(),
2002  
        url = 'http://track.thesaurus.com/main.gif?ev=a&ms=%40%40MSEG%40%40&rf=%40%40REFERRER%40%40&cb=%40%40CACHEBUSTER%40%40&pn=the&st=thes&ab=&dc=desktop';
2003  
2004  
        url = url.replace('%40%40REFERRER%40%40', encodeURIComponent(document.referrer))
2005  
            .replace('%40%40CACHEBUSTER%40%40', Math.floor((Math.random() * 899999999) + 100000000))
2006  
            .replace('%40%40MSEG%40%40', (cookiesManager.getCookieValue('mseg') || ''));
2007  
        img.src = url;
2008  
    }
2009  
</script>
2010  
<!-- Begin Quantcast Tag, part 2 -->
2011  
<script type="text/javascript">
2012  
if (typeof UserController === "undefined" || !UserController.isUnder13()) {
2013  
    _qevents.push({qacct: "p-51zXP5Cc9sxvQ"});
2014  
}
2015  
</script>
2016  
<noscript>
2017  
<div style="display: none;"><img src="//pixel.quantserve.com/pixel/p-51zXP5Cc9sxvQ.gif" height="1" width="1" alt="Quantcast"/></div>
2018  
</noscript>
2019  
<!-- End Quantcast Tag, part 2 --><script>
2020  
    /*global $, pageName, window */
2021  
2022  
    var BCT = (function () {
2023  
        'use strict';
2024  
2025  
        var webTrackURL = 'http://track.thesaurus.com/main.gif?ev=c&cl=%40%40LINKIDS%40%40&ci=%40%40ITEM%40%40&co=%40%40ORDINAL%40%40&ms=%40%40MSEG%40%40&ds=%40%40DESTINATION%40%40&qr=%25%25QUERY%25%25&rf=%40%40REFERRER%40%40&cb=%40%40CACHEBUSTER%40%40&pn=%40%40PAGENAME%40%40&st=thes&ab=&dc=desktop',
2026  
            query, originalQuery;
2027  
2028  
                    originalQuery = typeof DARCI.OQR !== 'undefined' ? DARCI.OQR.getValue() : null;
2029  
            query =  originalQuery !== null ? originalQuery : "fat";
2030  
2031  
            webTrackURL = webTrackURL.replace('%25%25QUERY%25%25', query);
2032  
        
2033  
        /**
2034  
         * Returns data, which will be logged.
2035  
         *
2036  
         * NOTE:
2037  
         * Possible, that empty array will be returned.
2038  
         */
2039  
        function getData(target) {
2040  
            var ctsData,
2041  
                closestLinkIDElement,
2042  
                data = {};
2043  
2044  
            ctsData = JSON.parse(target.getAttribute('data-cts'));
2045  
            if (ctsData !== null) {
2046  
                data.linkId = ctsData.linkId;
2047  
                data.item = "";
2048  
                data.ordinal = ctsData.ordinal;
2049  
            } else {
2050  
                closestLinkIDElement = target.closest('[data-linkid]');
2051  
                if (null !== closestLinkIDElement && null === target.closest('[data-type]')) {
2052  
                    data.linkId = closestLinkIDElement.getAttribute('data-linkid');
2053  
                    data.item = getItem(target);
2054  
                    data.ordinal = getOrdinal(target, closestLinkIDElement);
2055  
                }
2056  
            }
2057  
            return data;
2058  
        }
2059  
2060  
        function getItem(target) {
2061  
            var closestWithItem = target.closest('[data-item]'),
2062  
                item = '';
2063  
2064  
            if (null !== closestWithItem) {
2065  
                item = target.textContent.trim();
2066  
            }
2067  
2068  
            return item;
2069  
        }
2070  
2071  
        function getOrdinal(target, dataItem) {
2072  
            var closestWithOrdinal,
2073  
                value = '';
2074  
2075  
            if (dataItem !== target) { // if element with linkid is not the anchor itself we are going deeper
2076  
                closestWithOrdinal = target.closest('[data-ordinal]');
2077  
                if (null !== closestWithOrdinal) {
2078  
                    var links = closestWithOrdinal.querySelectorAll("a"),
2079  
                        len = links.length;
2080  
2081  
                    for (var i = 0; i < len; i++) {
2082  
                        if (target === links[i]) {
2083  
                            value = i + 1;
2084  
                        }
2085  
                    }
2086  
                }
2087  
            }
2088  
            return value;
2089  
        }
2090  
2091  
        /**
2092  
         * Returns data, which are generated always in the same way
2093  
         */
2094  
        function getCommonData(destination) {
2095  
            var data = {};
2096  
            data.cacheBuster = Math.floor((Math.random() * 899999999) + 100000000);
2097  
            data.pageName = pageName;
2098  
            data.mseg = getMsegValue();
2099  
            data.destination = encodeURIComponent(destination);
2100  
            return data;
2101  
        }
2102  
2103  
        /**
2104  
         * Redirects user to destination
2105  
         */
2106  
        function redirectToDest(location) {
2107  
            window.location = location;
2108  
        }
2109  
2110  
        /**
2111  
         * Returns value of cookie based on name
2112  
         */
2113  
        function getCookieByName(name) {
2114  
            var value = null,
2115  
                cookies = document.cookie,
2116  
                searchedCookie = cookies.indexOf(" " + name + "=");
2117  
2118  
            // it's worth to check, if cookie is not first cookie
2119  
            if (searchedCookie === -1) {
2120  
                var checkFirstCookie = cookies.indexOf(name + "=");
2121  
                searchedCookie = checkFirstCookie === 0 ? 0 : -1;
2122  
            }
2123  
2124  
            if (searchedCookie > -1) {
2125  
                var startPositionOfValue = cookies.indexOf("=", searchedCookie) + 1,
2126  
                    endPositionOfValue = cookies.indexOf(";", searchedCookie);
2127  
2128  
                if (endPositionOfValue === -1) {
2129  
                    endPositionOfValue = searchedCookie.length;
2130  
                }
2131  
2132  
                value = cookies.substring(startPositionOfValue,endPositionOfValue);
2133  
            }
2134  
2135  
            return value;
2136  
        }
2137  
2138  
        /**
2139  
         * Returns value of mseg cookie
2140  
         */
2141  
        function getMsegValue() {
2142  
            var msegVal;
2143  
            if (typeof cookiesManager !== "undefined") {
2144  
                msegVal = cookiesManager.getCookieValue("mseg");
2145  
            } else {
2146  
                msegVal = getCookieByName("mseg");
2147  
            }
2148  
2149  
            return msegVal || "";
2150  
        }
2151  
2152  
        /**
2153  
         * Renders WebTrack URL
2154  
         */
2155  
        function renderWebTrackURL(data, destination) {
2156  
            var commonData = getCommonData(destination);
2157  
            return webTrackURL.replace('%40%40REFERRER%40%40', encodeURIComponent(document.referrer))
2158  
                .replace('%40%40LINKIDS%40%40', data.linkId || "")
2159  
                .replace('%40%40ITEM%40%40', encodeURIComponent(data.item) || "")
2160  
                .replace('%40%40ORDINAL%40%40', data.ordinal || "")
2161  
                .replace('%40%40CACHEBUSTER%40%40', commonData.cacheBuster || "")
2162  
                .replace('%40%40PAGENAME%40%40', commonData.pageName || "")
2163  
                .replace('%40%40MSEG%40%40', commonData.mseg || "")
2164  
                .replace('%40%40DESTINATION%40%40', commonData.destination || "");
2165  
        }
2166  
2167  
        function logAndRedirect(data, destination) {
2168  
            var logURL = renderWebTrackURL(data, destination),
2169  
                image = new Image(),
2170  
                timeout;
2171  
2172  
            timeout = setTimeout(
2173  
                function(){
2174  
                    redirectToDest(destination);
2175  
                },
2176  
                2000
2177  
            );
2178  
2179  
            image.onload = image.onerror = function () {
2180  
                clearTimeout(timeout);
2181  
                redirectToDest(destination);
2182  
            };
2183  
2184  
            image.src = logURL;
2185  
2186  
            return false;
2187  
        }
2188  
2189  
        /**
2190  
         * Registers click event handler to body so it receives every click on anchor.
2191  
         */
2192  
        function attachHandler() {
2193  
            var bodyTag = document.getElementsByTagName('body')[0];
2194  
2195  
            bodyTag.on("click", 'a', function (elem, event) {
2196  
                var target = event.target,
2197  
                    enabled = target.closest('.cts-enabled'),
2198  
                    disabled = target.closest('.cts-disabled'),
2199  
                    destination = elem.getAttribute('href'),
2200  
                    dataToLog;
2201  
2202  
                if (typeof destination === "undefined") {
2203  
                    return true;
2204  
                }
2205  
2206  
                if (target.hasClass('cts-clicked')) {
2207  
                    return false;
2208  
                }
2209  
2210  
                //ACE-1060
2211  
                if (disabled !== null && (enabled === null || disabled.childNodes.length < enabled.childNodes.length)) { return true }
2212  
2213  
                dataToLog = getData(target);
2214  
2215  
                // if object has no id it means that link shouldn't be tracked - follow the link
2216  
                if (typeof dataToLog.linkId === "undefined") {
2217  
                    return true;
2218  
                }
2219  
                event.preventDefault();
2220  
2221  
                // mark this link as already clicked
2222  
                target.addClass('cts-clicked');
2223  
2224  
                return logAndRedirect(dataToLog, destination);
2225  
            });
2226  
        }
2227  
2228  
        return {
2229  
            attachHandler: attachHandler,
2230  
            /**
2231  
             * ::redirect() method is method used by oneClick module
2232  
             */
2233  
            redirect: function (ctsData, destinationHref, item) {
2234  
                var data = {};
2235  
                data.linkId = ctsData.linkId || ctsData.linkid;
2236  
                data.item = item;
2237  
                data.ordinal = '';
2238  
                return logAndRedirect(data, destinationHref);
2239  
            }
2240  
        };
2241  
    }());
2242  
2243  
    /** Do the initial attachment to <body> links */
2244  
    BCT.attachHandler();
2245  
2246  
</script><script type="text/javascript" src="http://static.sfdict.com/app/js/require-37278.js"></script>
2247  
<script type="text/javascript">
2248  
    requirejs.config({
2249  
            waitSeconds: 60,
2250  
            baseUrl: "http://static.sfdict.com/thescloud/js",
2251  
            paths: {"appcore":"http:\/\/static.sfdict.com\/app\/js","options":"http:\/\/static.sfdict.com\/app\/js\/options-b826f","jquery-ui":"http:\/\/static.sfdict.com\/app\/js\/jquery-ui-1.11.4.min-33a75","twitter":"https:\/\/platform.twitter.com\/widgets","facebook":"http:\/\/connect.facebook.net\/en_US\/all","google-plus":"https:\/\/apis.google.com\/js\/platform","instagram":"https:\/\/x.instagramfollowbutton.com\/follow","jquery":"http:\/\/static.sfdict.com\/app\/js\/jquery-1.11.3.min-4069b","serp":"serp-0fc55"},
2252  
            shim: {"twitter":{"exports":"twttr"},"facebook":{"exports":"FB"},"google-plus":{"exports":"googleplus"},"instagram":[]}        });
2253  
        define("runtime-options", function() {
2254  
        return {"localURL":"http:\/\/www.thesaurus.com\/","serpUrl":"http:\/\/www.thesaurus.com\/browse\/","logginRedirect":"http:\/\/app.dictionary.com\/login\/?logindest=","siteName":"thes","pageName":"the","pageType":"direct","adRefresh":{"initDelay":7,"subsDelay":20,"limit":"1"},"mobileCss":"http:\/\/static.sfdict.com\/thescloud\/css\/mobile-3a0a1.css","pageBorderWidth":1280,"POSElementNb":4,"iPadStylePath":"http:\/\/static.sfdict.com\/thescloud\/css\/ipad-7f03b.css","breadCrumbsLimit":30,"searchTerm":"fat","clientPlatform":"Desktop","similarityBuckets":3,"lengthBuckets":3,"defaultView":"list","defaultSorting":0,"defaultFontSize":100,"clickTrackMore":"http:\/\/track.thesaurus.com\/track\/clickClient?site=thes&pageName=&ldid=0&module=1clk&linkIds=nn1ov4","gspcDomain":".thesaurus.com","CTSParams":{"infix":"","clkpage":"the","clksite":"thes","clkld":0},"webTrack":{"clickInner":"http:\/\/track.thesaurus.com\/main.gif?ev=n&tg=%40%40TARGET%40%40&ar=%40%40ADREFRESH%40%40&ms=%40%40MSEG%40%40&rf=%40%40REFERRER%40%40&cb=%40%40CACHEBUSTER%40%40&pn=%40%40PAGENAME%40%40&st=thes&ab=&dc=desktop","impressions":"http:\/\/track.thesaurus.com\/main.gif?ev=i&lk=%40%40IMPRESSIONLINKIDS%40%40&ms=%40%40MSEG%40%40&rf=%40%40REFERRER%40%40&cb=%40%40CACHEBUSTER%40%40&pn=%40%40PAGENAME%40%40&st=thes&ab=&dc=desktop","pageview":"http:\/\/track.thesaurus.com\/main.gif?ev=p&ct=%40%40CONTENTTITLE%40%40&ms=%40%40MSEG%40%40&rf=%40%40REFERRER%40%40&cb=%40%40CACHEBUSTER%40%40&pn=%40%40PAGENAME%40%40&st=thes&ab=&dc=desktop","click":"http:\/\/track.thesaurus.com\/main.gif?ev=c&cl=%40%40LINKIDS%40%40&ci=%40%40ITEM%40%40&co=%40%40ORDINAL%40%40&ms=%40%40MSEG%40%40&ds=%40%40DESTINATION%40%40&qr=%25%25QUERY%25%25&rf=%40%40REFERRER%40%40&cb=%40%40CACHEBUSTER%40%40&pn=%40%40PAGENAME%40%40&st=thes&ab=&dc=desktop"},"trackFavorite":"{\"basePath\":\"http:\\\/\\\/track.thesaurus.com\\\/track\\\/favorite\",\"attributes\":{\"site\":\"thes\",\"pageName\":\"the\",\"ldid\":0}}","ctsDataConfuse":"{\"linkId\":\"1vq92f\",\"infix\":\"\",\"domain\":\"dictionary.com\",\"clkpage\":\"the\",\"clkmod\":\"confuse\",\"clksite\":\"thes\",\"clkld\":0}","subscriptionURL":"http:\/\/app.thesaurus.com\/api\/ajaxmailer\/subscription?pageName=the&siteName=thes&ld=0&mseg=96&placement=center"};
2255  
    });
2256  
    require(["serp"])
2257  
</script>
2258  
<script>
2259  
    var ms = (typeof ms === 'undefined') ? cookiesManager.getCookieValue('mseg') || "" : ms;
2260  
    new Image().src = "http://track.thesaurus.com/main.gif?ev=i&lk=huiazc%2C4b238x&pn=the&st=thes&ab=&dc=desktop" + "&rf=" + encodeURIComponent(document.referrer) + "&ms=" + ms + "&cb=" + Math.floor((Math.random() * 899999999) + 100000000);
2261  
</script>
2262  
<script>
2263  
    var jsCookie = {
2264  
        get: function (cName) {
2265  
            return(document.cookie.match('(^|; )' + cName + '=([^;]*)') || 0)[2];
2266  
        },
2267  
        set: function (cName, cValue, ttlMinutes) {
2268  
            var timeCookie = new Date();
2269  
            timeCookie.setMinutes(timeCookie.getMinutes() + ttlMinutes);
2270  
            document.cookie = cName + "=" + escape(cValue) + ((ttlMinutes) ? "; expires=" + timeCookie.toUTCString() : "") + '; domain=' + location.host.match(/[^\.]*\.[^.]*$/)[0] + "; path=/";
2271  
        }
2272  
    };
2273  
2274  
    function ClickTalePreRecordingHook() {
2275  
        ClickTaleFetchFromWithCookies.setFromCookie('mseg');
2276  
        ClickTaleFetchFromWithCookies.setFromCookie('ab');
2277  
        window.ClickTaleFetchFrom = ClickTaleFetchFromWithCookies.constructFetchFromUrl();
2278  
    }
2279  
2280  
    (function () {
2281  
        var ctCookie = jsCookie.get('ct');
2282  
        if (!ctCookie) {
2283  
            var sampledPercentage = Math.random() * 100;
2284  
            ctCookie = (sampledPercentage <= 1) ? 'i' : 'o';
2285  
            jsCookie.set('ct', ctCookie, 30);
2286  
        }
2287  
2288  
        if (typeof UserController !== 'undefined' && UserController.isPremium()) {
2289  
            return;
2290  
        }
2291  
2292  
        if (ctCookie === 'i') {
2293  
            document.write(unescape("%3Cscript%20src='" + (document.location.protocol == 'https:'
2294  
                ? "https://cdnssl.clicktale.net/www03/ptc/25652b19-8a29-4721-a18e-80d0aa23c314.js"
2295  
                : "http://cdn.clicktale.net/www03/ptc/25652b19-8a29-4721-a18e-80d0aa23c314.js") + "'%20type='text/javascript'%3E%3C/script%3E"));
2296  
        }
2297  
    })();
2298  
</script>
2299  
    </body>
2300  
    </html>

download  show line numbers   

Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1011292
Snippet name: thesaurus.com demo page
Eternal ID of this version: #1011292/1
Text MD5: d04ff5bcda13745982a41cd965610b11
Author: stefan
Category:
Type: Document
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-10-22 23:59:16
Source code size: 157531 bytes / 2300 lines
Pitched / IR pitched: No / No
Views / Downloads: 679 / 111
Referenced in: [show references]