How to use item method in fast-check-monorepo

Best JavaScript code snippet using fast-check-monorepo

norming.js

Source:norming.js Github

copy

Full Screen

1/​/​ Returns a random integer between min (included) and max (excluded)2/​/​ Using Math.round() will give you a non-uniform distribution!3function getRandomInt(min, max) {4 return Math.floor(Math.random() * (max - min)) + min;5}6function make_slides(f) {7 var slides = {};8/​/​ preload(9/​/​ ["images/​bathrobe.png","images/​belt.jpg"],10/​/​ {after: function() { console.log("everything's loaded now") }}11/​/​ ) 12 slides.i0 = slide({13 name : "i0",14 start: function() {15 exp.startT = Date.now();16 }17 });18 slides.instructions = slide({19 name : "instructions",20 button : function() {21 exp.go(); /​/​use exp.go() if and only if there is no "present" data.22 }23 });24 slides.objecttrial = slide({25 name : "objecttrial",26 present : exp.all_stims,27 start : function() {28 $(".err").hide();29 },30 present_handle : function(stim) {31 this.trial_start = Date.now();32 this.init_sliders();33 exp.sliderPost = {};34 /​/​$("#objectlabel").val(""); 35 this.stim = stim;36 console.log(this.stim);37 var contextsentence = "How typical is this for <strong>"+stim.label+"</​strong>?";38 /​/​var contextsentence = "How typical is this for "+stim.basiclevel+"?";39 /​/​var objimagehtml = '<img src="images/​'+stim.basiclevel+'/​'+stim.item+'.jpg" style="height:190px;">';40 var objimagehtml = '<img src="images/​'+stim.item+'.jpg" style="height:190px;">';41 $("#contextsentence").html(contextsentence);42 $("#objectimage").html(objimagehtml);43 console.log(this);44 },45 button : function() {46 if (exp.sliderPost > -1 && exp.sliderPost < 16) {47 $(".err").hide();48 this.log_responses();49 _stream.apply(this); /​/​use exp.go() if and only if there is no "present" data.50 } else {51 $(".err").show();52 }53 },54 init_sliders : function() {55 utils.make_slider("#single_slider", function(event, ui) {56 exp.sliderPost = ui.value;57 /​/​$("#number_guess").html(Math.round(ui.value*N));58 });59 },60 log_responses : function() {61 exp.data_trials.push({62 "label" : this.stim.label,63 "slide_number_in_experiment" : exp.phase,64 "item": this.stim.item,65 "itemtype": this.stim.itemtype,66 "labeltype": this.stim.labeltype, 67 "rt" : Date.now() - _s.trial_start,68 "response" : exp.sliderPost69 });70 }71 /​/​ $(".contbutton").click(function() {72 /​/​ var ok_to_go_on = true;73 /​/​ console.log($("#objectlabel").val());74 /​/​ if ($("#objectlabel").val().length < 2) {75 /​/​ ok_to_go_on = false;76 /​/​ }77 /​/​ if (ok_to_go_on) {78 /​/​ $(".contbutton").unbind("click"); 79 /​/​ stim.objectlabel = $("#objectlabel").val(); 80 /​/​ exp.data_trials.push({81 /​/​ "basiclevel" : stim.basiclevel,82 /​/​ "slide_number_in_experiment" : exp.phase,83 /​/​ "item": stim.item,84 /​/​ "rt" : Date.now() - _s.trial_start,85 /​/​ "response" : stim.objectlabel86 /​/​ });87 /​/​ $(".err").hide();88 /​/​ _stream.apply(_s); 89 /​/​ } else {90 /​/​ $(".err").show();91 /​/​ }92 /​/​ });93 94 /​/​ },95 });96 slides.subj_info = slide({97 name : "subj_info",98 submit : function(e){99 /​/​if (e.preventDefault) e.preventDefault(); /​/​ I don't know what this means.100 exp.subj_data = {101 language : $("#language").val(),102 enjoyment : $("#enjoyment").val(),103 asses : $('input[name="assess"]:checked').val(),104 age : $("#age").val(),105 gender : $("#gender").val(),106 education : $("#education").val(),107 comments : $("#comments").val(),108 };109 exp.go(); /​/​use exp.go() if and only if there is no "present" data.110 }111 });112 slides.thanks = slide({113 name : "thanks",114 start : function() {115 exp.data= {116 "trials" : exp.data_trials,117 "catch_trials" : exp.catch_trials,118 "system" : exp.system,119 "condition" : exp.condition,120 "subject_information" : exp.subj_data,121 "time_in_minutes" : (Date.now() - exp.startT)/​60000122 };123 setTimeout(function() {turk.submit(exp.data);}, 1000);124 }125 });126 return slides;127}128/​/​/​ init /​/​/​129function init() {130 var items_target = _.shuffle([131 {132"item": "blackbear",133"label": "a black bear",134"itemtype": "target",135"labeltype": "sub"136},137{138"item": "grizzlybear",139"label": "a grizzly bear",140"itemtype": "target",141"labeltype": "sub"142},143{144"item": "pandabear",145"label": "a panda bear",146"itemtype": "target",147"labeltype": "sub"148},149{150"item": "polarbear",151"label": "a polar bear",152"itemtype": "target",153"labeltype": "sub"154},155{156"item": "eagle",157"label": "an eagle",158"itemtype": "target",159"labeltype": "sub"160},161{162"item": "hummingbird",163"label": "a hummingbird",164"itemtype": "target",165"labeltype": "sub"166},167{168"item": "parrot",169"label": "a parrot",170"itemtype": "target",171"labeltype": "sub"172},173{174"item": "pigeon",175"label": "a pigeon",176"itemtype": "target",177"labeltype": "sub"178},179{180"item": "dalmatian",181"label": "a dalmatian",182"itemtype": "target",183"labeltype": "sub"184},185{186"item": "germanshepherd",187"label": "a German Shepherd",188"itemtype": "target",189"labeltype": "sub"190},191{192"item": "husky",193"label": "a husky",194"itemtype": "target",195"labeltype": "sub"196},197{198"item": "pug",199"label": "a pug",200"itemtype": "target",201"labeltype": "sub"202},203{204"item": "gummybears",205"label": "gummybears",206"itemtype": "target",207"labeltype": "sub"208},209{210"item": "jellybeans",211"label": "jellybeans",212"itemtype": "target",213"labeltype": "sub"214},215{216"item": "mnms",217"label": "M&Ms",218"itemtype": "target",219"labeltype": "sub"220},221{222"item": "skittles",223"label": "skittles",224"itemtype": "target",225"labeltype": "sub"226},227{228"item": "daisy",229"label": "a daisy",230"itemtype": "target",231"labeltype": "sub"232},233{234"item": "rose",235"label": "a rose",236"itemtype": "target",237"labeltype": "sub"238},239{240"item": "sunflower",241"label": "a sunflower",242"itemtype": "target",243"labeltype": "sub"244},245{246"item": "tulip",247"label": "a tulip",248"itemtype": "target",249"labeltype": "sub"250},251{252"item": "convertible",253"label": "a convertible",254"itemtype": "target",255"labeltype": "sub"256},257{258"item": "minivan",259"label": "a minivan",260"itemtype": "target",261"labeltype": "sub"262},263{264"item": "sportscar",265"label": "a sports car",266"itemtype": "target",267"labeltype": "sub"268},269{270"item": "suv",271"label": "an SUV",272"itemtype": "target",273"labeltype": "sub"274},275{276"item": "catfish",277"label": "a catfish",278"itemtype": "target",279"labeltype": "sub"280},281{282"item": "clownfish",283"label": "a clownfish",284"itemtype": "target",285"labeltype": "sub"286},287{288"item": "goldfish",289"label": "a goldfish",290"itemtype": "target",291"labeltype": "sub"292},293{294"item": "swordfish",295"label": "a swordfish",296"itemtype": "target",297"labeltype": "sub"298},299{300"item": "dressshirt",301"label": "a dress shirt",302"itemtype": "target",303"labeltype": "sub"304},305{306"item": "hawaiishirt",307"label": "a Hawaii shirt",308"itemtype": "target",309"labeltype": "sub"310},311{312"item": "poloshirt",313"label": "a polo shirt",314"itemtype": "target",315"labeltype": "sub"316},317{318"item": "tshirt",319"label": "a t-shirt",320"itemtype": "target",321"labeltype": "sub"322},323{324"item": "bedsidetable",325"label": "a bedside table",326"itemtype": "target",327"labeltype": "sub"328},329{330"item": "coffeetable",331"label": "a coffee table",332"itemtype": "target",333"labeltype": "sub"334},335{336"item": "diningtable",337"label": "a dining table",338"itemtype": "target",339"labeltype": "sub"340},341{342"item": "picnictable",343"label": "a picnic table",344"itemtype": "target",345"labeltype": "sub"346},347{348"item": "blackbear",349"label": "a bear",350"itemtype": "target",351"labeltype": "basic"352},353{354"item": "grizzlybear",355"label": "a bear",356"itemtype": "target",357"labeltype": "basic"358},359{360"item": "pandabear",361"label": "a bear",362"itemtype": "target",363"labeltype": "basic"364},365{366"item": "polarbear",367"label": "a bear",368"itemtype": "target",369"labeltype": "basic"370},371{372"item": "eagle",373"label": "a bird",374"itemtype": "target",375"labeltype": "basic"376},377{378"item": "hummingbird",379"label": "a bird",380"itemtype": "target",381"labeltype": "basic"382},383{384"item": "parrot",385"label": "a bird",386"itemtype": "target",387"labeltype": "basic"388},389{390"item": "pigeon",391"label": "a bird",392"itemtype": "target",393"labeltype": "basic"394},395{396"item": "dalmatian",397"label": "a dog",398"itemtype": "target",399"labeltype": "basic"400},401{402"item": "germanshepherd",403"label": "a dog",404"itemtype": "target",405"labeltype": "basic"406},407{408"item": "husky",409"label": "a dog",410"itemtype": "target",411"labeltype": "basic"412},413{414"item": "pug",415"label": "a dog",416"itemtype": "target",417"labeltype": "basic"418},419{420"item": "gummybears",421"label": "candy",422"itemtype": "target",423"labeltype": "basic"424},425{426"item": "jellybeans",427"label": "candy",428"itemtype": "target",429"labeltype": "basic"430},431{432"item": "mnms",433"label": "candy",434"itemtype": "target",435"labeltype": "basic"436},437{438"item": "skittles",439"label": "candy",440"itemtype": "target",441"labeltype": "basic"442},443{444"item": "daisy",445"label": "a flower",446"itemtype": "target",447"labeltype": "basic"448},449{450"item": "rose",451"label": "a flower",452"itemtype": "target",453"labeltype": "basic"454},455{456"item": "sunflower",457"label": "a flower",458"itemtype": "target",459"labeltype": "basic"460},461{462"item": "tulip",463"label": "a flower",464"itemtype": "target",465"labeltype": "basic"466},467{468"item": "convertible",469"label": "a car",470"itemtype": "target",471"labeltype": "basic"472},473{474"item": "minivan",475"label": "a car",476"itemtype": "target",477"labeltype": "basic"478},479{480"item": "sportscar",481"label": "a car",482"itemtype": "target",483"labeltype": "basic"484},485{486"item": "suv",487"label": "a car",488"itemtype": "target",489"labeltype": "basic"490},491{492"item": "catfish",493"label": "a fish",494"itemtype": "target",495"labeltype": "basic"496},497{498"item": "clownfish",499"label": "a fish",500"itemtype": "target",501"labeltype": "basic"502},503{504"item": "goldfish",505"label": "a fish",506"itemtype": "target",507"labeltype": "basic"508},509{510"item": "swordfish",511"label": "a fish",512"itemtype": "target",513"labeltype": "basic"514},515{516"item": "dressshirt",517"label": "a shirt",518"itemtype": "target",519"labeltype": "basic"520},521{522"item": "hawaiishirt",523"label": "a shirt",524"itemtype": "target",525"labeltype": "basic"526},527{528"item": "poloshirt",529"label": "a shirt",530"itemtype": "target",531"labeltype": "basic"532},533{534"item": "tshirt",535"label": "a shirt",536"itemtype": "target",537"labeltype": "basic"538},539{540"item": "bedsidetable",541"label": "a table",542"itemtype": "target",543"labeltype": "basic"544},545{546"item": "coffeetable",547"label": "a table",548"itemtype": "target",549"labeltype": "basic"550},551{552"item": "diningtable",553"label": "a table",554"itemtype": "target",555"labeltype": "basic"556},557{558"item": "picnictable",559"label": "a table",560"itemtype": "target",561"labeltype": "basic"562},563{564"item": "blackbear",565"label": "an animal",566"itemtype": "target",567"labeltype": "super"568},569{570"item": "grizzlybear",571"label": "an animal",572"itemtype": "target",573"labeltype": "super"574},575{576"item": "pandabear",577"label": "an animal",578"itemtype": "target",579"labeltype": "super"580},581{582"item": "polarbear",583"label": "an animal",584"itemtype": "target",585"labeltype": "super"586},587{588"item": "eagle",589"label": "an animal",590"itemtype": "target",591"labeltype": "super"592},593{594"item": "hummingbird",595"label": "an animal",596"itemtype": "target",597"labeltype": "super"598},599{600"item": "parrot",601"label": "an animal",602"itemtype": "target",603"labeltype": "super"604},605{606"item": "pigeon",607"label": "an animal",608"itemtype": "target",609"labeltype": "super"610},611{612"item": "dalmatian",613"label": "an animal",614"itemtype": "target",615"labeltype": "super"616},617{618"item": "germanshepherd",619"label": "an animal",620"itemtype": "target",621"labeltype": "super"622},623{624"item": "husky",625"label": "an animal",626"itemtype": "target",627"labeltype": "super"628},629{630"item": "pug",631"label": "an animal",632"itemtype": "target",633"labeltype": "super"634},635{636"item": "gummybears",637"label": "a snack",638"itemtype": "target",639"labeltype": "super"640},641{642"item": "jellybeans",643"label": "a snack",644"itemtype": "target",645"labeltype": "super"646},647{648"item": "mnms",649"label": "a snack",650"itemtype": "target",651"labeltype": "super"652},653{654"item": "skittles",655"label": "a snack",656"itemtype": "target",657"labeltype": "super"658},659{660"item": "daisy",661"label": "a plant",662"itemtype": "target",663"labeltype": "super"664},665{666"item": "rose",667"label": "a plant",668"itemtype": "target",669"labeltype": "super"670},671{672"item": "sunflower",673"label": "a plant",674"itemtype": "target",675"labeltype": "super"676},677{678"item": "tulip",679"label": "a plant",680"itemtype": "target",681"labeltype": "super"682},683{684"item": "convertible",685"label": "a vehicle",686"itemtype": "target",687"labeltype": "super"688},689{690"item": "minivan",691"label": "a vehicle",692"itemtype": "target",693"labeltype": "super"694},695{696"item": "sportscar",697"label": "a vehicle",698"itemtype": "target",699"labeltype": "super"700},701{702"item": "suv",703"label": "a vehicle",704"itemtype": "target",705"labeltype": "super"706},707{708"item": "catfish",709"label": "an animal",710"itemtype": "target",711"labeltype": "super"712},713{714"item": "clownfish",715"label": "an animal",716"itemtype": "target",717"labeltype": "super"718},719{720"item": "goldfish",721"label": "an animal",722"itemtype": "target",723"labeltype": "super"724},725{726"item": "swordfish",727"label": "an animal",728"itemtype": "target",729"labeltype": "super"730},731{732"item": "dressshirt",733"label": "clothing",734"itemtype": "target",735"labeltype": "super"736},737{738"item": "hawaiishirt",739"label": "clothing",740"itemtype": "target",741"labeltype": "super"742},743{744"item": "poloshirt",745"label": "clothing",746"itemtype": "target",747"labeltype": "super"748},749{750"item": "tshirt",751"label": "clothing",752"itemtype": "target",753"labeltype": "super"754},755{756"item": "bedsidetable",757"label": "furniture",758"itemtype": "target",759"labeltype": "super"760},761{762"item": "coffeetable",763"label": "furniture",764"itemtype": "target",765"labeltype": "super"766},767{768"item": "diningtable",769"label": "furniture",770"itemtype": "target",771"labeltype": "super"772},773{774"item": "picnictable",775"label": "furniture",776"itemtype": "target",777"labeltype": "super"778}779 ]).slice(0,7)780 var items_dists = _.shuffle([781 782{783"item": "ambulance",784"label": "clothing",785"itemtype": "dist_super",786"labeltype": "super"787},788{789"item": "ambulance",790"label": "furniture",791"itemtype": "dist_super",792"labeltype": "super"793},794{795"item": "ambulance",796"label": "a snack",797"itemtype": "dist_super",798"labeltype": "super"799},800{801"item": "ambulance",802"label": "an animal",803"itemtype": "dist_super",804"labeltype": "super"805},806{807"item": "bathrobe",808"label": "a plant",809"itemtype": "dist_super",810"labeltype": "super"811},812{813"item": "bathrobe",814"label": "an animal",815"itemtype": "dist_super",816"labeltype": "super"817},818{819"item": "bathrobe",820"label": "furniture",821"itemtype": "dist_super",822"labeltype": "super"823},824{825"item": "bathrobe",826"label": "a snack",827"itemtype": "dist_super",828"labeltype": "super"829},830{831"item": "bathrobe",832"label": "a vehicle",833"itemtype": "dist_super",834"labeltype": "super"835},836{837"item": "bed",838"label": "a snack",839"itemtype": "dist_super",840"labeltype": "super"841},842{843"item": "bed",844"label": "an animal",845"itemtype": "dist_super",846"labeltype": "super"847},848{849"item": "bed",850"label": "clothing",851"itemtype": "dist_super",852"labeltype": "super"853},854{855"item": "bed",856"label": "a plant",857"itemtype": "dist_super",858"labeltype": "super"859},860{861"item": "bed",862"label": "a vehicle",863"itemtype": "dist_super",864"labeltype": "super"865},866{867"item": "bison",868"label": "clothing",869"itemtype": "dist_super",870"labeltype": "super"871},872{873"item": "bison",874"label": "a snack",875"itemtype": "dist_super",876"labeltype": "super"877},878{879"item": "bison",880"label": "furniture",881"itemtype": "dist_super",882"labeltype": "super"883},884{885"item": "bison",886"label": "a vehicle",887"itemtype": "dist_super",888"labeltype": "super"889},890{891"item": "bison",892"label": "a plant",893"itemtype": "dist_super",894"labeltype": "super"895},896{897"item": "bookcase",898"label": "an animal",899"itemtype": "dist_super",900"labeltype": "super"901},902{903"item": "bookcase",904"label": "a snack",905"itemtype": "dist_super",906"labeltype": "super"907},908{909"item": "bookcase",910"label": "a plant",911"itemtype": "dist_super",912"labeltype": "super"913},914{915"item": "bookcase",916"label": "clothing",917"itemtype": "dist_super",918"labeltype": "super"919},920{921"item": "chick",922"label": "clothing",923"itemtype": "dist_super",924"labeltype": "super"925},926{927"item": "chick",928"label": "a plant",929"itemtype": "dist_super",930"labeltype": "super"931},932{933"item": "chick",934"label": "a snack",935"itemtype": "dist_super",936"labeltype": "super"937},938{939"item": "chick",940"label": "furniture",941"itemtype": "dist_super",942"labeltype": "super"943},944{945"item": "chick",946"label": "a vehicle",947"itemtype": "dist_super",948"labeltype": "super"949},950{951"item": "chips",952"label": "an animal",953"itemtype": "dist_super",954"labeltype": "super"955},956{957"item": "chips",958"label": "a plant",959"itemtype": "dist_super",960"labeltype": "super"961},962{963"item": "chips",964"label": "clothing",965"itemtype": "dist_super",966"labeltype": "super"967},968{969"item": "chips",970"label": "a vehicle",971"itemtype": "dist_super",972"labeltype": "super"973},974{975"item": "chips",976"label": "furniture",977"itemtype": "dist_super",978"labeltype": "super"979},980{981"item": "cookies",982"label": "clothing",983"itemtype": "dist_super",984"labeltype": "super"985},986{987"item": "cookies",988"label": "a vehicle",989"itemtype": "dist_super",990"labeltype": "super"991},992{993"item": "cookies",994"label": "an animal",995"itemtype": "dist_super",996"labeltype": "super"997},998{999"item": "cookies",1000"label": "furniture",1001"itemtype": "dist_super",1002"labeltype": "super"1003},1004{1005"item": "cookies",1006"label": "a plant",1007"itemtype": "dist_super",1008"labeltype": "super"1009},1010{1011"item": "cow",1012"label": "a snack",1013"itemtype": "dist_super",1014"labeltype": "super"1015},1016{1017"item": "cow",1018"label": "a vehicle",1019"itemtype": "dist_super",1020"labeltype": "super"1021},1022{1023"item": "cow",1024"label": "a plant",1025"itemtype": "dist_super",1026"labeltype": "super"1027},1028{1029"item": "cow",1030"label": "clothing",1031"itemtype": "dist_super",1032"labeltype": "super"1033},1034{1035"item": "cow",1036"label": "furniture",1037"itemtype": "dist_super",1038"labeltype": "super"1039},1040{1041"item": "crocodile",1042"label": "furniture",1043"itemtype": "dist_super",1044"labeltype": "super"1045},1046{1047"item": "crocodile",1048"label": "a vehicle",1049"itemtype": "dist_super",1050"labeltype": "super"1051},1052{1053"item": "crocodile",1054"label": "a plant",1055"itemtype": "dist_super",1056"labeltype": "super"1057},1058{1059"item": "crocodile",1060"label": "a snack",1061"itemtype": "dist_super",1062"labeltype": "super"1063},1064{1065"item": "crocodile",1066"label": "clothing",1067"itemtype": "dist_super",1068"labeltype": "super"1069},1070{1071"item": "dress",1072"label": "furniture",1073"itemtype": "dist_super",1074"labeltype": "super"1075},1076{1077"item": "dress",1078"label": "an animal",1079"itemtype": "dist_super",1080"labeltype": "super"1081},1082{1083"item": "dress",1084"label": "a plant",1085"itemtype": "dist_super",1086"labeltype": "super"1087},1088{1089"item": "dress",1090"label": "a vehicle",1091"itemtype": "dist_super",1092"labeltype": "super"1093},1094{1095"item": "dress",1096"label": "a snack",1097"itemtype": "dist_super",1098"labeltype": "super"1099},1100{1101"item": "elephant",1102"label": "a vehicle",1103"itemtype": "dist_super",1104"labeltype": "super"1105},1106{1107"item": "elephant",1108"label": "furniture",1109"itemtype": "dist_super",1110"labeltype": "super"1111},1112{1113"item": "elephant",1114"label": "a plant",1115"itemtype": "dist_super",1116"labeltype": "super"1117},1118{1119"item": "elephant",1120"label": "a snack",1121"itemtype": "dist_super",1122"labeltype": "super"1123},1124{1125"item": "elephant",1126"label": "clothing",1127"itemtype": "dist_super",1128"labeltype": "super"1129},1130{1131"item": "firetruck",1132"label": "clothing",1133"itemtype": "dist_super",1134"labeltype": "super"1135},1136{1137"item": "firetruck",1138"label": "furniture",1139"itemtype": "dist_super",1140"labeltype": "super"1141},1142{1143"item": "firetruck",1144"label": "an animal",1145"itemtype": "dist_super",1146"labeltype": "super"1147},1148{1149"item": "firetruck",1150"label": "a snack",1151"itemtype": "dist_super",1152"labeltype": "super"1153},1154{1155"item": "firetruck",1156"label": "a plant",1157"itemtype": "dist_super",1158"labeltype": "super"1159},1160{1161"item": "gloves",1162"label": "an animal",1163"itemtype": "dist_super",1164"labeltype": "super"1165},1166{1167"item": "gloves",1168"label": "a snack",1169"itemtype": "dist_super",1170"labeltype": "super"1171},1172{1173"item": "gloves",1174"label": "a plant",1175"itemtype": "dist_super",1176"labeltype": "super"1177},1178{1179"item": "gloves",1180"label": "furniture",1181"itemtype": "dist_super",1182"labeltype": "super"1183},1184{1185"item": "gloves",1186"label": "a vehicle",1187"itemtype": "dist_super",1188"labeltype": "super"1189},1190{1191"item": "grasses",1192"label": "clothing",1193"itemtype": "dist_super",1194"labeltype": "super"1195},1196{1197"item": "grasses",1198"label": "a snack",1199"itemtype": "dist_super",1200"labeltype": "super"1201},1202{1203"item": "grasses",1204"label": "an animal",1205"itemtype": "dist_super",1206"labeltype": "super"1207},1208{1209"item": "grasses",1210"label": "a vehicle",1211"itemtype": "dist_super",1212"labeltype": "super"1213},1214{1215"item": "grasses",1216"label": "furniture",1217"itemtype": "dist_super",1218"labeltype": "super"1219},1220{1221"item": "horse",1222"label": "clothing",1223"itemtype": "dist_super",1224"labeltype": "super"1225},1226{1227"item": "horse",1228"label": "furniture",1229"itemtype": "dist_super",1230"labeltype": "super"1231},1232{1233"item": "horse",1234"label": "a plant",1235"itemtype": "dist_super",1236"labeltype": "super"1237},1238{1239"item": "horse",1240"label": "a snack",1241"itemtype": "dist_super",1242"labeltype": "super"1243},1244{1245"item": "horse",1246"label": "a vehicle",1247"itemtype": "dist_super",1248"labeltype": "super"1249},1250{1251"item": "iguana",1252"label": "furniture",1253"itemtype": "dist_super",1254"labeltype": "super"1255},1256{1257"item": "iguana",1258"label": "a vehicle",1259"itemtype": "dist_super",1260"labeltype": "super"1261},1262{1263"item": "iguana",1264"label": "a snack",1265"itemtype": "dist_super",1266"labeltype": "super"1267},1268{1269"item": "iguana",1270"label": "a plant",1271"itemtype": "dist_super",1272"labeltype": "super"1273},1274{1275"item": "ivy",1276"label": "furniture",1277"itemtype": "dist_super",1278"labeltype": "super"1279},1280{1281"item": "ivy",1282"label": "an animal",1283"itemtype": "dist_super",1284"labeltype": "super"1285},1286{1287"item": "ivy",1288"label": "clothing",1289"itemtype": "dist_super",1290"labeltype": "super"1291},1292{1293"item": "ivy",1294"label": "a snack",1295"itemtype": "dist_super",1296"labeltype": "super"1297},1298{1299"item": "ivy",1300"label": "a vehicle",1301"itemtype": "dist_super",1302"labeltype": "super"1303},1304{1305"item": "kitten",1306"label": "a plant",1307"itemtype": "dist_super",1308"labeltype": "super"1309},1310{1311"item": "kitten",1312"label": "a vehicle",1313"itemtype": "dist_super",1314"labeltype": "super"1315},1316{1317"item": "kitten",1318"label": "clothing",1319"itemtype": "dist_super",1320"labeltype": "super"1321},1322{1323"item": "kitten",1324"label": "furniture",1325"itemtype": "dist_super",1326"labeltype": "super"1327},1328{1329"item": "lamp",1330"label": "an animal",1331"itemtype": "dist_super",1332"labeltype": "super"1333},1334{1335"item": "lamp",1336"label": "clothing",1337"itemtype": "dist_super",1338"labeltype": "super"1339},1340{1341"item": "lamp",1342"label": "a snack",1343"itemtype": "dist_super",1344"labeltype": "super"1345},1346{1347"item": "lamp",1348"label": "a plant",1349"itemtype": "dist_super",1350"labeltype": "super"1351},1352{1353"item": "lamp",1354"label": "a vehicle",1355"itemtype": "dist_super",1356"labeltype": "super"1357},1358{1359"item": "lion",1360"label": "a vehicle",1361"itemtype": "dist_super",1362"labeltype": "super"1363},1364{1365"item": "lion",1366"label": "clothing",1367"itemtype": "dist_super",1368"labeltype": "super"1369},1370{1371"item": "lion",1372"label": "a snack",1373"itemtype": "dist_super",1374"labeltype": "super"1375},1376{1377"item": "lion",1378"label": "a plant",1379"itemtype": "dist_super",1380"labeltype": "super"1381},1382{1383"item": "lion",1384"label": "furniture",1385"itemtype": "dist_super",1386"labeltype": "super"1387},1388{1389"item": "lobster",1390"label": "a snack",1391"itemtype": "dist_super",1392"labeltype": "super"1393},1394{1395"item": "lobster",1396"label": "a plant",1397"itemtype": "dist_super",1398"labeltype": "super"1399},1400{1401"item": "lobster",1402"label": "clothing",1403"itemtype": "dist_super",1404"labeltype": "super"1405},1406{1407"item": "lobster",1408"label": "furniture",1409"itemtype": "dist_super",1410"labeltype": "super"1411},1412{1413"item": "lobster",1414"label": "a vehicle",1415"itemtype": "dist_super",1416"labeltype": "super"1417},1418{1419"item": "motorcycle",1420"label": "an animal",1421"itemtype": "dist_super",1422"labeltype": "super"1423},1424{1425"item": "motorcycle",1426"label": "furniture",1427"itemtype": "dist_super",1428"labeltype": "super"1429},1430{1431"item": "motorcycle",1432"label": "clothing",1433"itemtype": "dist_super",1434"labeltype": "super"1435},1436{1437"item": "pig",1438"label": "clothing",1439"itemtype": "dist_super",1440"labeltype": "super"1441},1442{1443"item": "popcorn",1444"label": "clothing",1445"itemtype": "dist_super",1446"labeltype": "super"1447},1448{1449"item": "popcorn",1450"label": "an animal",1451"itemtype": "dist_super",1452"labeltype": "super"1453},1454{1455"item": "popcorn",1456"label": "a vehicle",1457"itemtype": "dist_super",1458"labeltype": "super"1459},1460{1461"item": "popcorn",1462"label": "furniture",1463"itemtype": "dist_super",1464"labeltype": "super"1465},1466{1467"item": "popcorn",1468"label": "a plant",1469"itemtype": "dist_super",1470"labeltype": "super"1471},1472{1473"item": "pottedplant",1474"label": "furniture",1475"itemtype": "dist_super",1476"labeltype": "super"1477},1478{1479"item": "pottedplant",1480"label": "a vehicle",1481"itemtype": "dist_super",1482"labeltype": "super"1483},1484{1485"item": "pottedplant",1486"label": "an animal",1487"itemtype": "dist_super",1488"labeltype": "super"1489},1490{1491"item": "pretzels",1492"label": "clothing",1493"itemtype": "dist_super",1494"labeltype": "super"1495},1496{1497"item": "pretzels",1498"label": "a vehicle",1499"itemtype": "dist_super",1500"labeltype": "super"1501},1502{1503"item": "pretzels",1504"label": "an animal",1505"itemtype": "dist_super",1506"labeltype": "super"1507},1508{1509"item": "pretzels",1510"label": "a plant",1511"itemtype": "dist_super",1512"labeltype": "super"1513},1514{1515"item": "pretzels",1516"label": "furniture",1517"itemtype": "dist_super",1518"labeltype": "super"1519},1520{1521"item": "rabbit",1522"label": "a snack",1523"itemtype": "dist_super",1524"labeltype": "super"1525},1526{1527"item": "rabbit",1528"label": "clothing",1529"itemtype": "dist_super",1530"labeltype": "super"1531},1532{1533"item": "rabbit",1534"label": "a plant",1535"itemtype": "dist_super",1536"labeltype": "super"1537},1538{1539"item": "rabbit",1540"label": "furniture",1541"itemtype": "dist_super",1542"labeltype": "super"1543},1544{1545"item": "rabbit",1546"label": "a vehicle",1547"itemtype": "dist_super",1548"labeltype": "super"1549},1550{1551"item": "rhino",1552"label": "clothing",1553"itemtype": "dist_super",1554"labeltype": "super"1555},1556{1557"item": "rhino",1558"label": "a snack",1559"itemtype": "dist_super",1560"labeltype": "super"1561},1562{1563"item": "rhino",1564"label": "a plant",1565"itemtype": "dist_super",1566"labeltype": "super"1567},1568{1569"item": "rhino",1570"label": "a vehicle",1571"itemtype": "dist_super",1572"labeltype": "super"1573},1574{1575"item": "rhino",1576"label": "furniture",1577"itemtype": "dist_super",1578"labeltype": "super"1579},1580{1581"item": "rosemary",1582"label": "an animal",1583"itemtype": "dist_super",1584"labeltype": "super"1585},1586{1587"item": "rosemary",1588"label": "a snack",1589"itemtype": "dist_super",1590"labeltype": "super"1591},1592{1593"item": "rosemary",1594"label": "a vehicle",1595"itemtype": "dist_super",1596"labeltype": "super"1597},1598{1599"item": "rosemary",1600"label": "clothing",1601"itemtype": "dist_super",1602"labeltype": "super"1603},1604{1605"item": "rosemary",1606"label": "furniture",1607"itemtype": "dist_super",1608"labeltype": "super"1609},1610{1611"item": "sheep",1612"label": "a vehicle",1613"itemtype": "dist_super",1614"labeltype": "super"1615},1616{1617"item": "sheep",1618"label": "furniture",1619"itemtype": "dist_super",1620"labeltype": "super"1621},1622{1623"item": "sheep",1624"label": "a plant",1625"itemtype": "dist_super",1626"labeltype": "super"1627},1628{1629"item": "sheep",1630"label": "a snack",1631"itemtype": "dist_super",1632"labeltype": "super"1633},1634{1635"item": "sheep",1636"label": "clothing",1637"itemtype": "dist_super",1638"labeltype": "super"1639},1640{1641"item": "snake",1642"label": "furniture",1643"itemtype": "dist_super",1644"labeltype": "super"1645},1646{1647"item": "snake",1648"label": "a snack",1649"itemtype": "dist_super",1650"labeltype": "super"1651},1652{1653"item": "snake",1654"label": "clothing",1655"itemtype": "dist_super",1656"labeltype": "super"1657},1658{1659"item": "snake",1660"label": "a vehicle",1661"itemtype": "dist_super",1662"labeltype": "super"1663},1664{1665"item": "snake",1666"label": "a plant",1667"itemtype": "dist_super",1668"labeltype": "super"1669},1670{1671"item": "socks",1672"label": "a plant",1673"itemtype": "dist_super",1674"labeltype": "super"1675},1676{1677"item": "socks",1678"label": "an animal",1679"itemtype": "dist_super",1680"labeltype": "super"1681},1682{1683"item": "socks",1684"label": "a vehicle",1685"itemtype": "dist_super",1686"labeltype": "super"1687},1688{1689"item": "socks",1690"label": "furniture",1691"itemtype": "dist_super",1692"labeltype": "super"1693},1694{1695"item": "socks",1696"label": "a snack",1697"itemtype": "dist_super",1698"labeltype": "super"1699},1700{1701"item": "squirrel",1702"label": "a vehicle",1703"itemtype": "dist_super",1704"labeltype": "super"1705},1706{1707"item": "squirrel",1708"label": "a snack",1709"itemtype": "dist_super",1710"labeltype": "super"1711},1712{1713"item": "squirrel",1714"label": "clothing",1715"itemtype": "dist_super",1716"labeltype": "super"1717},1718{1719"item": "squirrel",1720"label": "furniture",1721"itemtype": "dist_super",1722"labeltype": "super"1723},1724{1725"item": "squirrel",1726"label": "a plant",1727"itemtype": "dist_super",1728"labeltype": "super"1729},1730{1731"item": "train",1732"label": "clothing",1733"itemtype": "dist_super",1734"labeltype": "super"1735},1736{1737"item": "train",1738"label": "an animal",1739"itemtype": "dist_super",1740"labeltype": "super"1741},1742{1743"item": "train",1744"label": "a snack",1745"itemtype": "dist_super",1746"labeltype": "super"1747},1748{1749"item": "train",1750"label": "a plant",1751"itemtype": "dist_super",1752"labeltype": "super"1753},1754{1755"item": "train",1756"label": "furniture",1757"itemtype": "dist_super",1758"labeltype": "super"1759},1760{1761"item": "wardrobe",1762"label": "an animal",1763"itemtype": "dist_super",1764"labeltype": "super"1765},1766{1767"item": "wardrobe",1768"label": "a plant",1769"itemtype": "dist_super",1770"labeltype": "super"1771},1772{1773"item": "wardrobe",1774"label": "a vehicle",1775"itemtype": "dist_super",1776"labeltype": "super"1777},1778{1779"item": "wardrobe",1780"label": "a snack",1781"itemtype": "dist_super",1782"labeltype": "super"1783},1784{1785"item": "wardrobe",1786"label": "clothing",1787"itemtype": "dist_super",1788"labeltype": "super"1789}1790 ]).slice(0,10)1791 var items_distss = _.shuffle([1792 {1793"item": "koalabear",1794"label": "a black bear",1795"itemtype": "dist_samesuper",1796"labeltype": "sub"1797},1798{1799"item": "koalabear",1800"label": "a grizzly bear",1801"itemtype": "dist_samesuper",1802"labeltype": "sub"1803},1804{1805"item": "koalabear",1806"label": "a panda bear",1807"itemtype": "dist_samesuper",1808"labeltype": "sub"1809},1810{1811"item": "koalabear",1812"label": "a polar bear",1813"itemtype": "dist_samesuper",1814"labeltype": "sub"1815},1816{1817"item": "sparrow",1818"label": "an eagle",1819"itemtype": "dist_samesuper",1820"labeltype": "sub"1821},1822{1823"item": "sparrow",1824"label": "a hummingbird",1825"itemtype": "dist_samesuper",1826"labeltype": "sub"1827},1828{1829"item": "sparrow",1830"label": "a parrot",1831"itemtype": "dist_samesuper",1832"labeltype": "sub"1833},1834{1835"item": "sparrow",1836"label": "a pigeon",1837"itemtype": "dist_samesuper",1838"labeltype": "sub"1839},1840{1841"item": "greyhound",1842"label": "a dalmatian",1843"itemtype": "dist_samesuper",1844"labeltype": "sub"1845},1846{1847"item": "greyhound",1848"label": "a German Shepherd",1849"itemtype": "dist_samesuper",1850"labeltype": "sub"1851},1852{1853"item": "greyhound",1854"label": "a husky",1855"itemtype": "dist_samesuper",1856"labeltype": "sub"1857},1858{1859"item": "greyhound",1860"label": "a pug",1861"itemtype": "dist_samesuper",1862"labeltype": "sub"1863},1864{1865"item": "candycorn",1866"label": "gummybears",1867"itemtype": "dist_samesuper",1868"labeltype": "sub"1869},1870{1871"item": "candycorn",1872"label": "jellybeans",1873"itemtype": "dist_samesuper",1874"labeltype": "sub"1875},1876{1877"item": "candycorn",1878"label": "M&Ms",1879"itemtype": "dist_samesuper",1880"labeltype": "sub"1881},1882{1883"item": "candycorn",1884"label": "skittles",1885"itemtype": "dist_samesuper",1886"labeltype": "sub"1887},1888{1889"item": "lily",1890"label": "a daisy",1891"itemtype": "dist_samesuper",1892"labeltype": "sub"1893},1894{1895"item": "lily",1896"label": "a rose",1897"itemtype": "dist_samesuper",1898"labeltype": "sub"1899},1900{1901"item": "lily",1902"label": "a sunflower",1903"itemtype": "dist_samesuper",1904"labeltype": "sub"1905},1906{1907"item": "lily",1908"label": "a tulip",1909"itemtype": "dist_samesuper",1910"labeltype": "sub"1911},1912{1913"item": "sedan",1914"label": "a convertible",1915"itemtype": "dist_samesuper",1916"labeltype": "sub"1917},1918{1919"item": "sedan",1920"label": "a minivan",1921"itemtype": "dist_samesuper",1922"labeltype": "sub"1923},1924{1925"item": "sedan",1926"label": "a sports car",1927"itemtype": "dist_samesuper",1928"labeltype": "sub"1929},1930{1931"item": "sedan",1932"label": "an SUV",1933"itemtype": "dist_samesuper",1934"labeltype": "sub"1935},1936{1937"item": "discusfish",1938"label": "a catfish",1939"itemtype": "dist_samesuper",1940"labeltype": "sub"1941},1942{1943"item": "discusfish",1944"label": "a clownfish",1945"itemtype": "dist_samesuper",1946"labeltype": "sub"1947},1948{1949"item": "discusfish",1950"label": "a goldfish",1951"itemtype": "dist_samesuper",1952"labeltype": "sub"1953},1954{1955"item": "discusfish",1956"label": "a swordfish",1957"itemtype": "dist_samesuper",1958"labeltype": "sub"1959},1960{1961"item": "campshirt",1962"label": "a dress shirt",1963"itemtype": "dist_samesuper",1964"labeltype": "sub"1965},1966{1967"item": "campshirt",1968"label": "a Hawaii shirt",1969"itemtype": "dist_samesuper",1970"labeltype": "sub"1971},1972{1973"item": "campshirt",1974"label": "a polo shirt",1975"itemtype": "dist_samesuper",1976"labeltype": "sub"1977},1978{1979"item": "campshirt",1980"label": "a t-shirt",1981"itemtype": "dist_samesuper",1982"labeltype": "sub"1983},1984{1985"item": "sidetable",1986"label": "a bedside table",1987"itemtype": "dist_samesuper",1988"labeltype": "sub"1989},1990{1991"item": "sidetable",1992"label": "a coffee table",1993"itemtype": "dist_samesuper",1994"labeltype": "sub"1995},1996{1997"item": "sidetable",1998"label": "a dining table",1999"itemtype": "dist_samesuper",2000"labeltype": "sub"2001},2002{2003"item": "sidetable",2004"label": "a picnic table",2005"itemtype": "dist_samesuper",2006"labeltype": "sub"2007},2008{2009"item": "koalabear",2010"label": "a bear",2011"itemtype": "dist_samesuper",2012"labeltype": "basic"2013},2014{2015"item": "greyhound",2016"label": "a dog",2017"itemtype": "dist_samesuper",2018"labeltype": "basic"2019},2020{2021"item": "candycorn",2022"label": "candy",2023"itemtype": "dist_samesuper",2024"labeltype": "basic"2025},2026{2027"item": "sidetable",2028"label": "a table",2029"itemtype": "dist_samesuper",2030"labeltype": "basic"2031},2032{2033"item": "campshirt",2034"label": "a shirt",2035"itemtype": "dist_samesuper",2036"labeltype": "basic"2037},2038{2039"item": "discusfish",2040"label": "a fish",2041"itemtype": "dist_samesuper",2042"labeltype": "basic"2043},2044{2045"item": "sparrow",2046"label": "a bird",2047"itemtype": "dist_samesuper",2048"labeltype": "basic"2049},2050{2051"item": "lily",2052"label": "a flower",2053"itemtype": "dist_samesuper",2054"labeltype": "basic"2055},2056{2057"item": "sedan",2058"label": "a car",2059"itemtype": "dist_samesuper",2060"labeltype": "basic"2061},2062{2063"item": "koalabear",2064"label": "an animal",2065"itemtype": "dist_samesuper",2066"labeltype": "super"2067},2068{2069"item": "greyhound",2070"label": "an animal",2071"itemtype": "dist_samesuper",2072"labeltype": "super"2073},2074{2075"item": "candycorn",2076"label": "a snack",2077"itemtype": "dist_samesuper",2078"labeltype": "super"2079},2080{2081"item": "sidetable",2082"label": "furniture",2083"itemtype": "dist_samesuper",2084"labeltype": "super"2085},2086{2087"item": "campshirt",2088"label": "clothing",2089"itemtype": "dist_samesuper",2090"labeltype": "super"2091},2092{2093"item": "discusfish",2094"label": "an animal",2095"itemtype": "dist_samesuper",2096"labeltype": "super"2097},2098{2099"item": "sparrow",2100"label": "an animal",2101"itemtype": "dist_samesuper",2102"labeltype": "super"2103},2104{2105"item": "lily",2106"label": "a plant",2107"itemtype": "dist_samesuper",2108"labeltype": "super"2109},2110{2111"item": "sedan",2112"label": "a vehicle",2113"itemtype": "dist_samesuper",2114"labeltype": "super"2115},2116{2117"item": "ambulance",2118"label": "a sports car",2119"itemtype": "dist_samesuper",2120"labeltype": "sub"2121},2122{2123"item": "ambulance",2124"label": "a convertible",2125"itemtype": "dist_samesuper",2126"labeltype": "sub"2127},2128{2129"item": "ambulance",2130"label": "an SUV",2131"itemtype": "dist_samesuper",2132"labeltype": "sub"2133},2134{2135"item": "ambulance",2136"label": "a minivan",2137"itemtype": "dist_samesuper",2138"labeltype": "sub"2139},2140{2141"item": "ambulance",2142"label": "a car",2143"itemtype": "dist_samesuper",2144"labeltype": "basic"2145},2146{2147"item": "ambulance",2148"label": "a vehicle",2149"itemtype": "dist_samesuper",2150"labeltype": "super"2151},2152{2153"item": "bathrobe",2154"label": "a t-shirt",2155"itemtype": "dist_samesuper",2156"labeltype": "sub"2157},2158{2159"item": "bathrobe",2160"label": "a dress shirt",2161"itemtype": "dist_samesuper",2162"labeltype": "sub"2163},2164{2165"item": "bathrobe",2166"label": "a Hawaii shirt",2167"itemtype": "dist_samesuper",2168"labeltype": "sub"2169},2170{2171"item": "bathrobe",2172"label": "a polo shirt",2173"itemtype": "dist_samesuper",2174"labeltype": "sub"2175},2176{2177"item": "bathrobe",2178"label": "a shirt",2179"itemtype": "dist_samesuper",2180"labeltype": "basic"2181},2182{2183"item": "bathrobe",2184"label": "clothing",2185"itemtype": "dist_samesuper",2186"labeltype": "super"2187},2188{2189"item": "bed",2190"label": "a coffee table",2191"itemtype": "dist_samesuper",2192"labeltype": "sub"2193},2194{2195"item": "bed",2196"label": "a picnic table",2197"itemtype": "dist_samesuper",2198"labeltype": "sub"2199},2200{2201"item": "bed",2202"label": "a dining table",2203"itemtype": "dist_samesuper",2204"labeltype": "sub"2205},2206{2207"item": "bed",2208"label": "a table",2209"itemtype": "dist_samesuper",2210"labeltype": "basic"2211},2212{2213"item": "bed",2214"label": "furniture",2215"itemtype": "dist_samesuper",2216"labeltype": "super"2217},2218{2219"item": "bed",2220"label": "a bedside table",2221"itemtype": "dist_samesuper",2222"labeltype": "sub"2223},2224{2225"item": "bison",2226"label": "a panda bear",2227"itemtype": "dist_samesuper",2228"labeltype": "sub"2229},2230{2231"item": "bison",2232"label": "a hummingbird",2233"itemtype": "dist_samesuper",2234"labeltype": "sub"2235},2236{2237"item": "bison",2238"label": "a polar bear",2239"itemtype": "dist_samesuper",2240"labeltype": "sub"2241},2242{2243"item": "bison",2244"label": "a goldfish",2245"itemtype": "dist_samesuper",2246"labeltype": "sub"2247},2248{2249"item": "bison",2250"label": "a pug",2251"itemtype": "dist_samesuper",2252"labeltype": "sub"2253},2254{2255"item": "bison",2256"label": "a parrot",2257"itemtype": "dist_samesuper",2258"labeltype": "sub"2259},2260{2261"item": "bison",2262"label": "a swordfish",2263"itemtype": "dist_samesuper",2264"labeltype": "sub"2265},2266{2267"item": "bison",2268"label": "a black bear",2269"itemtype": "dist_samesuper",2270"labeltype": "sub"2271},2272{2273"item": "bison",2274"label": "an eagle",2275"itemtype": "dist_samesuper",2276"labeltype": "sub"2277},2278{2279"item": "bison",2280"label": "a catfish",2281"itemtype": "dist_samesuper",2282"labeltype": "sub"2283},2284{2285"item": "bison",2286"label": "a clownfish",2287"itemtype": "dist_samesuper",2288"labeltype": "sub"2289},2290{2291"item": "bison",2292"label": "a dalmatian",2293"itemtype": "dist_samesuper",2294"labeltype": "sub"2295},2296{2297"item": "bison",2298"label": "a German Shepherd",2299"itemtype": "dist_samesuper",2300"labeltype": "sub"2301},2302{2303"item": "bison",2304"label": "a bear",2305"itemtype": "dist_samesuper",2306"labeltype": "basic"2307},2308{2309"item": "bison",2310"label": "a bird",2311"itemtype": "dist_samesuper",2312"labeltype": "basic"2313},2314{2315"item": "bison",2316"label": "a fish",2317"itemtype": "dist_samesuper",2318"labeltype": "basic"2319},2320{2321"item": "bison",2322"label": "a dog",2323"itemtype": "dist_samesuper",2324"labeltype": "basic"2325},2326{2327"item": "bison",2328"label": "an animal",2329"itemtype": "dist_samesuper",2330"labeltype": "super"2331},2332{2333"item": "bison",2334"label": "a grizzly bear",2335"itemtype": "dist_samesuper",2336"labeltype": "sub"2337},2338{2339"item": "bookcase",2340"label": "a coffee table",2341"itemtype": "dist_samesuper",2342"labeltype": "sub"2343},2344{2345"item": "bookcase",2346"label": "a picnic table",2347"itemtype": "dist_samesuper",2348"labeltype": "sub"2349},2350{2351"item": "bookcase",2352"label": "a dining table",2353"itemtype": "dist_samesuper",2354"labeltype": "sub"2355},2356{2357"item": "bookcase",2358"label": "a bedside table",2359"itemtype": "dist_samesuper",2360"labeltype": "sub"2361},2362{2363"item": "bookcase",2364"label": "a table",2365"itemtype": "dist_samesuper",2366"labeltype": "basic"2367},2368{2369"item": "bookcase",2370"label": "furniture",2371"itemtype": "dist_samesuper",2372"labeltype": "super"2373},2374{2375"item": "chick",2376"label": "a parrot",2377"itemtype": "dist_samesuper",2378"labeltype": "sub"2379},2380{2381"item": "chick",2382"label": "a husky",2383"itemtype": "dist_samesuper",2384"labeltype": "sub"2385},2386{2387"item": "chick",2388"label": "a polar bear",2389"itemtype": "dist_samesuper",2390"labeltype": "sub"2391},2392{2393"item": "chick",2394"label": "a pigeon",2395"itemtype": "dist_samesuper",2396"labeltype": "sub"2397},2398{2399"item": "chick",2400"label": "a catfish",2401"itemtype": "dist_samesuper",2402"labeltype": "sub"2403},2404{2405"item": "chick",2406"label": "a German Shepherd",2407"itemtype": "dist_samesuper",2408"labeltype": "sub"2409},2410{2411"item": "chick",2412"label": "a panda bear",2413"itemtype": "dist_samesuper",2414"labeltype": "sub"2415},2416{2417"item": "chick",2418"label": "a pug",2419"itemtype": "dist_samesuper",2420"labeltype": "sub"2421},2422{2423"item": "chick",2424"label": "a hummingbird",2425"itemtype": "dist_samesuper",2426"labeltype": "sub"2427},2428{2429"item": "chick",2430"label": "a goldfish",2431"itemtype": "dist_samesuper",2432"labeltype": "sub"2433},2434{2435"item": "chick",2436"label": "a swordfish",2437"itemtype": "dist_samesuper",2438"labeltype": "sub"2439},2440{2441"item": "chick",2442"label": "a dog",2443"itemtype": "dist_samesuper",2444"labeltype": "basic"2445},2446{2447"item": "chick",2448"label": "a bird",2449"itemtype": "dist_samesuper",2450"labeltype": "basic"2451},2452{2453"item": "chick",2454"label": "a bear",2455"itemtype": "dist_samesuper",2456"labeltype": "basic"2457},2458{2459"item": "chick",2460"label": "a fish",2461"itemtype": "dist_samesuper",2462"labeltype": "basic"2463},2464{2465"item": "chick",2466"label": "an animal",2467"itemtype": "dist_samesuper",2468"labeltype": "super"2469},2470{2471"item": "chick",2472"label": "a black bear",2473"itemtype": "dist_samesuper",2474"labeltype": "sub"2475},2476{2477"item": "chick",2478"label": "a dalmatian",2479"itemtype": "dist_samesuper",2480"labeltype": "sub"2481},2482{2483"item": "chips",2484"label": "M&Ms",2485"itemtype": "dist_samesuper",2486"labeltype": "sub"2487},2488{2489"item": "chips",2490"label": "gummybears",2491"itemtype": "dist_samesuper",2492"labeltype": "sub"2493},2494{2495"item": "chips",2496"label": "skittles",2497"itemtype": "dist_samesuper",2498"labeltype": "sub"2499},2500{2501"item": "chips",2502"label": "jellybeans",2503"itemtype": "dist_samesuper",2504"labeltype": "sub"2505},2506{2507"item": "chips",2508"label": "candy",2509"itemtype": "dist_samesuper",2510"labeltype": "basic"2511},2512{2513"item": "chips",2514"label": "a snack",2515"itemtype": "dist_samesuper",2516"labeltype": "super"2517},2518{2519"item": "cookies",2520"label": "skittles",2521"itemtype": "dist_samesuper",2522"labeltype": "sub"2523},2524{2525"item": "cookies",2526"label": "jellybeans",2527"itemtype": "dist_samesuper",2528"labeltype": "sub"2529},2530{2531"item": "cookies",2532"label": "M&Ms",2533"itemtype": "dist_samesuper",2534"labeltype": "sub"2535},2536{2537"item": "cookies",2538"label": "gummybears",2539"itemtype": "dist_samesuper",2540"labeltype": "sub"2541},2542{2543"item": "cookies",2544"label": "candy",2545"itemtype": "dist_samesuper",2546"labeltype": "basic"2547},2548{2549"item": "cookies",2550"label": "a snack",2551"itemtype": "dist_samesuper",2552"labeltype": "super"2553},2554{2555"item": "cow",2556"label": "a catfish",2557"itemtype": "dist_samesuper",2558"labeltype": "sub"2559},2560{2561"item": "cow",2562"label": "a polar bear",2563"itemtype": "dist_samesuper",2564"labeltype": "sub"2565},2566{2567"item": "cow",2568"label": "a grizzly bear",2569"itemtype": "dist_samesuper",2570"labeltype": "sub"2571},2572{2573"item": "cow",2574"label": "a black bear",2575"itemtype": "dist_samesuper",2576"labeltype": "sub"2577},2578{2579"item": "cow",2580"label": "a German Shepherd",2581"itemtype": "dist_samesuper",2582"labeltype": "sub"2583},2584{2585"item": "cow",2586"label": "a goldfish",2587"itemtype": "dist_samesuper",2588"labeltype": "sub"2589},2590{2591"item": "cow",2592"label": "a panda bear",2593"itemtype": "dist_samesuper",2594"labeltype": "sub"2595},2596{2597"item": "cow",2598"label": "a swordfish",2599"itemtype": "dist_samesuper",2600"labeltype": "sub"2601},2602{2603"item": "cow",2604"label": "a husky",2605"itemtype": "dist_samesuper",2606"labeltype": "sub"2607},2608{2609"item": "cow",2610"label": "an eagle",2611"itemtype": "dist_samesuper",2612"labeltype": "sub"2613},2614{2615"item": "cow",2616"label": "a clownfish",2617"itemtype": "dist_samesuper",2618"labeltype": "sub"2619},2620{2621"item": "cow",2622"label": "a dalmatian",2623"itemtype": "dist_samesuper",2624"labeltype": "sub"2625},2626{2627"item": "cow",2628"label": "a parrot",2629"itemtype": "dist_samesuper",2630"labeltype": "sub"2631},2632{2633"item": "cow",2634"label": "a fish",2635"itemtype": "dist_samesuper",2636"labeltype": "basic"2637},2638{2639"item": "cow",2640"label": "a bear",2641"itemtype": "dist_samesuper",2642"labeltype": "basic"2643},2644{2645"item": "cow",2646"label": "a dog",2647"itemtype": "dist_samesuper",2648"labeltype": "basic"2649},2650{2651"item": "cow",2652"label": "a bird",2653"itemtype": "dist_samesuper",2654"labeltype": "basic"2655},2656{2657"item": "cow",2658"label": "an animal",2659"itemtype": "dist_samesuper",2660"labeltype": "super"2661},2662{2663"item": "cow",2664"label": "a pigeon",2665"itemtype": "dist_samesuper",2666"labeltype": "sub"2667},2668{2669"item": "crocodile",2670"label": "a pigeon",2671"itemtype": "dist_samesuper",2672"labeltype": "sub"2673},2674{2675"item": "crocodile",2676"label": "a grizzly bear",2677"itemtype": "dist_samesuper",2678"labeltype": "sub"2679},2680{2681"item": "crocodile",2682"label": "a German Shepherd",2683"itemtype": "dist_samesuper",2684"labeltype": "sub"2685},2686{2687"item": "crocodile",2688"label": "a husky",2689"itemtype": "dist_samesuper",2690"labeltype": "sub"2691},2692{2693"item": "crocodile",2694"label": "a pug",2695"itemtype": "dist_samesuper",2696"labeltype": "sub"2697},2698{2699"item": "crocodile",2700"label": "a polar bear",2701"itemtype": "dist_samesuper",2702"labeltype": "sub"2703},2704{2705"item": "crocodile",2706"label": "a panda bear",2707"itemtype": "dist_samesuper",2708"labeltype": "sub"2709},2710{2711"item": "crocodile",2712"label": "a dalmatian",2713"itemtype": "dist_samesuper",2714"labeltype": "sub"2715},2716{2717"item": "crocodile",2718"label": "a bird",2719"itemtype": "dist_samesuper",2720"labeltype": "basic"2721},2722{2723"item": "crocodile",2724"label": "a bear",2725"itemtype": "dist_samesuper",2726"labeltype": "basic"2727},2728{2729"item": "crocodile",2730"label": "a dog",2731"itemtype": "dist_samesuper",2732"labeltype": "basic"2733},2734{2735"item": "crocodile",2736"label": "an animal",2737"itemtype": "dist_samesuper",2738"labeltype": "super"2739},2740{2741"item": "crocodile",2742"label": "a parrot",2743"itemtype": "dist_samesuper",2744"labeltype": "sub"2745},2746{2747"item": "crocodile",2748"label": "a hummingbird",2749"itemtype": "dist_samesuper",2750"labeltype": "sub"2751},2752{2753"item": "crocodile",2754"label": "a clownfish",2755"itemtype": "dist_samesuper",2756"labeltype": "sub"2757},2758{2759"item": "crocodile",2760"label": "a fish",2761"itemtype": "dist_samesuper",2762"labeltype": "basic"2763},2764{2765"item": "dress",2766"label": "a Hawaii shirt",2767"itemtype": "dist_samesuper",2768"labeltype": "sub"2769},2770{2771"item": "dress",2772"label": "a polo shirt",2773"itemtype": "dist_samesuper",2774"labeltype": "sub"2775},2776{2777"item": "dress",2778"label": "a t-shirt",2779"itemtype": "dist_samesuper",2780"labeltype": "sub"2781},2782{2783"item": "dress",2784"label": "a dress shirt",2785"itemtype": "dist_samesuper",2786"labeltype": "sub"2787},2788{2789"item": "dress",2790"label": "a shirt",2791"itemtype": "dist_samesuper",2792"labeltype": "basic"2793},2794{2795"item": "dress",2796"label": "clothing",2797"itemtype": "dist_samesuper",2798"labeltype": "super"2799},2800{2801"item": "elephant",2802"label": "a panda bear",2803"itemtype": "dist_samesuper",2804"labeltype": "sub"2805},2806{2807"item": "elephant",2808"label": "an eagle",2809"itemtype": "dist_samesuper",2810"labeltype": "sub"2811},2812{2813"item": "elephant",2814"label": "a swordfish",2815"itemtype": "dist_samesuper",2816"labeltype": "sub"2817},2818{2819"item": "elephant",2820"label": "a hummingbird",2821"itemtype": "dist_samesuper",2822"labeltype": "sub"2823},2824{2825"item": "elephant",2826"label": "a parrot",2827"itemtype": "dist_samesuper",2828"labeltype": "sub"2829},2830{2831"item": "elephant",2832"label": "a black bear",2833"itemtype": "dist_samesuper",2834"labeltype": "sub"2835},2836{2837"item": "elephant",2838"label": "a polar bear",2839"itemtype": "dist_samesuper",2840"labeltype": "sub"2841},2842{2843"item": "elephant",2844"label": "a catfish",2845"itemtype": "dist_samesuper",2846"labeltype": "sub"2847},2848{2849"item": "elephant",2850"label": "a pigeon",2851"itemtype": "dist_samesuper",2852"labeltype": "sub"2853},2854{2855"item": "elephant",2856"label": "a German Shepherd",2857"itemtype": "dist_samesuper",2858"labeltype": "sub"2859},2860{2861"item": "elephant",2862"label": "a clownfish",2863"itemtype": "dist_samesuper",2864"labeltype": "sub"2865},2866{2867"item": "elephant",2868"label": "a grizzly bear",2869"itemtype": "dist_samesuper",2870"labeltype": "sub"2871},2872{2873"item": "elephant",2874"label": "a bear",2875"itemtype": "dist_samesuper",2876"labeltype": "basic"2877},2878{2879"item": "elephant",2880"label": "a bird",2881"itemtype": "dist_samesuper",2882"labeltype": "basic"2883},2884{2885"item": "elephant",2886"label": "a fish",2887"itemtype": "dist_samesuper",2888"labeltype": "basic"2889},2890{2891"item": "elephant",2892"label": "a dog",2893"itemtype": "dist_samesuper",2894"labeltype": "basic"2895},2896{2897"item": "elephant",2898"label": "an animal",2899"itemtype": "dist_samesuper",2900"labeltype": "super"2901},2902{2903"item": "elephant",2904"label": "a dalmatian",2905"itemtype": "dist_samesuper",2906"labeltype": "sub"2907},2908{2909"item": "firetruck",2910"label": "a convertible",2911"itemtype": "dist_samesuper",2912"labeltype": "sub"2913},2914{2915"item": "firetruck",2916"label": "a sports car",2917"itemtype": "dist_samesuper",2918"labeltype": "sub"2919},2920{2921"item": "firetruck",2922"label": "an SUV",2923"itemtype": "dist_samesuper",2924"labeltype": "sub"2925},2926{2927"item": "firetruck",2928"label": "a minivan",2929"itemtype": "dist_samesuper",2930"labeltype": "sub"2931},2932{2933"item": "firetruck",2934"label": "a car",2935"itemtype": "dist_samesuper",2936"labeltype": "basic"2937},2938{2939"item": "firetruck",2940"label": "a vehicle",2941"itemtype": "dist_samesuper",2942"labeltype": "super"2943},2944{2945"item": "gloves",2946"label": "a polo shirt",2947"itemtype": "dist_samesuper",2948"labeltype": "sub"2949},2950{2951"item": "gloves",2952"label": "a Hawaii shirt",2953"itemtype": "dist_samesuper",2954"labeltype": "sub"2955},2956{2957"item": "gloves",2958"label": "a t-shirt",2959"itemtype": "dist_samesuper",2960"labeltype": "sub"2961},2962{2963"item": "gloves",2964"label": "a dress shirt",2965"itemtype": "dist_samesuper",2966"labeltype": "sub"2967},2968{2969"item": "gloves",2970"label": "a shirt",2971"itemtype": "dist_samesuper",2972"labeltype": "basic"2973},2974{2975"item": "gloves",2976"label": "clothing",2977"itemtype": "dist_samesuper",2978"labeltype": "super"2979},2980{2981"item": "grasses",2982"label": "a rose",2983"itemtype": "dist_samesuper",2984"labeltype": "sub"2985},2986{2987"item": "grasses",2988"label": "a sunflower",2989"itemtype": "dist_samesuper",2990"labeltype": "sub"2991},2992{2993"item": "grasses",2994"label": "a daisy",2995"itemtype": "dist_samesuper",2996"labeltype": "sub"2997},2998{2999"item": "grasses",3000"label": "a tulip",3001"itemtype": "dist_samesuper",3002"labeltype": "sub"3003},3004{3005"item": "grasses",3006"label": "a flower",3007"itemtype": "dist_samesuper",3008"labeltype": "basic"3009},3010{3011"item": "grasses",3012"label": "a plant",3013"itemtype": "dist_samesuper",3014"labeltype": "super"3015},3016{3017"item": "horse",3018"label": "a goldfish",3019"itemtype": "dist_samesuper",3020"labeltype": "sub"3021},3022{3023"item": "horse",3024"label": "a clownfish",3025"itemtype": "dist_samesuper",3026"labeltype": "sub"3027},3028{3029"item": "horse",3030"label": "a German Shepherd",3031"itemtype": "dist_samesuper",3032"labeltype": "sub"3033},3034{3035"item": "horse",3036"label": "a husky",3037"itemtype": "dist_samesuper",3038"labeltype": "sub"3039},3040{3041"item": "horse",3042"label": "a dalmatian",3043"itemtype": "dist_samesuper",3044"labeltype": "sub"3045},3046{3047"item": "horse",3048"label": "a hummingbird",3049"itemtype": "dist_samesuper",3050"labeltype": "sub"3051},3052{3053"item": "horse",3054"label": "a swordfish",3055"itemtype": "dist_samesuper",3056"labeltype": "sub"3057},3058{3059"item": "horse",3060"label": "a black bear",3061"itemtype": "dist_samesuper",3062"labeltype": "sub"3063},3064{3065"item": "horse",3066"label": "a panda bear",3067"itemtype": "dist_samesuper",3068"labeltype": "sub"3069},3070{3071"item": "horse",3072"label": "a grizzly bear",3073"itemtype": "dist_samesuper",3074"labeltype": "sub"3075},3076{3077"item": "horse",3078"label": "a fish",3079"itemtype": "dist_samesuper",3080"labeltype": "basic"3081},3082{3083"item": "horse",3084"label": "a dog",3085"itemtype": "dist_samesuper",3086"labeltype": "basic"3087},3088{3089"item": "horse",3090"label": "a bird",3091"itemtype": "dist_samesuper",3092"labeltype": "basic"3093},3094{3095"item": "horse",3096"label": "a bear",3097"itemtype": "dist_samesuper",3098"labeltype": "basic"3099},3100{3101"item": "horse",3102"label": "an animal",3103"itemtype": "dist_samesuper",3104"labeltype": "super"3105},3106{3107"item": "horse",3108"label": "an eagle",3109"itemtype": "dist_samesuper",3110"labeltype": "sub"3111},3112{3113"item": "horse",3114"label": "a catfish",3115"itemtype": "dist_samesuper",3116"labeltype": "sub"3117},3118{3119"item": "horse",3120"label": "a polar bear",3121"itemtype": "dist_samesuper",3122"labeltype": "sub"3123},3124{3125"item": "iguana",3126"label": "a catfish",3127"itemtype": "dist_samesuper",3128"labeltype": "sub"3129},3130{3131"item": "iguana",3132"label": "a pigeon",3133"itemtype": "dist_samesuper",3134"labeltype": "sub"3135},3136{3137"item": "iguana",3138"label": "a swordfish",3139"itemtype": "dist_samesuper",3140"labeltype": "sub"3141},3142{3143"item": "iguana",3144"label": "a German Shepherd",3145"itemtype": "dist_samesuper",3146"labeltype": "sub"3147},3148{3149"item": "iguana",3150"label": "a panda bear",3151"itemtype": "dist_samesuper",3152"labeltype": "sub"3153},3154{3155"item": "iguana",3156"label": "a clownfish",3157"itemtype": "dist_samesuper",3158"labeltype": "sub"3159},3160{3161"item": "iguana",3162"label": "a goldfish",3163"itemtype": "dist_samesuper",3164"labeltype": "sub"3165},3166{3167"item": "iguana",3168"label": "a black bear",3169"itemtype": "dist_samesuper",3170"labeltype": "sub"3171},3172{3173"item": "iguana",3174"label": "a pug",3175"itemtype": "dist_samesuper",3176"labeltype": "sub"3177},3178{3179"item": "iguana",3180"label": "a grizzly bear",3181"itemtype": "dist_samesuper",3182"labeltype": "sub"3183},3184{3185"item": "iguana",3186"label": "a parrot",3187"itemtype": "dist_samesuper",3188"labeltype": "sub"3189},3190{3191"item": "iguana",3192"label": "a fish",3193"itemtype": "dist_samesuper",3194"labeltype": "basic"3195},3196{3197"item": "iguana",3198"label": "a bird",3199"itemtype": "dist_samesuper",3200"labeltype": "basic"3201},3202{3203"item": "iguana",3204"label": "a dog",3205"itemtype": "dist_samesuper",3206"labeltype": "basic"3207},3208{3209"item": "iguana",3210"label": "a bear",3211"itemtype": "dist_samesuper",3212"labeltype": "basic"3213},3214{3215"item": "iguana",3216"label": "an animal",3217"itemtype": "dist_samesuper",3218"labeltype": "super"3219},3220{3221"item": "iguana",3222"label": "an eagle",3223"itemtype": "dist_samesuper",3224"labeltype": "sub"3225},3226{3227"item": "iguana",3228"label": "a husky",3229"itemtype": "dist_samesuper",3230"labeltype": "sub"3231},3232{3233"item": "ivy",3234"label": "a sunflower",3235"itemtype": "dist_samesuper",3236"labeltype": "sub"3237},3238{3239"item": "ivy",3240"label": "a tulip",3241"itemtype": "dist_samesuper",3242"labeltype": "sub"3243},3244{3245"item": "ivy",3246"label": "a daisy",3247"itemtype": "dist_samesuper",3248"labeltype": "sub"3249},3250{3251"item": "ivy",3252"label": "a rose",3253"itemtype": "dist_samesuper",3254"labeltype": "sub"3255},3256{3257"item": "ivy",3258"label": "a flower",3259"itemtype": "dist_samesuper",3260"labeltype": "basic"3261},3262{3263"item": "ivy",3264"label": "a plant",3265"itemtype": "dist_samesuper",3266"labeltype": "super"3267},3268{3269"item": "kitten",3270"label": "a goldfish",3271"itemtype": "dist_samesuper",3272"labeltype": "sub"3273},3274{3275"item": "kitten",3276"label": "a panda bear",3277"itemtype": "dist_samesuper",3278"labeltype": "sub"3279},3280{3281"item": "kitten",3282"label": "a German Shepherd",3283"itemtype": "dist_samesuper",3284"labeltype": "sub"3285},3286{3287"item": "kitten",3288"label": "a pigeon",3289"itemtype": "dist_samesuper",3290"labeltype": "sub"3291},3292{3293"item": "kitten",3294"label": "a black bear",3295"itemtype": "dist_samesuper",3296"labeltype": "sub"3297},3298{3299"item": "kitten",3300"label": "a polar bear",3301"itemtype": "dist_samesuper",3302"labeltype": "sub"3303},3304{3305"item": "kitten",3306"label": "a swordfish",3307"itemtype": "dist_samesuper",3308"labeltype": "sub"3309},3310{3311"item": "kitten",3312"label": "a parrot",3313"itemtype": "dist_samesuper",3314"labeltype": "sub"3315},3316{3317"item": "kitten",3318"label": "a clownfish",3319"itemtype": "dist_samesuper",3320"labeltype": "sub"3321},3322{3323"item": "kitten",3324"label": "a catfish",3325"itemtype": "dist_samesuper",3326"labeltype": "sub"3327},3328{3329"item": "kitten",3330"label": "a hummingbird",3331"itemtype": "dist_samesuper",3332"labeltype": "sub"3333},3334{3335"item": "kitten",3336"label": "a grizzly bear",3337"itemtype": "dist_samesuper",3338"labeltype": "sub"3339},3340{3341"item": "kitten",3342"label": "a pug",3343"itemtype": "dist_samesuper",3344"labeltype": "sub"3345},3346{3347"item": "kitten",3348"label": "a fish",3349"itemtype": "dist_samesuper",3350"labeltype": "basic"3351},3352{3353"item": "kitten",3354"label": "a bear",3355"itemtype": "dist_samesuper",3356"labeltype": "basic"3357},3358{3359"item": "kitten",3360"label": "a dog",3361"itemtype": "dist_samesuper",3362"labeltype": "basic"3363},3364{3365"item": "kitten",3366"label": "a bird",3367"itemtype": "dist_samesuper",3368"labeltype": "basic"3369},3370{3371"item": "kitten",3372"label": "an animal",3373"itemtype": "dist_samesuper",3374"labeltype": "super"3375},3376{3377"item": "kitten",3378"label": "a dalmatian",3379"itemtype": "dist_samesuper",3380"labeltype": "sub"3381},3382{3383"item": "lamp",3384"label": "a bedside table",3385"itemtype": "dist_samesuper",3386"labeltype": "sub"3387},3388{3389"item": "lamp",3390"label": "a picnic table",3391"itemtype": "dist_samesuper",3392"labeltype": "sub"3393},3394{3395"item": "lamp",3396"label": "a dining table",3397"itemtype": "dist_samesuper",3398"labeltype": "sub"3399},3400{3401"item": "lamp",3402"label": "a table",3403"itemtype": "dist_samesuper",3404"labeltype": "basic"3405},3406{3407"item": "lamp",3408"label": "furniture",3409"itemtype": "dist_samesuper",3410"labeltype": "super"3411},3412{3413"item": "lamp",3414"label": "a coffee table",3415"itemtype": "dist_samesuper",3416"labeltype": "sub"3417},3418{3419"item": "lion",3420"label": "a German Shepherd",3421"itemtype": "dist_samesuper",3422"labeltype": "sub"3423},3424{3425"item": "lion",3426"label": "a pug",3427"itemtype": "dist_samesuper",3428"labeltype": "sub"3429},3430{3431"item": "lion",3432"label": "a catfish",3433"itemtype": "dist_samesuper",3434"labeltype": "sub"3435},3436{3437"item": "lion",3438"label": "a parrot",3439"itemtype": "dist_samesuper",3440"labeltype": "sub"3441},3442{3443"item": "lion",3444"label": "an eagle",3445"itemtype": "dist_samesuper",3446"labeltype": "sub"3447},3448{3449"item": "lion",3450"label": "a swordfish",3451"itemtype": "dist_samesuper",3452"labeltype": "sub"3453},3454{3455"item": "lion",3456"label": "a goldfish",3457"itemtype": "dist_samesuper",3458"labeltype": "sub"3459},3460{3461"item": "lion",3462"label": "a dog",3463"itemtype": "dist_samesuper",3464"labeltype": "basic"3465},3466{3467"item": "lion",3468"label": "a fish",3469"itemtype": "dist_samesuper",3470"labeltype": "basic"3471},3472{3473"item": "lion",3474"label": "a bird",3475"itemtype": "dist_samesuper",3476"labeltype": "basic"3477},3478{3479"item": "lion",3480"label": "an animal",3481"itemtype": "dist_samesuper",3482"labeltype": "super"3483},3484{3485"item": "lion",3486"label": "a black bear",3487"itemtype": "dist_samesuper",3488"labeltype": "sub"3489},3490{3491"item": "lion",3492"label": "a clownfish",3493"itemtype": "dist_samesuper",3494"labeltype": "sub"3495},3496{3497"item": "lion",3498"label": "a pigeon",3499"itemtype": "dist_samesuper",3500"labeltype": "sub"3501},3502{3503"item": "lion",3504"label": "a grizzly bear",3505"itemtype": "dist_samesuper",3506"labeltype": "sub"3507},3508{3509"item": "lion",3510"label": "a hummingbird",3511"itemtype": "dist_samesuper",3512"labeltype": "sub"3513},3514{3515"item": "lion",3516"label": "a polar bear",3517"itemtype": "dist_samesuper",3518"labeltype": "sub"3519},3520{3521"item": "lion",3522"label": "a dalmatian",3523"itemtype": "dist_samesuper",3524"labeltype": "sub"3525},3526{3527"item": "lion",3528"label": "a bear",3529"itemtype": "dist_samesuper",3530"labeltype": "basic"3531},3532{3533"item": "lobster",3534"label": "a parrot",3535"itemtype": "dist_samesuper",3536"labeltype": "sub"3537},3538{3539"item": "lobster",3540"label": "a husky",3541"itemtype": "dist_samesuper",3542"labeltype": "sub"3543},3544{3545"item": "lobster",3546"label": "a pug",3547"itemtype": "dist_samesuper",3548"labeltype": "sub"3549},3550{3551"item": "lobster",3552"label": "a black bear",3553"itemtype": "dist_samesuper",3554"labeltype": "sub"3555},3556{3557"item": "lobster",3558"label": "a catfish",3559"itemtype": "dist_samesuper",3560"labeltype": "sub"3561},3562{3563"item": "lobster",3564"label": "a grizzly bear",3565"itemtype": "dist_samesuper",3566"labeltype": "sub"3567},3568{3569"item": "lobster",3570"label": "a goldfish",3571"itemtype": "dist_samesuper",3572"labeltype": "sub"3573},3574{3575"item": "lobster",3576"label": "a clownfish",3577"itemtype": "dist_samesuper",3578"labeltype": "sub"3579},3580{3581"item": "lobster",3582"label": "a dalmatian",3583"itemtype": "dist_samesuper",3584"labeltype": "sub"3585},3586{3587"item": "lobster",3588"label": "a swordfish",3589"itemtype": "dist_samesuper",3590"labeltype": "sub"3591},3592{3593"item": "lobster",3594"label": "a pigeon",3595"itemtype": "dist_samesuper",3596"labeltype": "sub"3597},3598{3599"item": "lobster",3600"label": "a bird",3601"itemtype": "dist_samesuper",3602"labeltype": "basic"3603},3604{3605"item": "lobster",3606"label": "a dog",3607"itemtype": "dist_samesuper",3608"labeltype": "basic"3609},3610{3611"item": "lobster",3612"label": "a bear",3613"itemtype": "dist_samesuper",3614"labeltype": "basic"3615},3616{3617"item": "lobster",3618"label": "a fish",3619"itemtype": "dist_samesuper",3620"labeltype": "basic"3621},3622{3623"item": "lobster",3624"label": "an animal",3625"itemtype": "dist_samesuper",3626"labeltype": "super"3627},3628{3629"item": "lobster",3630"label": "a panda bear",3631"itemtype": "dist_samesuper",3632"labeltype": "sub"3633},3634{3635"item": "lobster",3636"label": "a German Shepherd",3637"itemtype": "dist_samesuper",3638"labeltype": "sub"3639},3640{3641"item": "motorcycle",3642"label": "a sports car",3643"itemtype": "dist_samesuper",3644"labeltype": "sub"3645},3646{3647"item": "motorcycle",3648"label": "a minivan",3649"itemtype": "dist_samesuper",3650"labeltype": "sub"3651},3652{3653"item": "motorcycle",3654"label": "an SUV",3655"itemtype": "dist_samesuper",3656"labeltype": "sub"3657},3658{3659"item": "motorcycle",3660"label": "a convertible",3661"itemtype": "dist_samesuper",3662"labeltype": "sub"3663},3664{3665"item": "motorcycle",3666"label": "a car",3667"itemtype": "dist_samesuper",3668"labeltype": "basic"3669},3670{3671"item": "motorcycle",3672"label": "a vehicle",3673"itemtype": "dist_samesuper",3674"labeltype": "super"3675},3676{3677"item": "pig",3678"label": "a clownfish",3679"itemtype": "dist_samesuper",3680"labeltype": "sub"3681},3682{3683"item": "pig",3684"label": "a German Shepherd",3685"itemtype": "dist_samesuper",3686"labeltype": "sub"3687},3688{3689"item": "pig",3690"label": "a polar bear",3691"itemtype": "dist_samesuper",3692"labeltype": "sub"3693},3694{3695"item": "pig",3696"label": "a catfish",3697"itemtype": "dist_samesuper",3698"labeltype": "sub"3699},3700{3701"item": "pig",3702"label": "a panda bear",3703"itemtype": "dist_samesuper",3704"labeltype": "sub"3705},3706{3707"item": "pig",3708"label": "a pug",3709"itemtype": "dist_samesuper",3710"labeltype": "sub"3711},3712{3713"item": "pig",3714"label": "a dalmatian",3715"itemtype": "dist_samesuper",3716"labeltype": "sub"3717},3718{3719"item": "pig",3720"label": "an eagle",3721"itemtype": "dist_samesuper",3722"labeltype": "sub"3723},3724{3725"item": "pig",3726"label": "a parrot",3727"itemtype": "dist_samesuper",3728"labeltype": "sub"3729},3730{3731"item": "pig",3732"label": "a pigeon",3733"itemtype": "dist_samesuper",3734"labeltype": "sub"3735},3736{3737"item": "pig",3738"label": "a swordfish",3739"itemtype": "dist_samesuper",3740"labeltype": "sub"3741},3742{3743"item": "pig",3744"label": "a fish",3745"itemtype": "dist_samesuper",3746"labeltype": "basic"3747},3748{3749"item": "pig",3750"label": "a dog",3751"itemtype": "dist_samesuper",3752"labeltype": "basic"3753},3754{3755"item": "pig",3756"label": "a bear",3757"itemtype": "dist_samesuper",3758"labeltype": "basic"3759},3760{3761"item": "pig",3762"label": "a bird",3763"itemtype": "dist_samesuper",3764"labeltype": "basic"3765},3766{3767"item": "pig",3768"label": "an animal",3769"itemtype": "dist_samesuper",3770"labeltype": "super"3771},3772{3773"item": "pig",3774"label": "a husky",3775"itemtype": "dist_samesuper",3776"labeltype": "sub"3777},3778{3779"item": "pig",3780"label": "a goldfish",3781"itemtype": "dist_samesuper",3782"labeltype": "sub"3783},3784{3785"item": "pig",3786"label": "a black bear",3787"itemtype": "dist_samesuper",3788"labeltype": "sub"3789},3790{3791"item": "pig",3792"label": "a hummingbird",3793"itemtype": "dist_samesuper",3794"labeltype": "sub"3795},3796{3797"item": "popcorn",3798"label": "gummybears",3799"itemtype": "dist_samesuper",3800"labeltype": "sub"3801},3802{3803"item": "popcorn",3804"label": "jellybeans",3805"itemtype": "dist_samesuper",3806"labeltype": "sub"3807},3808{3809"item": "popcorn",3810"label": "skittles",3811"itemtype": "dist_samesuper",3812"labeltype": "sub"3813},3814{3815"item": "popcorn",3816"label": "M&Ms",3817"itemtype": "dist_samesuper",3818"labeltype": "sub"3819},3820{3821"item": "popcorn",3822"label": "candy",3823"itemtype": "dist_samesuper",3824"labeltype": "basic"3825},3826{3827"item": "popcorn",3828"label": "a snack",3829"itemtype": "dist_samesuper",3830"labeltype": "super"3831},3832{3833"item": "pottedplant",3834"label": "a rose",3835"itemtype": "dist_samesuper",3836"labeltype": "sub"3837},3838{3839"item": "pottedplant",3840"label": "a tulip",3841"itemtype": "dist_samesuper",3842"labeltype": "sub"3843},3844{3845"item": "pottedplant",3846"label": "a daisy",3847"itemtype": "dist_samesuper",3848"labeltype": "sub"3849},3850{3851"item": "pottedplant",3852"label": "a sunflower",3853"itemtype": "dist_samesuper",3854"labeltype": "sub"3855},3856{3857"item": "pottedplant",3858"label": "a flower",3859"itemtype": "dist_samesuper",3860"labeltype": "basic"3861},3862{3863"item": "pottedplant",3864"label": "a plant",3865"itemtype": "dist_samesuper",3866"labeltype": "super"3867},3868{3869"item": "pretzels",3870"label": "M&Ms",3871"itemtype": "dist_samesuper",3872"labeltype": "sub"3873},3874{3875"item": "pretzels",3876"label": "skittles",3877"itemtype": "dist_samesuper",3878"labeltype": "sub"3879},3880{3881"item": "pretzels",3882"label": "gummybears",3883"itemtype": "dist_samesuper",3884"labeltype": "sub"3885},3886{3887"item": "pretzels",3888"label": "jellybeans",3889"itemtype": "dist_samesuper",3890"labeltype": "sub"3891},3892{3893"item": "pretzels",3894"label": "candy",3895"itemtype": "dist_samesuper",3896"labeltype": "basic"3897},3898{3899"item": "pretzels",3900"label": "a snack",3901"itemtype": "dist_samesuper",3902"labeltype": "super"3903},3904{3905"item": "rabbit",3906"label": "a panda bear",3907"itemtype": "dist_samesuper",3908"labeltype": "sub"3909},3910{3911"item": "rabbit",3912"label": "a hummingbird",3913"itemtype": "dist_samesuper",3914"labeltype": "sub"3915},3916{3917"item": "rabbit",3918"label": "a dalmatian",3919"itemtype": "dist_samesuper",3920"labeltype": "sub"3921},3922{3923"item": "rabbit",3924"label": "a pug",3925"itemtype": "dist_samesuper",3926"labeltype": "sub"3927},3928{3929"item": "rabbit",3930"label": "a pigeon",3931"itemtype": "dist_samesuper",3932"labeltype": "sub"3933},3934{3935"item": "rabbit",3936"label": "a goldfish",3937"itemtype": "dist_samesuper",3938"labeltype": "sub"3939},3940{3941"item": "rabbit",3942"label": "a parrot",3943"itemtype": "dist_samesuper",3944"labeltype": "sub"3945},3946{3947"item": "rabbit",3948"label": "a black bear",3949"itemtype": "dist_samesuper",3950"labeltype": "sub"3951},3952{3953"item": "rabbit",3954"label": "an eagle",3955"itemtype": "dist_samesuper",3956"labeltype": "sub"3957},3958{3959"item": "rabbit",3960"label": "a polar bear",3961"itemtype": "dist_samesuper",3962"labeltype": "sub"3963},3964{3965"item": "rabbit",3966"label": "a bear",3967"itemtype": "dist_samesuper",3968"labeltype": "basic"3969},3970{3971"item": "rabbit",3972"label": "a bird",3973"itemtype": "dist_samesuper",3974"labeltype": "basic"3975},3976{3977"item": "rabbit",3978"label": "a dog",3979"itemtype": "dist_samesuper",3980"labeltype": "basic"3981},3982{3983"item": "rabbit",3984"label": "a fish",3985"itemtype": "dist_samesuper",3986"labeltype": "basic"3987},3988{3989"item": "rabbit",3990"label": "an animal",3991"itemtype": "dist_samesuper",3992"labeltype": "super"3993},3994{3995"item": "rabbit",3996"label": "a catfish",3997"itemtype": "dist_samesuper",3998"labeltype": "sub"3999},4000{4001"item": "rabbit",4002"label": "a husky",4003"itemtype": "dist_samesuper",4004"labeltype": "sub"4005},4006{4007"item": "rabbit",4008"label": "a clownfish",4009"itemtype": "dist_samesuper",4010"labeltype": "sub"4011},4012{4013"item": "rabbit",4014"label": "a grizzly bear",4015"itemtype": "dist_samesuper",4016"labeltype": "sub"4017},4018{4019"item": "rhino",4020"label": "a goldfish",4021"itemtype": "dist_samesuper",4022"labeltype": "sub"4023},4024{4025"item": "rhino",4026"label": "a swordfish",4027"itemtype": "dist_samesuper",4028"labeltype": "sub"4029},4030{4031"item": "rhino",4032"label": "a pug",4033"itemtype": "dist_samesuper",4034"labeltype": "sub"4035},4036{4037"item": "rhino",4038"label": "an eagle",4039"itemtype": "dist_samesuper",4040"labeltype": "sub"4041},4042{4043"item": "rhino",4044"label": "a pigeon",4045"itemtype": "dist_samesuper",4046"labeltype": "sub"4047},4048{4049"item": "rhino",4050"label": "a parrot",4051"itemtype": "dist_samesuper",4052"labeltype": "sub"4053},4054{4055"item": "rhino",4056"label": "a panda bear",4057"itemtype": "dist_samesuper",4058"labeltype": "sub"4059},4060{4061"item": "rhino",4062"label": "a polar bear",4063"itemtype": "dist_samesuper",4064"labeltype": "sub"4065},4066{4067"item": "rhino",4068"label": "a hummingbird",4069"itemtype": "dist_samesuper",4070"labeltype": "sub"4071},4072{4073"item": "rhino",4074"label": "a clownfish",4075"itemtype": "dist_samesuper",4076"labeltype": "sub"4077},4078{4079"item": "rhino",4080"label": "a dalmatian",4081"itemtype": "dist_samesuper",4082"labeltype": "sub"4083},4084{4085"item": "rhino",4086"label": "a fish",4087"itemtype": "dist_samesuper",4088"labeltype": "basic"4089},4090{4091"item": "rhino",4092"label": "a dog",4093"itemtype": "dist_samesuper",4094"labeltype": "basic"4095},4096{4097"item": "rhino",4098"label": "a bird",4099"itemtype": "dist_samesuper",4100"labeltype": "basic"4101},4102{4103"item": "rhino",4104"label": "a bear",4105"itemtype": "dist_samesuper",4106"labeltype": "basic"4107},4108{4109"item": "rhino",4110"label": "an animal",4111"itemtype": "dist_samesuper",4112"labeltype": "super"4113},4114{4115"item": "rhino",4116"label": "a German Shepherd",4117"itemtype": "dist_samesuper",4118"labeltype": "sub"4119},4120{4121"item": "rosemary",4122"label": "a daisy",4123"itemtype": "dist_samesuper",4124"labeltype": "sub"4125},4126{4127"item": "rosemary",4128"label": "a sunflower",4129"itemtype": "dist_samesuper",4130"labeltype": "sub"4131},4132{4133"item": "rosemary",4134"label": "a rose",4135"itemtype": "dist_samesuper",4136"labeltype": "sub"4137},4138{4139"item": "rosemary",4140"label": "a tulip",4141"itemtype": "dist_samesuper",4142"labeltype": "sub"4143},4144{4145"item": "rosemary",4146"label": "a flower",4147"itemtype": "dist_samesuper",4148"labeltype": "basic"4149},4150{4151"item": "rosemary",4152"label": "a plant",4153"itemtype": "dist_samesuper",4154"labeltype": "super"4155},4156{4157"item": "sheep",4158"label": "a grizzly bear",4159"itemtype": "dist_samesuper",4160"labeltype": "sub"4161},4162{4163"item": "sheep",4164"label": "a goldfish",4165"itemtype": "dist_samesuper",4166"labeltype": "sub"4167},4168{4169"item": "sheep",4170"label": "a catfish",4171"itemtype": "dist_samesuper",4172"labeltype": "sub"4173},4174{4175"item": "sheep",4176"label": "a swordfish",4177"itemtype": "dist_samesuper",4178"labeltype": "sub"4179},4180{4181"item": "sheep",4182"label": "a pug",4183"itemtype": "dist_samesuper",4184"labeltype": "sub"4185},4186{4187"item": "sheep",4188"label": "a German Shepherd",4189"itemtype": "dist_samesuper",4190"labeltype": "sub"4191},4192{4193"item": "sheep",4194"label": "a pigeon",4195"itemtype": "dist_samesuper",4196"labeltype": "sub"4197},4198{4199"item": "sheep",4200"label": "a dalmatian",4201"itemtype": "dist_samesuper",4202"labeltype": "sub"4203},4204{4205"item": "sheep",4206"label": "an eagle",4207"itemtype": "dist_samesuper",4208"labeltype": "sub"4209},4210{4211"item": "sheep",4212"label": "a parrot",4213"itemtype": "dist_samesuper",4214"labeltype": "sub"4215},4216{4217"item": "sheep",4218"label": "a bear",4219"itemtype": "dist_samesuper",4220"labeltype": "basic"4221},4222{4223"item": "sheep",4224"label": "a fish",4225"itemtype": "dist_samesuper",4226"labeltype": "basic"4227},4228{4229"item": "sheep",4230"label": "a dog",4231"itemtype": "dist_samesuper",4232"labeltype": "basic"4233},4234{4235"item": "sheep",4236"label": "a bird",4237"itemtype": "dist_samesuper",4238"labeltype": "basic"4239},4240{4241"item": "sheep",4242"label": "an animal",4243"itemtype": "dist_samesuper",4244"labeltype": "super"4245},4246{4247"item": "sheep",4248"label": "a panda bear",4249"itemtype": "dist_samesuper",4250"labeltype": "sub"4251},4252{4253"item": "sheep",4254"label": "a black bear",4255"itemtype": "dist_samesuper",4256"labeltype": "sub"4257},4258{4259"item": "sheep",4260"label": "a clownfish",4261"itemtype": "dist_samesuper",4262"labeltype": "sub"4263},4264{4265"item": "sheep",4266"label": "a husky",4267"itemtype": "dist_samesuper",4268"labeltype": "sub"4269},4270{4271"item": "sheep",4272"label": "a polar bear",4273"itemtype": "dist_samesuper",4274"labeltype": "sub"4275},4276{4277"item": "snake",4278"label": "a clownfish",4279"itemtype": "dist_samesuper",4280"labeltype": "sub"4281},4282{4283"item": "snake",4284"label": "a husky",4285"itemtype": "dist_samesuper",4286"labeltype": "sub"4287},4288{4289"item": "snake",4290"label": "an eagle",4291"itemtype": "dist_samesuper",4292"labeltype": "sub"4293},4294{4295"item": "snake",4296"label": "a polar bear",4297"itemtype": "dist_samesuper",4298"labeltype": "sub"4299},4300{4301"item": "snake",4302"label": "a goldfish",4303"itemtype": "dist_samesuper",4304"labeltype": "sub"4305},4306{4307"item": "snake",4308"label": "a grizzly bear",4309"itemtype": "dist_samesuper",4310"labeltype": "sub"4311},4312{4313"item": "snake",4314"label": "a pug",4315"itemtype": "dist_samesuper",4316"labeltype": "sub"4317},4318{4319"item": "snake",4320"label": "a hummingbird",4321"itemtype": "dist_samesuper",4322"labeltype": "sub"4323},4324{4325"item": "snake",4326"label": "a parrot",4327"itemtype": "dist_samesuper",4328"labeltype": "sub"4329},4330{4331"item": "snake",4332"label": "a fish",4333"itemtype": "dist_samesuper",4334"labeltype": "basic"4335},4336{4337"item": "snake",4338"label": "a dog",4339"itemtype": "dist_samesuper",4340"labeltype": "basic"4341},4342{4343"item": "snake",4344"label": "a bird",4345"itemtype": "dist_samesuper",4346"labeltype": "basic"4347},4348{4349"item": "snake",4350"label": "a bear",4351"itemtype": "dist_samesuper",4352"labeltype": "basic"4353},4354{4355"item": "snake",4356"label": "an animal",4357"itemtype": "dist_samesuper",4358"labeltype": "super"4359},4360{4361"item": "snake",4362"label": "a catfish",4363"itemtype": "dist_samesuper",4364"labeltype": "sub"4365},4366{4367"item": "snake",4368"label": "a dalmatian",4369"itemtype": "dist_samesuper",4370"labeltype": "sub"4371},4372{4373"item": "snake",4374"label": "a panda bear",4375"itemtype": "dist_samesuper",4376"labeltype": "sub"4377},4378{4379"item": "socks",4380"label": "a t-shirt",4381"itemtype": "dist_samesuper",4382"labeltype": "sub"4383},4384{4385"item": "socks",4386"label": "a dress shirt",4387"itemtype": "dist_samesuper",4388"labeltype": "sub"4389},4390{4391"item": "socks",4392"label": "a Hawaii shirt",4393"itemtype": "dist_samesuper",4394"labeltype": "sub"4395},4396{4397"item": "socks",4398"label": "a polo shirt",4399"itemtype": "dist_samesuper",4400"labeltype": "sub"4401},4402{4403"item": "socks",4404"label": "a shirt",4405"itemtype": "dist_samesuper",4406"labeltype": "basic"4407},4408{4409"item": "socks",4410"label": "clothing",4411"itemtype": "dist_samesuper",4412"labeltype": "super"4413},4414{4415"item": "squirrel",4416"label": "a pug",4417"itemtype": "dist_samesuper",4418"labeltype": "sub"4419},4420{4421"item": "squirrel",4422"label": "a parrot",4423"itemtype": "dist_samesuper",4424"labeltype": "sub"4425},4426{4427"item": "squirrel",4428"label": "a dalmatian",4429"itemtype": "dist_samesuper",4430"labeltype": "sub"4431},4432{4433"item": "squirrel",4434"label": "a clownfish",4435"itemtype": "dist_samesuper",4436"labeltype": "sub"4437},4438{4439"item": "squirrel",4440"label": "a goldfish",4441"itemtype": "dist_samesuper",4442"labeltype": "sub"4443},4444{4445"item": "squirrel",4446"label": "a catfish",4447"itemtype": "dist_samesuper",4448"labeltype": "sub"4449},4450{4451"item": "squirrel",4452"label": "a grizzly bear",4453"itemtype": "dist_samesuper",4454"labeltype": "sub"4455},4456{4457"item": "squirrel",4458"label": "a hummingbird",4459"itemtype": "dist_samesuper",4460"labeltype": "sub"4461},4462{4463"item": "squirrel",4464"label": "a polar bear",4465"itemtype": "dist_samesuper",4466"labeltype": "sub"4467},4468{4469"item": "squirrel",4470"label": "a husky",4471"itemtype": "dist_samesuper",4472"labeltype": "sub"4473},4474{4475"item": "squirrel",4476"label": "a pigeon",4477"itemtype": "dist_samesuper",4478"labeltype": "sub"4479},4480{4481"item": "squirrel",4482"label": "a German Shepherd",4483"itemtype": "dist_samesuper",4484"labeltype": "sub"4485},4486{4487"item": "squirrel",4488"label": "a panda bear",4489"itemtype": "dist_samesuper",4490"labeltype": "sub"4491},4492{4493"item": "squirrel",4494"label": "a dog",4495"itemtype": "dist_samesuper",4496"labeltype": "basic"4497},4498{4499"item": "squirrel",4500"label": "a bird",4501"itemtype": "dist_samesuper",4502"labeltype": "basic"4503},4504{4505"item": "squirrel",4506"label": "a fish",4507"itemtype": "dist_samesuper",4508"labeltype": "basic"4509},4510{4511"item": "squirrel",4512"label": "a bear",4513"itemtype": "dist_samesuper",4514"labeltype": "basic"4515},4516{4517"item": "squirrel",4518"label": "an animal",4519"itemtype": "dist_samesuper",4520"labeltype": "super"4521},4522{4523"item": "squirrel",4524"label": "a black bear",4525"itemtype": "dist_samesuper",4526"labeltype": "sub"4527},4528{4529"item": "squirrel",4530"label": "an eagle",4531"itemtype": "dist_samesuper",4532"labeltype": "sub"4533},4534{4535"item": "train",4536"label": "a minivan",4537"itemtype": "dist_samesuper",4538"labeltype": "sub"4539},4540{4541"item": "train",4542"label": "a sports car",4543"itemtype": "dist_samesuper",4544"labeltype": "sub"4545},4546{4547"item": "train",4548"label": "a convertible",4549"itemtype": "dist_samesuper",4550"labeltype": "sub"4551},4552{4553"item": "train",4554"label": "an SUV",4555"itemtype": "dist_samesuper",4556"labeltype": "sub"4557},4558{4559"item": "train",4560"label": "a car",4561"itemtype": "dist_samesuper",4562"labeltype": "basic"4563},4564{4565"item": "train",4566"label": "a vehicle",4567"itemtype": "dist_samesuper",4568"labeltype": "super"4569},4570{4571"item": "wardrobe",4572"label": "a bedside table",4573"itemtype": "dist_samesuper",4574"labeltype": "sub"4575},4576{4577"item": "wardrobe",4578"label": "a picnic table",4579"itemtype": "dist_samesuper",4580"labeltype": "sub"4581},4582{4583"item": "wardrobe",4584"label": "a coffee table",4585"itemtype": "dist_samesuper",4586"labeltype": "sub"4587},4588{4589"item": "wardrobe",4590"label": "a dining table",4591"itemtype": "dist_samesuper",4592"labeltype": "sub"4593},4594{4595"item": "wardrobe",4596"label": "a table",4597"itemtype": "dist_samesuper",4598"labeltype": "basic"4599},4600{4601"item": "wardrobe",4602"label": "furniture",4603"itemtype": "dist_samesuper",4604"labeltype": "super"4605}]).slice(0,28) 4606/​/​ old items:4607/​/​ var items = _.shuffle([4608/​/​ /​/​dog1s typeLabel 364609/​/​ {4610/​/​ "item": "blackBear",4611/​/​ "label": "a black bear"4612/​/​ },4613/​/​ {4614/​/​ "item": "grizzlyBear",4615/​/​ "label": "a grizzly bear"4616/​/​ },4617/​/​ {4618/​/​ "item": "pandaBear",4619/​/​ "label": "a panda bear"4620/​/​ },4621/​/​ {4622/​/​ "item": "polarBear",4623/​/​ "label": "a polar bear"4624/​/​ },4625/​/​ {4626/​/​ "item": "eagle",4627/​/​ "label": "an eagle"4628/​/​ },4629/​/​ {4630/​/​ "item": "hummingBird",4631/​/​ "label": "a hummingbird"4632/​/​ },4633/​/​ {4634/​/​ "item": "parrot",4635/​/​ "label": "a parrot"4636/​/​ },4637/​/​ {4638/​/​ "item": "pigeon",4639/​/​ "label": "a pigeon"4640/​/​ },4641/​/​ {4642/​/​ "item": "dalmatian",4643/​/​ "label": "a Dalmatian"4644/​/​ },4645/​/​ {4646/​/​ "item": "germanShepherd",4647/​/​ "label": "a German Shepherd"4648/​/​ },4649/​/​ {4650/​/​ "item": "husky",4651/​/​ "label": "a Husky"4652/​/​ },4653/​/​ {4654/​/​ "item": "pug",4655/​/​ "label": "a Pug"4656/​/​ },4657/​/​ {4658/​/​ "item": "gummyBears",4659/​/​ "label": "gummy bears"4660/​/​ },4661/​/​ {4662/​/​ "item": "jellyBeans",4663/​/​ "label": "jelly beans"4664/​/​ },4665/​/​ {4666/​/​ "item": "mnMs",4667/​/​ "label": "M&M's"4668/​/​ },4669/​/​ {4670/​/​ "item": "skittles",4671/​/​ "label": "Skittles"4672/​/​ },4673/​/​ {4674/​/​ "item": "daisy",4675/​/​ "label": "a daisy"4676/​/​ },4677/​/​ {4678/​/​ "item": "rose",4679/​/​ "label": "a rose"4680/​/​ },4681/​/​ {4682/​/​ "item": "sunflower",4683/​/​ "label": "a sunflower"4684/​/​ },4685/​/​ {4686/​/​ "item": "tulip",4687/​/​ "label": "a tulip"4688/​/​ },4689/​/​ {4690/​/​ "item": "convertible",4691/​/​ "label": "a convertible"4692/​/​ },4693/​/​ {4694/​/​ "item": "minivan",4695/​/​ "label": "a minivan"4696/​/​ },4697/​/​ {4698/​/​ "item": "sportsCar",4699/​/​ "label": "a sports car"4700/​/​ },4701/​/​ {4702/​/​ "item": "suv",4703/​/​ "label": "an SUV"4704/​/​ },4705/​/​ {4706/​/​ "item": "catfish",4707/​/​ "label": "a catfish"4708/​/​ },4709/​/​ {4710/​/​ "item": "clownFish",4711/​/​ "label": "a clownfish"4712/​/​ },4713/​/​ {4714/​/​ "item": "goldFish",4715/​/​ "label": "a goldfish"4716/​/​ },4717/​/​ {4718/​/​ "item": "swordFish",4719/​/​ "label": "a swordfish"4720/​/​ },4721/​/​ {4722/​/​ "item": "dressShirt",4723/​/​ "label": "a dress shirt"4724/​/​ },4725/​/​ {4726/​/​ "item": "hawaiiShirt",4727/​/​ "label": "a Hawaii shirt"4728/​/​ },4729/​/​ {4730/​/​ "item": "poloShirt",4731/​/​ "label": "a polo shirt"4732/​/​ },4733/​/​ {4734/​/​ "item": "tShirt",4735/​/​ "label": "a T-Shirt"4736/​/​ },4737/​/​ {4738/​/​ "item": "bedsideTable",4739/​/​ "label": "a bedside table"4740/​/​ },4741/​/​ {4742/​/​ "item": "coffeeTable",4743/​/​ "label": "a coffee table"4744/​/​ },4745/​/​ {4746/​/​ "item": "diningTable",4747/​/​ "label": "a dining table"4748/​/​ },4749/​/​ {4750/​/​ "item": "picnicTable",4751/​/​ "label": "a picnic table"4752/​/​ },4753/​/​ /​/​dog1s BasiclevelLabel 364754/​/​ {4755/​/​ "item": "blackBear",4756/​/​ "label": "a bear"4757/​/​ },4758/​/​ {4759/​/​ "item": "grizzlyBear",4760/​/​ "label": "a bear"4761/​/​ },4762/​/​ {4763/​/​ "item": "pandaBear",4764/​/​ "label": "a bear"4765/​/​ },4766/​/​ {4767/​/​ "item": "polarBear",4768/​/​ "label": "a bear"4769/​/​ },4770/​/​ {4771/​/​ "item": "eagle",4772/​/​ "label": "a bird"4773/​/​ },4774/​/​ {4775/​/​ "item": "hummingBird",4776/​/​ "label": "a bird"4777/​/​ },4778/​/​ {4779/​/​ "item": "parrot",4780/​/​ "label": "a bird"4781/​/​ },4782/​/​ {4783/​/​ "item": "pigeon",4784/​/​ "label": "a bird"4785/​/​ },4786/​/​ {4787/​/​ "item": "dalmatian",4788/​/​ "label": "a dog"4789/​/​ },4790/​/​ {4791/​/​ "item": "germanShepherd",4792/​/​ "label": "a dog"4793/​/​ },4794/​/​ {4795/​/​ "item": "husky",4796/​/​ "label": "a dog"4797/​/​ },4798/​/​ {4799/​/​ "item": "pug",4800/​/​ "label": "a dog"4801/​/​ },4802/​/​ {4803/​/​ "item": "gummyBears",4804/​/​ "label": "candy"4805/​/​ },4806/​/​ {4807/​/​ "item": "jellyBeans",4808/​/​ "label": "candy"4809/​/​ },4810/​/​ {4811/​/​ "item": "mnMs",4812/​/​ "label": "candy"4813/​/​ },4814/​/​ {4815/​/​ "item": "skittles",4816/​/​ "label": "candy"4817/​/​ },4818/​/​ {4819/​/​ "item": "daisy",4820/​/​ "label": "a flower"4821/​/​ },4822/​/​ {4823/​/​ "item": "rose",4824/​/​ "label": "a flower",4825/​/​ },4826/​/​ {4827/​/​ "item": "sunflower",4828/​/​ "label": "a flower"4829/​/​ },4830/​/​ {4831/​/​ "item": "tulip",4832/​/​ "label": "a flower"4833/​/​ },4834/​/​ {4835/​/​ "item": "convertible",4836/​/​ "label": "a car"4837/​/​ },4838/​/​ {4839/​/​ "item": "minivan",4840/​/​ "label": "a car"4841/​/​ },4842/​/​ {4843/​/​ "item": "sportsCar",4844/​/​ "label": "a car"4845/​/​ },4846/​/​ {4847/​/​ "item": "suv",4848/​/​ "label": "a car"4849/​/​ },4850/​/​ {4851/​/​ "item": "catfish",4852/​/​ "label": "a fish"4853/​/​ },4854/​/​ {4855/​/​ "item": "clownFish",4856/​/​ "label": "a fish"4857/​/​ },4858/​/​ {4859/​/​ "item": "goldFish",4860/​/​ "label": "a fish"4861/​/​ },4862/​/​ {4863/​/​ "item": "swordFish",4864/​/​ "label": "a fish"4865/​/​ },4866/​/​ {4867/​/​ "item": "dressShirt",4868/​/​ "label": "a shirt"4869/​/​ },4870/​/​ {4871/​/​ "item": "hawaiiShirt",4872/​/​ "label": "a shirt"4873/​/​ },4874/​/​ {4875/​/​ "item": "poloShirt",4876/​/​ "label": "a shirt"4877/​/​ },4878/​/​ {4879/​/​ "item": "tShirt",4880/​/​ "label": "a shirt"4881/​/​ },4882/​/​ {4883/​/​ "item": "bedsideTable",4884/​/​ "label": "a table"4885/​/​ },4886/​/​ {4887/​/​ "item": "coffeeTable",4888/​/​ "label": "a table"4889/​/​ },4890/​/​ {4891/​/​ "item": "diningTable",4892/​/​ "label": "a table"4893/​/​ },4894/​/​ {4895/​/​ "item": "picnicTable",4896/​/​ "label": "a table"4897/​/​ },4898/​/​4899/​/​4900/​/​ /​/​dog1s domainLabel 364901/​/​ {4902/​/​ "item": "blackBear",4903/​/​ "label": "an animal"4904/​/​ },4905/​/​ {4906/​/​ "item": "grizzlyBear",4907/​/​ "label": "an animal"4908/​/​ },4909/​/​ {4910/​/​ "item": "pandaBear",4911/​/​ "label": "an animal"4912/​/​ },4913/​/​ {4914/​/​ "item": "polarBear",4915/​/​ "label": "an animal"4916/​/​ },4917/​/​ {4918/​/​ "item": "eagle",4919/​/​ "label": "an animal"4920/​/​ },4921/​/​ {4922/​/​ "item": "hummingBird",4923/​/​ "label": "an animal"4924/​/​ },4925/​/​ {4926/​/​ "item": "parrot",4927/​/​ "label": "an animal"4928/​/​ },4929/​/​ {4930/​/​ "item": "pigeon",4931/​/​ "label": "an animal"4932/​/​ },4933/​/​ {4934/​/​ "item": "dalmatian",4935/​/​ "label": "an animal"4936/​/​ },4937/​/​ {4938/​/​ "item": "germanShepherd",4939/​/​ "label": "an animal"4940/​/​ },4941/​/​ {4942/​/​ "item": "husky",4943/​/​ "label": "an animal"4944/​/​ },4945/​/​ {4946/​/​ "item": "pug",4947/​/​ "label": "an animal"4948/​/​ },4949/​/​ {4950/​/​ "item": "gummyBears",4951/​/​ "label": "a snack"4952/​/​ },4953/​/​ {4954/​/​ "item": "jellyBeans",4955/​/​ "label": "a snack"4956/​/​ },4957/​/​ {4958/​/​ "item": "mnMs",4959/​/​ "label": "a snack"4960/​/​ },4961/​/​ {4962/​/​ "item": "skittles",4963/​/​ "label": "a snack"4964/​/​ },4965/​/​ {4966/​/​ "item": "daisy",4967/​/​ "label": "a plant"4968/​/​ },4969/​/​ {4970/​/​ "item": "rose",4971/​/​ "label": "a plant"4972/​/​ },4973/​/​ {4974/​/​ "item": "sunflower",4975/​/​ "label": "a plant"4976/​/​ },4977/​/​ {4978/​/​ "item": "tulip",4979/​/​ "label": "a plant"4980/​/​ },4981/​/​ {4982/​/​ "item": "convertible",4983/​/​ "label": "a vehicle"4984/​/​ },4985/​/​ {4986/​/​ "item": "minivan",4987/​/​ "label": "a vehicle"4988/​/​ },4989/​/​ {4990/​/​ "item": "sportsCar",4991/​/​ "label": "a vehicle"4992/​/​ },4993/​/​ {4994/​/​ "item": "suv",4995/​/​ "label": "a vehicle"4996/​/​ },4997/​/​ {4998/​/​ "item": "catfish",4999/​/​ "label": "an animal"5000/​/​ },5001/​/​ {5002/​/​ "item": "clownFish",5003/​/​ "label": "an animal"5004/​/​ },5005/​/​ {5006/​/​ "item": "goldFish",5007/​/​ "label": "an animal"5008/​/​ },5009/​/​ {5010/​/​ "item": "swordFish",5011/​/​ "label": "an animal"5012/​/​ },5013/​/​ {5014/​/​ "item": "dressShirt",5015/​/​ "label": "clothing"5016/​/​ },5017/​/​ {5018/​/​ "item": "hawaiiShirt",5019/​/​ "label": "clothing"5020/​/​ },5021/​/​ {5022/​/​ "item": "poloShirt",5023/​/​ "label": "clothing"5024/​/​ },5025/​/​ {5026/​/​ "item": "tShirt",5027/​/​ "label": "clothing"5028/​/​ },5029/​/​ {5030/​/​ "item": "bedsideTable",5031/​/​ "label": "furniture"5032/​/​ },5033/​/​ {5034/​/​ "item": "coffeeTable",5035/​/​ "label": "furniture"5036/​/​ },5037/​/​ {5038/​/​ "item": "diningTable",5039/​/​ "label": "furniture"5040/​/​ },5041/​/​ {5042/​/​ "item": "picnicTable",5043/​/​ "label": "furniture"5044/​/​ },5045/​/​5046/​/​5047/​/​ /​/​dog2s typeLabel 365048/​/​ {5049/​/​ "item": "koalaBear",5050/​/​ "label": "a black bear"5051/​/​ },5052/​/​ {5053/​/​ "item": "koalaBear",5054/​/​ "label": "a grizzly bear"5055/​/​ },5056/​/​ {5057/​/​ "item": "koalaBear",5058/​/​ "label": "a panda bear"5059/​/​ },5060/​/​ {5061/​/​ "item": "koalaBear",5062/​/​ "label": "a polar bear"5063/​/​ },5064/​/​5065/​/​ {5066/​/​ "item": "sparrow",5067/​/​ "label": "an eagle"5068/​/​ },5069/​/​ {5070/​/​ "item": "sparrow",5071/​/​ "label": "a hummingbird"5072/​/​ },5073/​/​ {5074/​/​ "item": "sparrow",5075/​/​ "label": "a parrot"5076/​/​ },5077/​/​ {5078/​/​ "item": "sparrow",5079/​/​ "label": "a pigeon"5080/​/​ },5081/​/​5082/​/​ {5083/​/​ "item": "greyhound",5084/​/​ "label": "a Dalmatian"5085/​/​ },5086/​/​ {5087/​/​ "item": "greyhound",5088/​/​ "label": "a German Shepherd"5089/​/​ },5090/​/​ {5091/​/​ "item": "greyhound",5092/​/​ "label": "a Husky"5093/​/​ },5094/​/​ {5095/​/​ "item": "greyhound",5096/​/​ "label": "a Pug"5097/​/​ },5098/​/​5099/​/​ {5100/​/​ "item": "candyCorn",5101/​/​ "label": "gummy bears"5102/​/​ },5103/​/​ {5104/​/​ "item": "candyCorn",5105/​/​ "label": "jelly beans"5106/​/​ },5107/​/​ {5108/​/​ "item": "candyCorn",5109/​/​ "label": "M&M's"5110/​/​ },5111/​/​ {5112/​/​ "item": "candyCorn",5113/​/​ "label": "Skittles"5114/​/​ },5115/​/​5116/​/​ {5117/​/​ "item": "lily",5118/​/​ "label": "a daisy"5119/​/​ },5120/​/​ {5121/​/​ "item": "lily",5122/​/​ "label": "a rose"5123/​/​ },5124/​/​ {5125/​/​ "item": "lily",5126/​/​ "label": "a sunflower"5127/​/​ },5128/​/​ {5129/​/​ "item": "lily",5130/​/​ "label": "a tulip"5131/​/​ },5132/​/​5133/​/​ {5134/​/​ "item": "sedan",5135/​/​ "label": "a convertible"5136/​/​ },5137/​/​ {5138/​/​ "item": "sedan",5139/​/​ "label": "a minivan"5140/​/​ },5141/​/​ {5142/​/​ "item": "sedan",5143/​/​ "label": "a sports car"5144/​/​ },5145/​/​ {5146/​/​ "item": "sedan",5147/​/​ "label": "an SUV"5148/​/​ },5149/​/​5150/​/​ {5151/​/​ "item": "discusFish",5152/​/​ "label": "a catfish"5153/​/​ },5154/​/​ {5155/​/​ "item": "discusFish",5156/​/​ "label": "a clownfish"5157/​/​ },5158/​/​ {5159/​/​ "item": "discusFish",5160/​/​ "label": "a goldfish"5161/​/​ },5162/​/​ {5163/​/​ "item": "discusFish",5164/​/​ "label": "a swordfish"5165/​/​ },5166/​/​5167/​/​ {5168/​/​ "item": "campShirt",5169/​/​ "label": "a dress shirt"5170/​/​ },5171/​/​ {5172/​/​ "item": "campShirt",5173/​/​ "label": "a Hawaii shirt"5174/​/​ },5175/​/​ {5176/​/​ "item": "campShirt",5177/​/​ "label": "a polo shirt"5178/​/​ },5179/​/​ {5180/​/​ "item": "campShirt",5181/​/​ "label": "a T-Shirt"5182/​/​ },5183/​/​5184/​/​ {5185/​/​ "item": "sideTable",5186/​/​ "label": "a bedside table"5187/​/​ },5188/​/​ {5189/​/​ "item": "sideTable",5190/​/​ "label": "a coffee table"5191/​/​ },5192/​/​ {5193/​/​ "item": "sideTable",5194/​/​ "label": "a dining table"5195/​/​ },5196/​/​ {5197/​/​ "item": "sideTable",5198/​/​ "label": "a picnic table"5199/​/​ },5200/​/​5201/​/​ /​/​dog2s BLLabel 95202/​/​ {5203/​/​ "item": "koalaBear",5204/​/​ "label": "a bear"5205/​/​ },5206/​/​ {5207/​/​ "item": "greyhound",5208/​/​ "label": "a dog"5209/​/​ },5210/​/​ {5211/​/​ "item": "candyCorn",5212/​/​ "label": "candy"5213/​/​ },5214/​/​ {5215/​/​ "item": "sideTable",5216/​/​ "label": "a table"5217/​/​ },5218/​/​ {5219/​/​ "item": "campShirt",5220/​/​ "label": "a shirt"5221/​/​ },5222/​/​ {5223/​/​ "item": "discusFish",5224/​/​ "label": "a fish"5225/​/​ },5226/​/​ {5227/​/​ "item": "sparrow",5228/​/​ "label": "a bird"5229/​/​ },5230/​/​ {5231/​/​ "item": "lily",5232/​/​ "label": "a flower"5233/​/​ },5234/​/​ {5235/​/​ "item": "sedan",5236/​/​ "label": "a car"5237/​/​ },5238/​/​5239/​/​ /​/​dog2s DomainLabel 95240/​/​ {5241/​/​ "item": "koalaBear",5242/​/​ "label": "an animal"5243/​/​ },5244/​/​ {5245/​/​ "item": "greyhound",5246/​/​ "label": "an animal"5247/​/​ },5248/​/​ {5249/​/​ "item": "candyCorn",5250/​/​ "label": "a snack"5251/​/​ },5252/​/​ {5253/​/​ "item": "sideTable",5254/​/​ "label": "furniture"5255/​/​ },5256/​/​ {5257/​/​ "item": "campShirt",5258/​/​ "label": "clothing"5259/​/​ },5260/​/​ {5261/​/​ "item": "discusFish",5262/​/​ "label": "an animal"5263/​/​ },5264/​/​ {5265/​/​ "item": "sparrow",5266/​/​ "label": "an animal"5267/​/​ },5268/​/​ {5269/​/​ "item": "lily",5270/​/​ "label": "a plant"5271/​/​ },5272/​/​ {5273/​/​ "item": "sedan",5274/​/​ "label": "a vehicle"5275/​/​ },5276/​/​5277/​/​ /​/​ Everything else:5278/​/​ /​/​ ambulance5279/​/​ {5280/​/​ "item": "ambulance",5281/​/​ "label": "a sports car"5282/​/​ },5283/​/​ {5284/​/​ "item": "ambulance",5285/​/​ "label": "a convertible"5286/​/​ },5287/​/​ {5288/​/​ "item": "ambulance",5289/​/​ "label": "an SUV"5290/​/​ },5291/​/​{5292/​/​ "item": "ambulance",5293/​/​ "label": "a minivan"5294/​/​ },5295/​/​{5296/​/​ "item": "ambulance",5297/​/​ "label": "a dress shirt"5298/​/​ },5299/​/​{5300/​/​ "item": "ambulance",5301/​/​ "label": "a bedside table"5302/​/​ },5303/​/​{5304/​/​ "item": "ambulance",5305/​/​ "label": "gummy bears"5306/​/​ },5307/​/​{5308/​/​ "item": "ambulance",5309/​/​ "label": "a parrot"5310/​/​ },5311/​/​{5312/​/​ "item": "ambulance",5313/​/​ "label": "a polar bear"5314/​/​ },5315/​/​{5316/​/​ "item": "ambulance",5317/​/​ "label": "a catfish"5318/​/​ },5319/​/​{5320/​/​ "item": "ambulance",5321/​/​ "label": "jelly beans"5322/​/​ },5323/​/​{5324/​/​ "item": "ambulance",5325/​/​ "label": "a clownfish"5326/​/​ },5327/​/​{5328/​/​ "item": "ambulance",5329/​/​ "label": "a black bear"5330/​/​ },5331/​/​{5332/​/​ "item": "ambulance",5333/​/​ "label": "a goldfish"5334/​/​ },5335/​/​{5336/​/​ "item": "ambulance",5337/​/​ "label": "a Dalmatian"5338/​/​ },5339/​/​{5340/​/​ "item": "ambulance",5341/​/​ "label": "Skittles"5342/​/​ },5343/​/​{5344/​/​ "item": "ambulance",5345/​/​ "label": "a car"5346/​/​ },5347/​/​{5348/​/​ "item": "ambulance",5349/​/​ "label": "a shirt"5350/​/​ },5351/​/​{5352/​/​ "item": "ambulance",5353/​/​ "label": "a table"5354/​/​ },5355/​/​{5356/​/​ "item": "ambulance",5357/​/​ "label": "candy"5358/​/​ },5359/​/​{5360/​/​ "item": "ambulance",5361/​/​ "label": "a bird"5362/​/​ },5363/​/​{5364/​/​ "item": "ambulance",5365/​/​ "label": "a bear"5366/​/​ },5367/​/​{5368/​/​ "item": "ambulance",5369/​/​ "label": "a fish"5370/​/​ },5371/​/​{5372/​/​ "item": "ambulance",5373/​/​ "label": "a dog"5374/​/​ },5375/​/​{5376/​/​ "item": "ambulance",5377/​/​ "label": "a vehicle"5378/​/​ },5379/​/​{5380/​/​ "item": "ambulance",5381/​/​ "label": "clothing"5382/​/​ },5383/​/​{5384/​/​ "item": "ambulance",5385/​/​ "label": "furniture"5386/​/​ },5387/​/​{5388/​/​ "item": "ambulance",5389/​/​ "label": "a snack"5390/​/​ },5391/​/​{5392/​/​ "item": "ambulance",5393/​/​ "label": "an animal"5394/​/​ },5395/​/​{5396/​/​ "item": "ambulance",5397/​/​ "label": "a German Shepherd"5398/​/​ },5399/​/​{5400/​/​ "item": "ambulance",5401/​/​ "label": "a grizzly bear"5402/​/​ },5403/​/​{5404/​/​ "item": "ambulance",5405/​/​ "label": "a swordfish"5406/​/​ },5407/​/​{5408/​/​ "item": "ambulance",5409/​/​ "label": "a Husky"5410/​/​ },5411/​/​{5412/​/​ "item": "ambulance",5413/​/​ "label": "a T-Shirt"5414/​/​ },5415/​/​{5416/​/​ "item": "ambulance",5417/​/​ "label": "a pigeon"5418/​/​ },5419/​/​ /​/​ bathrobe5420/​/​{5421/​/​ "item": "bathrobe",5422/​/​ "label": "a T-Shirt"5423/​/​ },5424/​/​{5425/​/​ "item": "bathrobe",5426/​/​ "label": "a dress shirt"5427/​/​ },5428/​/​ {5429/​/​ "item": "bathrobe",5430/​/​ "label": "a Hawaii shirt"5431/​/​ },5432/​/​ {5433/​/​ "item": "bathrobe",5434/​/​ "label": "a polo shirt"5435/​/​ },5436/​/​{5437/​/​ "item": "bathrobe",5438/​/​ "label": "a rose"5439/​/​ },5440/​/​ {5441/​/​ "item": "bathrobe",5442/​/​ "label": "a polar bear"5443/​/​ },5444/​/​{5445/​/​ "item": "bathrobe",5446/​/​ "label": "a swordfish"5447/​/​ },5448/​/​{5449/​/​ "item": "bathrobe",5450/​/​ "label": "a tulip"5451/​/​ },5452/​/​{5453/​/​ "item": "bathrobe",5454/​/​ "label": "a coffee table"5455/​/​ },5456/​/​{5457/​/​ "item": "bathrobe",5458/​/​ "label": "a black bear"5459/​/​ },5460/​/​{5461/​/​ "item": "bathrobe",5462/​/​ "label": "a grizzly bear"5463/​/​ },5464/​/​{5465/​/​ "item": "bathrobe",5466/​/​ "label": "a parrot"5467/​/​ },5468/​/​{5469/​/​ "item": "bathrobe",5470/​/​ "label": "Skittles"5471/​/​ },5472/​/​{5473/​/​ "item": "bathrobe",5474/​/​ "label": "a minivan"5475/​/​ },5476/​/​{5477/​/​ "item": "bathrobe",5478/​/​ "label": "an eagle"5479/​/​ },5480/​/​{5481/​/​ "item": "bathrobe",5482/​/​ "label": "a clownfish"5483/​/​ },5484/​/​{5485/​/​ "item": "bathrobe",5486/​/​ "label": "an SUV"5487/​/​ },5488/​/​{5489/​/​ "item": "bathrobe",5490/​/​ "label": "a shirt"5491/​/​ },5492/​/​{5493/​/​ "item": "bathrobe",5494/​/​ "label": "a flower"5495/​/​ },5496/​/​{5497/​/​ "item": "bathrobe",5498/​/​ "label": "a bear"5499/​/​ },5500/​/​{5501/​/​ "item": "bathrobe",5502/​/​ "label": "a fish"5503/​/​ },5504/​/​{5505/​/​ "item": "bathrobe",5506/​/​ "label": "a table"5507/​/​ },5508/​/​{5509/​/​ "item": "bathrobe",5510/​/​ "label": "a bird"5511/​/​ },5512/​/​{5513/​/​ "item": "bathrobe",5514/​/​ "label": "candy"5515/​/​ },5516/​/​{5517/​/​ "item": "bathrobe",5518/​/​ "label": "a car"5519/​/​ },5520/​/​{5521/​/​ "item": "bathrobe",5522/​/​ "label": "clothing"5523/​/​ },5524/​/​{5525/​/​ "item": "bathrobe",5526/​/​ "label": "a plant"5527/​/​ },5528/​/​{5529/​/​ "item": "bathrobe",5530/​/​ "label": "an animal"5531/​/​ },5532/​/​{5533/​/​ "item": "bathrobe",5534/​/​ "label": "furniture"5535/​/​ },5536/​/​{5537/​/​ "item": "bathrobe",5538/​/​ "label": "a snack"5539/​/​ },5540/​/​{5541/​/​ "item": "bathrobe",5542/​/​ "label": "a vehicle"5543/​/​ },5544/​/​{5545/​/​ "item": "bathrobe",5546/​/​ "label": "a goldfish"5547/​/​ },5548/​/​{5549/​/​ "item": "bathrobe",5550/​/​ "label": "a pug"5551/​/​ },5552/​/​{5553/​/​ "item": "bathrobe",5554/​/​ "label": "a convertible"5555/​/​ },5556/​/​{5557/​/​ "item": "bathrobe",5558/​/​ "label": "a dining table"5559/​/​ },5560/​/​{5561/​/​ "item": "bathrobe",5562/​/​ "label": "a picnic table"5563/​/​ },5564/​/​{5565/​/​ "item": "bathrobe",5566/​/​ "label": "a Husky"5567/​/​ },5568/​/​{5569/​/​ "item": "bathrobe",5570/​/​ "label": "a catfish"5571/​/​ },5572/​/​{5573/​/​ "item": "bathrobe",5574/​/​ "label": "a dog"5575/​/​ },5576/​/​ /​/​ bed5577/​/​{5578/​/​ "item": "bed",5579/​/​ "label": "a coffee table"5580/​/​ },5581/​/​ {5582/​/​ "item": "bed",5583/​/​ "label": "a picnic table"5584/​/​ },5585/​/​{5586/​/​ "item": "bed",5587/​/​ "label": "a dining table"5588/​/​ },5589/​/​{5590/​/​ "item": "bed",5591/​/​ "label": "jelly beans"5592/​/​ },5593/​/​{5594/​/​ "item": "bed",5595/​/​ "label": "a clownfish"5596/​/​ },5597/​/​{5598/​/​ "item": "bed",5599/​/​ "label": "a Hawaii shirt"5600/​/​ },5601/​/​{5602/​/​ "item": "bed",5603/​/​ "label": "a Dalmatian"5604/​/​ },5605/​/​{5606/​/​ "item": "bed",5607/​/​ "label": "a parrot"5608/​/​ },5609/​/​{5610/​/​ "item": "bed",5611/​/​ "label": "a tulip"5612/​/​ },5613/​/​{5614/​/​ "item": "bed",5615/​/​ "label": "a goldfish"5616/​/​ },5617/​/​{5618/​/​ "item": "bed",5619/​/​ "label": "a panda bear"5620/​/​ },5621/​/​{5622/​/​ "item": "bed",5623/​/​ "label": "a pigeon"5624/​/​ },5625/​/​{5626/​/​ "item": "bed",5627/​/​ "label": "a Husky"5628/​/​ },5629/​/​{5630/​/​ "item": "bed",5631/​/​ "label": "a table"5632/​/​ },5633/​/​{5634/​/​ "item": "bed",5635/​/​ "label": "candy"5636/​/​ },5637/​/​{5638/​/​ "item": "bed",5639/​/​ "label": "a fish"5640/​/​ },5641/​/​{5642/​/​ "item": "bed",5643/​/​ "label": "a shirt"5644/​/​ },5645/​/​{5646/​/​ "item": "bed",5647/​/​ "label": "a dog"5648/​/​ },5649/​/​{5650/​/​ "item": "bed",5651/​/​ "label": "a bird"5652/​/​ },5653/​/​{5654/​/​ "item": "bed",5655/​/​ "label": "a flower"5656/​/​ },5657/​/​{5658/​/​ "item": "bed",5659/​/​ "label": "a bear"5660/​/​ },5661/​/​{5662/​/​ "item": "bed",5663/​/​ "label": "furniture"5664/​/​ },5665/​/​{5666/​/​ "item": "bed",5667/​/​ "label": "a snack"5668/​/​ },5669/​/​{5670/​/​ "item": "bed",5671/​/​ "label": "an animal"5672/​/​ },5673/​/​{5674/​/​ "item": "bed",5675/​/​ "label": "clothing"5676/​/​ },5677/​/​{5678/​/​ "item": "bed",5679/​/​ "label": "a plant"5680/​/​ },5681/​/​{5682/​/​ "item": "bed",5683/​/​ "label": "a bedside table"5684/​/​ },5685/​/​{5686/​/​ "item": "bed",5687/​/​ "label": "an SUV"5688/​/​ },5689/​/​{5690/​/​ "item": "bed",5691/​/​ "label": "a hummingbird"5692/​/​ },5693/​/​{5694/​/​ "item": "bed",5695/​/​ "label": "a German Shepherd"5696/​/​ },5697/​/​{5698/​/​ "item": "bed",5699/​/​ "label": "a grizzly bear"5700/​/​ },5701/​/​{5702/​/​ "item": "bed",5703/​/​ "label": "a black bear"5704/​/​ },5705/​/​{5706/​/​ "item": "bed",5707/​/​ "label": "a catfish"5708/​/​ },5709/​/​{5710/​/​ "item": "bed",5711/​/​ "label": "a car"5712/​/​ },5713/​/​{5714/​/​ "item": "bed",5715/​/​ "label": "a vehicle"5716/​/​ },5717/​/​ /​/​ bison5718/​/​{5719/​/​ "item": "bison",5720/​/​ "label": "a panda bear"5721/​/​ },5722/​/​{5723/​/​ "item": "bison",5724/​/​ "label": "a hummingbird"5725/​/​ },5726/​/​{5727/​/​ "item": "bison",5728/​/​ "label": "a polar bear"5729/​/​ },5730/​/​{5731/​/​ "item": "bison",5732/​/​ "label": "a goldfish"5733/​/​ },5734/​/​{5735/​/​ "item": "bison",5736/​/​ "label": "a pug"5737/​/​ },5738/​/​{5739/​/​ "item": "bison",5740/​/​ "label": "a parrot"