{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'PDF TO Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); , "},"instruction":{"kind":"string","value":"Select words similar to strange"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37701,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to cars
, "},"instruction":{"kind":"string","value":"Select words similar to cars"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37702,"cells":{"history_episodes":{"kind":"string","value":" Select unwise
, "},"instruction":{"kind":"string","value":"Select unwise"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37703,"cells":{"history_episodes":{"kind":"string","value":" Select savory
, "},"instruction":{"kind":"string","value":"Select savory"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37704,"cells":{"history_episodes":{"kind":"string","value":" Select old
, "},"instruction":{"kind":"string","value":"Select old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37705,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to swine
, "},"instruction":{"kind":"string","value":"Select words similar to swine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37706,"cells":{"history_episodes":{"kind":"string","value":" Select chubby
, "},"instruction":{"kind":"string","value":"Select chubby"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37707,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to water
, "},"instruction":{"kind":"string","value":"Select words similar to water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37708,"cells":{"history_episodes":{"kind":"string","value":" Select peaceful
, "},"instruction":{"kind":"string","value":"Select peaceful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37709,"cells":{"history_episodes":{"kind":"string","value":" Select mistaken
, "},"instruction":{"kind":"string","value":"Select mistaken"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37710,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delighted
, "},"instruction":{"kind":"string","value":"Select words similar to delighted"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37711,"cells":{"history_episodes":{"kind":"string","value":" Select delicious
, "},"instruction":{"kind":"string","value":"Select delicious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37712,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to funny, begin, peaceful
, "},"instruction":{"kind":"string","value":"Select words similar to funny, begin, peaceful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37713,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delicious
, "},"instruction":{"kind":"string","value":"Select words similar to delicious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37714,"cells":{"history_episodes":{"kind":"string","value":" Select laughable
, "},"instruction":{"kind":"string","value":"Select laughable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37715,"cells":{"history_episodes":{"kind":"string","value":" Select answer
, "},"instruction":{"kind":"string","value":"Select answer"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37716,"cells":{"history_episodes":{"kind":"string","value":" Select plump
, "},"instruction":{"kind":"string","value":"Select plump"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37717,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to aged
, "},"instruction":{"kind":"string","value":"Select words similar to aged"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37718,"cells":{"history_episodes":{"kind":"string","value":" Select panicked
, "},"instruction":{"kind":"string","value":"Select panicked"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37719,"cells":{"history_episodes":{"kind":"string","value":" Select sorrowful
, "},"instruction":{"kind":"string","value":"Select sorrowful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37720,"cells":{"history_episodes":{"kind":"string","value":" Select wicked
, "},"instruction":{"kind":"string","value":"Select wicked"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37721,"cells":{"history_episodes":{"kind":"string","value":" Select despise
, "},"instruction":{"kind":"string","value":"Select despise"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37722,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to humorous
, "},"instruction":{"kind":"string","value":"Select words similar to humorous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37723,"cells":{"history_episodes":{"kind":"string","value":" Select automobile
, "},"instruction":{"kind":"string","value":"Select automobile"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37724,"cells":{"history_episodes":{"kind":"string","value":" Select initiate
, "},"instruction":{"kind":"string","value":"Select initiate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37725,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to end
, "},"instruction":{"kind":"string","value":"Select words similar to end"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37726,"cells":{"history_episodes":{"kind":"string","value":" Select detest
, "},"instruction":{"kind":"string","value":"Select detest"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37727,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to answer
, "},"instruction":{"kind":"string","value":"Select words similar to answer"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37728,"cells":{"history_episodes":{"kind":"string","value":" Select fearless
, "},"instruction":{"kind":"string","value":"Select fearless"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37729,"cells":{"history_episodes":{"kind":"string","value":" Select incorrect
, "},"instruction":{"kind":"string","value":"Select incorrect"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37730,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37731,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fearless
, "},"instruction":{"kind":"string","value":"Select words similar to fearless"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37732,"cells":{"history_episodes":{"kind":"string","value":" Select delighted
, "},"instruction":{"kind":"string","value":"Select delighted"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37733,"cells":{"history_episodes":{"kind":"string","value":" Select bunny
, "},"instruction":{"kind":"string","value":"Select bunny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37734,"cells":{"history_episodes":{"kind":"string","value":" Select sad
, "},"instruction":{"kind":"string","value":"Select sad"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37735,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to comical
, "},"instruction":{"kind":"string","value":"Select words similar to comical"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37736,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fearless, real, vehicle, mistaken














, "},"instruction":{"kind":"string","value":"Select words similar to fearless, real, vehicle, mistaken"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37737,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to chop
, "},"instruction":{"kind":"string","value":"Select words similar to chop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37738,"cells":{"history_episodes":{"kind":"string","value":" Select afraid
, "},"instruction":{"kind":"string","value":"Select afraid"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37739,"cells":{"history_episodes":{"kind":"string","value":" click submit
, "},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37740,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to bunny
, "},"instruction":{"kind":"string","value":"Select words similar to bunny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37741,"cells":{"history_episodes":{"kind":"string","value":" Select erroneous
, "},"instruction":{"kind":"string","value":"Select erroneous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37742,"cells":{"history_episodes":{"kind":"string","value":" Select serene
, "},"instruction":{"kind":"string","value":"Select serene"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37743,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to dull
, "},"instruction":{"kind":"string","value":"Select words similar to dull"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37744,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to murder, camouflage
, "},"instruction":{"kind":"string","value":"Select words similar to murder, camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37745,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to rabbits
, "},"instruction":{"kind":"string","value":"Select words similar to rabbits"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37746,"cells":{"history_episodes":{"kind":"string","value":" Select cut
, "},"instruction":{"kind":"string","value":"Select cut"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37747,"cells":{"history_episodes":{"kind":"string","value":" Select flames
, "},"instruction":{"kind":"string","value":"Select flames"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37748,"cells":{"history_episodes":{"kind":"string","value":" Select home
, "},"instruction":{"kind":"string","value":"Select home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37749,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to reply
, "},"instruction":{"kind":"string","value":"Select words similar to reply"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37750,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to scarlet
, "},"instruction":{"kind":"string","value":"Select words similar to scarlet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37751,"cells":{"history_episodes":{"kind":"string","value":" Select wrong
, "},"instruction":{"kind":"string","value":"Select wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37752,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to plump
, "},"instruction":{"kind":"string","value":"Select words similar to plump"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37753,"cells":{"history_episodes":{"kind":"string","value":" Select quiet
, "},"instruction":{"kind":"string","value":"Select quiet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37754,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to television
, "},"instruction":{"kind":"string","value":"Select words similar to television"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37755,"cells":{"history_episodes":{"kind":"string","value":" Select despise
, "},"instruction":{"kind":"string","value":"Select despise"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37756,"cells":{"history_episodes":{"kind":"string","value":" Select depraved
, "},"instruction":{"kind":"string","value":"Select depraved"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37757,"cells":{"history_episodes":{"kind":"string","value":" Select strange
, "},"instruction":{"kind":"string","value":"Select strange"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37758,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to assassinate
, "},"instruction":{"kind":"string","value":"Select words similar to assassinate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37759,"cells":{"history_episodes":{"kind":"string","value":" Select delicious
, "},"instruction":{"kind":"string","value":"Select delicious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37760,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to stop, gleeful, delicious, pork
, "},"instruction":{"kind":"string","value":"Select words similar to stop, gleeful, delicious, pork"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37761,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37762,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to comical
, "},"instruction":{"kind":"string","value":"Select words similar to comical"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37763,"cells":{"history_episodes":{"kind":"string","value":" Select bunnies
, "},"instruction":{"kind":"string","value":"Select bunnies"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37764,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37765,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to water
, "},"instruction":{"kind":"string","value":"Select words similar to water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37766,"cells":{"history_episodes":{"kind":"string","value":" Select delighted
, "},"instruction":{"kind":"string","value":"Select delighted"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37767,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to unusual
, "},"instruction":{"kind":"string","value":"Select words similar to unusual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37768,"cells":{"history_episodes":{"kind":"string","value":" Select television
, "},"instruction":{"kind":"string","value":"Select television"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37769,"cells":{"history_episodes":{"kind":"string","value":" Select huge
, "},"instruction":{"kind":"string","value":"Select huge"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37770,"cells":{"history_episodes":{"kind":"string","value":" Select fires
, "},"instruction":{"kind":"string","value":"Select fires"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37771,"cells":{"history_episodes":{"kind":"string","value":" Select pork
, "},"instruction":{"kind":"string","value":"Select pork"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37772,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37773,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to red
, "},"instruction":{"kind":"string","value":"Select words similar to red"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37774,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37775,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to dull
, "},"instruction":{"kind":"string","value":"Select words similar to dull"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37776,"cells":{"history_episodes":{"kind":"string","value":" Select aged
, "},"instruction":{"kind":"string","value":"Select aged"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37777,"cells":{"history_episodes":{"kind":"string","value":" Select small
, "},"instruction":{"kind":"string","value":"Select small"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37778,"cells":{"history_episodes":{"kind":"string","value":" Select weird
, "},"instruction":{"kind":"string","value":"Select weird"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37779,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to wicked, actual
, "},"instruction":{"kind":"string","value":"Select words similar to wicked, actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37780,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to terrified
, "},"instruction":{"kind":"string","value":"Select words similar to terrified"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37781,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to home
, "},"instruction":{"kind":"string","value":"Select words similar to home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37782,"cells":{"history_episodes":{"kind":"string","value":" Select genuine
, "},"instruction":{"kind":"string","value":"Select genuine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37783,"cells":{"history_episodes":{"kind":"string","value":" Select camouflage
, "},"instruction":{"kind":"string","value":"Select camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37784,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to comical
, "},"instruction":{"kind":"string","value":"Select words similar to comical"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37785,"cells":{"history_episodes":{"kind":"string","value":" Select old
, "},"instruction":{"kind":"string","value":"Select old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37786,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to automobiles
, "},"instruction":{"kind":"string","value":"Select words similar to automobiles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37787,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to television
, "},"instruction":{"kind":"string","value":"Select words similar to television"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37788,"cells":{"history_episodes":{"kind":"string","value":" Select vehicle
, "},"instruction":{"kind":"string","value":"Select vehicle"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37789,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to afraid
, "},"instruction":{"kind":"string","value":"Select words similar to afraid"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37790,"cells":{"history_episodes":{"kind":"string","value":" Select launch
, "},"instruction":{"kind":"string","value":"Select launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37791,"cells":{"history_episodes":{"kind":"string","value":" Select old
, "},"instruction":{"kind":"string","value":"Select old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37792,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to tiny
, "},"instruction":{"kind":"string","value":"Select words similar to tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37793,"cells":{"history_episodes":{"kind":"string","value":" Select immoral
, "},"instruction":{"kind":"string","value":"Select immoral"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37794,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to real
, "},"instruction":{"kind":"string","value":"Select words similar to real"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37795,"cells":{"history_episodes":{"kind":"string","value":" Select preserve
, "},"instruction":{"kind":"string","value":"Select preserve"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37796,"cells":{"history_episodes":{"kind":"string","value":" Select peculiar
, "},"instruction":{"kind":"string","value":"Select peculiar"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37797,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to flame
, "},"instruction":{"kind":"string","value":"Select words similar to flame"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37798,"cells":{"history_episodes":{"kind":"string","value":" Select erroneous
, "},"instruction":{"kind":"string","value":"Select erroneous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37799,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to conceal








, "},"instruction":{"kind":"string","value":"Select words similar to conceal"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":377,"numItemsPerPage":100,"numTotalItems":40186,"offset":37700,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NzkwNjI5Mywic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU3OTA5ODkzLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.Hj7JM2JY0DiMq3XXhCk4piJIR37syGiepchiS3P-H3qE_UptC-FwBIsCqVdN2P0hf8qRCoL51ruBI4bUIEd1Bg","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
Select words similar to strange <body ref="5"><div id="wrap" ref="1"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-29" text="carve"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-30" text="brave"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-31" text="real"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-32" text="strange"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to strange
click
11
null
stop
Select words similar to cars <body ref="3"><div id="wrap" ref="5"><div id="area" ref="11"><div id="boxes" ref="6"><label ref="15"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-26" text="favor"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-27" text="dumb"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-28" text="delicious"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-29" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-30" text="car"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to cars
click
9
null
stop
Select unwise <body ref="3"><div id="wrap" ref="5"><div id="area" ref="11"><div id="boxes" ref="6"><label ref="15"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-56" text="favor"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-57" text="dumb"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-58" text="delicious"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-59" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-60" text="car"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select unwise
click
7
null
stop
Select savory <body ref="3"><div id="wrap" ref="5"><div id="area" ref="11"><div id="boxes" ref="6"><label ref="15"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-86" text="favor"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-87" text="dumb"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-88" text="delicious"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-89" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-90" text="car"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select savory
click
4
null
stop
Select old <body ref="3"><div id="wrap" ref="5"><div id="area" ref="11"><div id="boxes" ref="6"><label ref="15"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-116" text="favor"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-117" text="dumb"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-118" text="delicious"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-119" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-120" text="car"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select old
click
14
null
stop
Select words similar to swine <body ref="6"><div id="wrap" ref="5"><div id="area" ref="3"><div id="boxes" ref="9"><label ref="1"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-34" text="pork"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-35" text="plump"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-36" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to swine
click
11
null
stop
Select chubby <body ref="6"><div id="wrap" ref="5"><div id="area" ref="3"><div id="boxes" ref="9"><label ref="1"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-52" text="pork"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-53" text="plump"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-54" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select chubby
click
7
null
stop
Select words similar to water <body ref="6"><div id="wrap" ref="11"><div id="area" ref="2"><div id="boxes" ref="13"><label ref="1"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-21" text="mistaken"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-22" text="water"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-23" text="start"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-24" text="mild"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to water
click
3
null
stop
Select peaceful <body ref="6"><div id="wrap" ref="11"><div id="area" ref="2"><div id="boxes" ref="13"><label ref="1"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-45" text="mistaken"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-46" text="water"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-47" text="start"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-48" text="mild"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select peaceful
click
7
null
stop
Select mistaken <body ref="6"><div id="wrap" ref="11"><div id="area" ref="2"><div id="boxes" ref="13"><label ref="1"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-69" text="mistaken"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-70" text="water"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-71" text="start"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-72" text="mild"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select mistaken
click
4
null
stop
Select words similar to delighted <body ref="15"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-26" text="televisions"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-27" text="initiate"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-28" text="unusual"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-29" text="delectable"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-30" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to delighted
click
11
null
stop
Select delicious <body ref="15"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-56" text="televisions"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-57" text="initiate"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-58" text="unusual"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-59" text="delectable"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-60" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select delicious
click
1
null
stop
Select words similar to funny, begin, peaceful <body ref="6"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="1"><label ref="12"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-29" text="humorous"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-30" text="begin"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-31" text="love"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-32" text="mild"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to funny, begin, peaceful
click
7
null
stop
Select words similar to delicious <body ref="9"><div id="wrap" ref="5"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="8"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-26" text="start"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-27" text="delicious"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-28" text="answer"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-29" text="amusing"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-30" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to delicious
click
6
null
stop
Select laughable <body ref="9"><div id="wrap" ref="5"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="8"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-56" text="start"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-57" text="delicious"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-58" text="answer"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-59" text="amusing"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-60" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select laughable
click
7
null
stop
Select answer <body ref="9"><div id="wrap" ref="5"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="8"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-86" text="start"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-87" text="delicious"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-88" text="answer"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-89" text="amusing"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-90" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select answer
click
4
null
stop
Select plump <body ref="9"><div id="wrap" ref="5"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="8"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-116" text="start"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-117" text="delicious"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-118" text="answer"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-119" text="amusing"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-120" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select plump
click
15
null
stop
Select words similar to aged <body ref="5"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="16"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-31" text="old"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-32" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-33" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-34" text="carve"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-35" text="tragic"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to aged
click
12
null
stop
Select panicked <body ref="5"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="16"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-67" text="old"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-68" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-69" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-70" text="carve"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-71" text="tragic"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-72" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select panicked
click
6
null
stop
Select sorrowful <body ref="5"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="16"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-103" text="old"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-104" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-105" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-106" text="carve"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-107" text="tragic"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-108" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select sorrowful
click
11
null
stop
Select wicked <body ref="5"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="16"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-139" text="old"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-140" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-141" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-142" text="carve"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-143" text="tragic"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-144" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select wicked
click
8
null
stop
Select despise <body ref="5"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="16"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-175" text="old"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-176" text="despise"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-177" text="evil"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-178" text="carve"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-179" text="tragic"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-180" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select despise
click
10
null
stop
Select words similar to humorous <body ref="1"><div id="wrap" ref="10"><div id="area" ref="13"><div id="boxes" ref="5"><label ref="8"><input type="checkbox" id="ch0" ref="17" value="true"></input><t ref="-31" text="vehicles"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-32" text="big"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-33" text="reply"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="16" value="false"></input><t ref="-34" text="amusing"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-35" text="start"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="unwise"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to humorous
click
17
null
stop
Select automobile <body ref="1"><div id="wrap" ref="10"><div id="area" ref="13"><div id="boxes" ref="5"><label ref="8"><input type="checkbox" id="ch0" ref="17" value="true"></input><t ref="-67" text="vehicles"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-68" text="big"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-69" text="reply"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-70" text="amusing"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-71" text="start"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-72" text="unwise"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select automobile
click
16
null
stop
Select initiate <body ref="1"><div id="wrap" ref="10"><div id="area" ref="13"><div id="boxes" ref="5"><label ref="8"><input type="checkbox" id="ch0" ref="17" value="true"></input><t ref="-103" text="vehicles"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-104" text="big"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-105" text="reply"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="16" value="true"></input><t ref="-106" text="amusing"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-107" text="start"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-108" text="unwise"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select initiate
click
6
null
stop
Select words similar to end <body ref="15"><div id="wrap" ref="6"><div id="area" ref="8"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-36" text="love"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-37" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-38" text="stop"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-39" text="joyful"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-40" text="dislike"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to end
click
14
null
stop
Select detest <body ref="15"><div id="wrap" ref="6"><div id="area" ref="8"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-106" text="love"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-107" text="enormous"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="14" value="true"></input><t ref="-108" text="stop"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-109" text="joyful"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-110" text="dislike"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select detest
click
5
null
stop
Select words similar to answer <body ref="10"><div id="wrap" ref="6"><div id="area" ref="3"><div id="boxes" ref="14"><label ref="9"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-31" text="depraved"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-32" text="funny"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-33" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-34" text="response"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to answer
click
7
null
stop
Select fearless <body ref="10"><div id="wrap" ref="6"><div id="area" ref="3"><div id="boxes" ref="14"><label ref="9"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-67" text="depraved"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-68" text="funny"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-69" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-70" text="response"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-71" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-72" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select fearless
click
4
null
stop
Select incorrect <body ref="10"><div id="wrap" ref="6"><div id="area" ref="3"><div id="boxes" ref="14"><label ref="9"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-103" text="depraved"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-104" text="funny"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-105" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-106" text="response"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-107" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-108" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select incorrect
click
5
null
stop
click submit <body ref="10"><div id="wrap" ref="6"><div id="area" ref="3"><div id="boxes" ref="14"><label ref="9"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-139" text="depraved"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-140" text="funny"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-141" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-142" text="response"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-143" text="rabbit"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-144" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>
click submit
click
5
null
stop
Select words similar to fearless <body ref="16"><div id="wrap" ref="9"><div id="area" ref="10"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-43" text="unhappy"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-44" text="brave"></t></label><label ref="17"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-45" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-46" text="gleeful"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-47" text="real"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-48" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to fearless
click
1
null
stop
Select delighted <body ref="16"><div id="wrap" ref="9"><div id="area" ref="10"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-91" text="unhappy"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-92" text="brave"></t></label><label ref="17"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-93" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-94" text="gleeful"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-95" text="real"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-96" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select delighted
click
3
null
stop
Select bunny <body ref="16"><div id="wrap" ref="9"><div id="area" ref="10"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-139" text="unhappy"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-140" text="brave"></t></label><label ref="17"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-141" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-142" text="gleeful"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-143" text="real"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="2" value="true"></input><t ref="-144" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select bunny
click
2
null
stop
Select sad <body ref="16"><div id="wrap" ref="9"><div id="area" ref="10"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="15" value="true"></input><t ref="-187" text="unhappy"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-188" text="brave"></t></label><label ref="17"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-189" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-190" text="gleeful"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-191" text="real"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="2" value="true"></input><t ref="-192" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select sad
click
15
null
stop
Select words similar to comical <body ref="11"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="13"><label ref="10"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-36" text="petite"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-37" text="water"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-38" text="strange"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-39" text="amusing"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-40" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to comical
click
2
null
stop
Select words similar to fearless, real, vehicle, mistaken <body ref="12"><div id="wrap" ref="21"><div id="area" ref="17"><div id="boxes" ref="15"><label ref="4"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-43" text="fearless"></t></label><br ref="18"></br><label ref="11"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-44" text="wrong"></t></label><br ref="8"></br><label ref="22"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-45" text="gigantic"></t></label><br ref="24"></br><label ref="19"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-46" text="begin"></t></label><br ref="23"></br><label ref="5"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-47" text="actual"></t></label><br ref="3"></br><label ref="13"><input type="checkbox" id="ch5" ref="10" value="false"></input><t ref="-48" text="vehicle"></t></label><br ref="20"></br></div><br ref="16"></br><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to fearless, real, vehicle, mistaken
click
1
null
stop
Select words similar to chop <body ref="13"><div id="wrap" ref="5"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-21" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-22" text="rabbit"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-23" text="cut"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-24" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to chop
click
3
null
stop
Select afraid <body ref="13"><div id="wrap" ref="5"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-45" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-46" text="rabbit"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-47" text="cut"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-48" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select afraid
click
2
null
stop
click submit <body ref="13"><div id="wrap" ref="5"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-69" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-70" text="rabbit"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-71" text="cut"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-72" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
click submit
click
2
null
stop
Select words similar to bunny <body ref="7"><div id="wrap" ref="2"><div id="area" ref="3"><div id="boxes" ref="9"><label ref="14"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-26" text="camouflage"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-27" text="mistaken"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-28" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-29" text="mild"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-30" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to bunny
click
1
null
stop
Select erroneous <body ref="7"><div id="wrap" ref="2"><div id="area" ref="3"><div id="boxes" ref="9"><label ref="14"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-56" text="camouflage"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-57" text="mistaken"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-58" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-59" text="mild"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-60" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select erroneous
click
6
null
stop
Select serene <body ref="7"><div id="wrap" ref="2"><div id="area" ref="3"><div id="boxes" ref="9"><label ref="14"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-86" text="camouflage"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-87" text="mistaken"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-88" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-89" text="mild"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-90" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select serene
click
11
null
stop
Select words similar to dull <body ref="4"><div id="wrap" ref="1"><div id="area" ref="8"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-22" text="mad"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-23" text="carve"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-24" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to dull
click
2
null
stop
Select words similar to murder, camouflage <body ref="10"><div id="wrap" ref="4"><div id="area" ref="12"><div id="boxes" ref="14"><label ref="15"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-31" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="17" value="true"></input><t ref="-32" text="strange"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-33" text="mild"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-34" text="panicked"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-35" text="dull"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-36" text="assassinate"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select words similar to murder, camouflage
click
17
null
stop
Select words similar to rabbits <body ref="13"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-31" text="houses"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-32" text="fires"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-33" text="cut"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-34" text="terrified"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-35" text="bunny"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to rabbits
click
9
null
stop
Select cut <body ref="13"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-67" text="houses"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-68" text="fires"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-69" text="cut"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-70" text="terrified"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-71" text="bunny"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-72" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select cut
click
15
null
stop
Select flames <body ref="13"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-103" text="houses"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-104" text="fires"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-105" text="cut"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-106" text="terrified"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-107" text="bunny"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-108" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select flames
click
8
null
stop
Select home <body ref="13"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-139" text="houses"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-140" text="fires"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-141" text="cut"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-142" text="terrified"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-143" text="bunny"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-144" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select home
click
10
null
stop
Select words similar to reply <body ref="9"><div id="wrap" ref="1"><div id="area" ref="4"><div id="boxes" ref="13"><label ref="12"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-26" text="red"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-27" text="response"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-28" text="assassinate"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-29" text="wrong"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-30" text="irritated"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to reply
click
15
null
stop
Select words similar to scarlet <body ref="17"><div id="wrap" ref="5"><div id="area" ref="6"><div id="boxes" ref="15"><label ref="9"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-31" text="halt"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-32" text="serene"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-33" text="gigantic"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-34" text="wrong"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-35" text="red"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-36" text="response"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to scarlet
click
12
null
stop
Select wrong <body ref="17"><div id="wrap" ref="5"><div id="area" ref="6"><div id="boxes" ref="15"><label ref="9"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-67" text="halt"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-68" text="serene"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-69" text="gigantic"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-70" text="wrong"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-71" text="red"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-72" text="response"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select wrong
click
2
null
stop
Select words similar to plump <body ref="13"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="10"><label ref="11"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="brave"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-32" text="serene"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-33" text="fleshy"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-34" text="delicious"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-35" text="miserable"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-36" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to plump
click
5
null
stop
Select quiet <body ref="13"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="10"><label ref="11"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-67" text="brave"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-68" text="serene"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-69" text="fleshy"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-70" text="delicious"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-71" text="miserable"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-72" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select quiet
click
6
null
stop
Select words similar to television <body ref="4"><div id="wrap" ref="12"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-26" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-27" text="tv"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-28" text="dislike"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-29" text="corrupt"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-30" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to television
click
3
null
stop
Select despise <body ref="4"><div id="wrap" ref="12"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-56" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-57" text="tv"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-58" text="dislike"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-59" text="corrupt"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-60" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select despise
click
14
null
stop
Select depraved <body ref="4"><div id="wrap" ref="12"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-86" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-87" text="tv"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-88" text="dislike"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-89" text="corrupt"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-90" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select depraved
click
8
null
stop
Select strange <body ref="4"><div id="wrap" ref="12"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-146" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-147" text="tv"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-148" text="dislike"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-149" text="corrupt"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-150" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select strange
click
7
null
stop
Select words similar to assassinate <body ref="7"><div id="wrap" ref="8"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="1"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-16" text="scared"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-17" text="delectable"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-18" text="murder"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to assassinate
click
6
null
stop
Select delicious <body ref="7"><div id="wrap" ref="8"><div id="area" ref="5"><div id="boxes" ref="10"><label ref="1"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-34" text="scared"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-35" text="delectable"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-36" text="murder"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select delicious
click
9
null
stop
Select words similar to stop, gleeful, delicious, pork <body ref="13"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="15"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-36" text="halt"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-37" text="vehicles"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-38" text="pork"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="12" value="true"></input><t ref="-39" text="appetizing"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-40" text="joyful"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to stop, gleeful, delicious, pork
click
12
null
stop
click submit <body ref="13"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="15"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-66" text="halt"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-67" text="vehicles"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-68" text="pork"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="12" value="true"></input><t ref="-69" text="appetizing"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-70" text="joyful"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>
click submit
click
11
null
stop
Select words similar to comical <body ref="5"><div id="wrap" ref="7"><div id="area" ref="9"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-26" text="water"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-27" text="laughable"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-28" text="adore"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-29" text="irritated"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-30" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to comical
click
3
null
stop
Select bunnies <body ref="5"><div id="wrap" ref="7"><div id="area" ref="9"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-56" text="water"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-57" text="laughable"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-58" text="adore"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-59" text="irritated"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-60" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select bunnies
click
4
null
stop
Select water <body ref="5"><div id="wrap" ref="7"><div id="area" ref="9"><div id="boxes" ref="13"><label ref="6"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-86" text="water"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-87" text="laughable"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-88" text="adore"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-89" text="irritated"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-90" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select water
click
14
null
stop
Select words similar to water <body ref="7"><div id="wrap" ref="3"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-26" text="brave"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-27" text="water"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-28" text="large"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-29" text="delighted"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-30" text="irritated"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to water
click
1
null
stop
Select delighted <body ref="7"><div id="wrap" ref="3"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-56" text="brave"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-57" text="water"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-58" text="large"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-59" text="delighted"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-60" text="irritated"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select delighted
click
3
null
stop
Select words similar to unusual <body ref="13"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-43" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-44" text="televisions"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-45" text="pig"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-46" text="irritated"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-47" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-48" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to unusual
click
7
null
stop
Select television <body ref="13"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-91" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-92" text="televisions"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-93" text="pig"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-94" text="irritated"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-95" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-96" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select television
click
3
null
stop
Select huge <body ref="13"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-139" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-140" text="televisions"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-141" text="pig"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-142" text="irritated"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-143" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-144" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select huge
click
8
null
stop
Select fires <body ref="13"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-187" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-188" text="televisions"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-189" text="pig"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-190" text="irritated"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-191" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-192" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select fires
click
2
null
stop
Select pork <body ref="13"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-235" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-236" text="televisions"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-237" text="pig"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-238" text="irritated"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-239" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-240" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select pork
click
5
null
stop
click submit <body ref="13"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-271" text="huge"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-272" text="televisions"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-273" text="pig"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-274" text="irritated"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-275" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-276" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>
click submit
click
5
null
stop
Select words similar to red <body ref="12"><div id="wrap" ref="7"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="14"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-31" text="courageous"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-32" text="gigantic"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-33" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-34" text="assassinate"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-35" text="pig"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-36" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to red
click
4
null
stop
click submit <body ref="12"><div id="wrap" ref="7"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="14"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-67" text="courageous"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-68" text="gigantic"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-69" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-70" text="assassinate"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-71" text="pig"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-72" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>
click submit
click
3
null
stop
Select words similar to dull <body ref="2"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="12"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-31" text="little"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-32" text="old"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-33" text="weird"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-34" text="reply"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-35" text="savory"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-36" text="stupid"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to dull
click
5
null
stop
Select aged <body ref="2"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="12"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-79" text="little"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-80" text="old"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-81" text="weird"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-82" text="reply"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-83" text="savory"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-84" text="stupid"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select aged
click
1
null
stop
Select small <body ref="2"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="12"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-115" text="little"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-116" text="old"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-117" text="weird"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-118" text="reply"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-119" text="savory"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-120" text="stupid"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select small
click
4
null
stop
Select weird <body ref="2"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="12"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-151" text="little"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-152" text="old"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="17" value="true"></input><t ref="-153" text="weird"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-154" text="reply"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-155" text="savory"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-156" text="stupid"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select weird
click
17
null
stop
Select words similar to wicked, actual <body ref="10"><div id="wrap" ref="12"><div id="area" ref="1"><div id="boxes" ref="9"><label ref="4"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-21" text="genuine"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-22" text="start"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-23" text="pig"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-24" text="depraved"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to wicked, actual
click
13
null
stop
Select words similar to terrified <body ref="6"><div id="wrap" ref="2"><div id="area" ref="13"><div id="boxes" ref="16"><label ref="1"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-43" text="pork"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-44" text="real"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-45" text="houses"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-46" text="serene"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-47" text="tiny"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-48" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to terrified
click
4
null
stop
Select words similar to home <body ref="17"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="8"><label ref="1"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-43" text="real"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-44" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-45" text="camouflage"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-46" text="keep"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-47" text="homes"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-48" text="chubby"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to home
click
9
null
stop
Select genuine <body ref="17"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="8"><label ref="1"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-91" text="real"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-92" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-93" text="camouflage"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-94" text="keep"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-95" text="homes"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-96" text="chubby"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select genuine
click
3
null
stop
Select camouflage <body ref="17"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="8"><label ref="1"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-139" text="real"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-140" text="murder"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-141" text="camouflage"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-142" text="keep"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-143" text="homes"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-144" text="chubby"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select camouflage
click
5
null
stop
Select words similar to comical <body ref="4"><div id="wrap" ref="6"><div id="area" ref="9"><div id="boxes" ref="8"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-26" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-27" text="aged"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-28" text="hide"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-29" text="comical"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-30" text="tragic"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to comical
click
2
null
stop
Select old <body ref="4"><div id="wrap" ref="6"><div id="area" ref="9"><div id="boxes" ref="8"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-56" text="irritated"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-57" text="aged"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-58" text="hide"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-59" text="comical"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-60" text="tragic"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select old
click
1
null
stop
Select words similar to automobiles <body ref="10"><div id="wrap" ref="9"><div id="area" ref="1"><div id="boxes" ref="6"><label ref="3"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-16" text="crimson"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-17" text="automobile"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-18" text="fire"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to automobiles
click
8
null
stop
Select words similar to television <body ref="12"><div id="wrap" ref="3"><div id="area" ref="7"><div id="boxes" ref="1"><label ref="2"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-21" text="hide"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="13" value="true"></input><t ref="-22" text="televisions"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-23" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-24" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to television
click
13
null
stop
Select vehicle <body ref="12"><div id="wrap" ref="3"><div id="area" ref="7"><div id="boxes" ref="1"><label ref="2"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-45" text="hide"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="13" value="true"></input><t ref="-46" text="televisions"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-47" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-48" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select vehicle
click
10
null
stop
Select words similar to afraid <body ref="1"><div id="wrap" ref="4"><div id="area" ref="7"><div id="boxes" ref="10"><label ref="11"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-21" text="brave"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-22" text="frightened"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-23" text="archaic"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-24" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to afraid
click
8
null
stop
Select launch <body ref="1"><div id="wrap" ref="4"><div id="area" ref="7"><div id="boxes" ref="10"><label ref="11"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-45" text="brave"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-46" text="frightened"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-47" text="archaic"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-48" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select launch
click
13
null
stop
Select old <body ref="1"><div id="wrap" ref="4"><div id="area" ref="7"><div id="boxes" ref="10"><label ref="11"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-69" text="brave"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-70" text="frightened"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-71" text="archaic"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="13" value="true"></input><t ref="-72" text="start"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select old
click
3
null
stop
Select words similar to tiny <body ref="6"><div id="wrap" ref="13"><div id="area" ref="10"><div id="boxes" ref="3"><label ref="2"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-31" text="answer"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-32" text="immoral"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-33" text="tiny"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-34" text="calm"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="cut"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-36" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to tiny
click
8
null
stop
Select immoral <body ref="6"><div id="wrap" ref="13"><div id="area" ref="10"><div id="boxes" ref="3"><label ref="2"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-67" text="answer"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-68" text="immoral"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="11" value="true"></input><t ref="-69" text="tiny"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-70" text="calm"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-71" text="cut"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-72" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select immoral
click
11
null
stop
Select words similar to real <body ref="7"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="17"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-31" text="sustain"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-32" text="bunny"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-33" text="real"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-34" text="evil"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-35" text="chubby"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-36" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to real
click
3
null
stop
Select preserve <body ref="7"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="17"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-67" text="sustain"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-68" text="bunny"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-69" text="real"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-70" text="evil"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-71" text="chubby"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-72" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select preserve
click
6
null
stop
Select peculiar <body ref="7"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="1"><label ref="17"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-103" text="sustain"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-104" text="bunny"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-105" text="real"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-106" text="evil"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-107" text="chubby"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-108" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select peculiar
click
9
null
stop
Select words similar to flame <body ref="4"><div id="wrap" ref="12"><div id="area" ref="2"><div id="boxes" ref="10"><label ref="9"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-21" text="flames"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-22" text="incorrect"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-23" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-24" text="hide"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to flame
click
8
null
stop
Select erroneous <body ref="4"><div id="wrap" ref="12"><div id="area" ref="2"><div id="boxes" ref="10"><label ref="9"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-45" text="flames"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-46" text="incorrect"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-47" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-48" text="hide"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select erroneous
click
6
null
stop
Select words similar to conceal <body ref="15"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="3"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-76" text="water"></t></label><br ref="1"></br><label ref="5"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-77" text="conceal"></t></label><br ref="11"></br><label ref="13"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-78" text="fearless"></t></label><br ref="14"></br></div><br ref="10"></br><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to conceal
click
12
null
stop