{ // 获取包含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 large"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37601,"cells":{"history_episodes":{"kind":"string","value":" Select miserable
, "},"instruction":{"kind":"string","value":"Select miserable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37602,"cells":{"history_episodes":{"kind":"string","value":" Select immoral
, "},"instruction":{"kind":"string","value":"Select immoral"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37603,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fleshy
, "},"instruction":{"kind":"string","value":"Select words similar to fleshy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37604,"cells":{"history_episodes":{"kind":"string","value":" Select archaic
, "},"instruction":{"kind":"string","value":"Select archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37605,"cells":{"history_episodes":{"kind":"string","value":" Select unwise
, "},"instruction":{"kind":"string","value":"Select unwise"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37606,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to wrong, detest, rabbits
, "},"instruction":{"kind":"string","value":"Select words similar to wrong, detest, rabbits"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37607,"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":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37608,"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":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37609,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to furious
, "},"instruction":{"kind":"string","value":"Select words similar to furious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37610,"cells":{"history_episodes":{"kind":"string","value":" Select sad
, "},"instruction":{"kind":"string","value":"Select sad"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37611,"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":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37612,"cells":{"history_episodes":{"kind":"string","value":" Select fleshy
, "},"instruction":{"kind":"string","value":"Select fleshy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37613,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to maintain
, "},"instruction":{"kind":"string","value":"Select words similar to maintain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37614,"cells":{"history_episodes":{"kind":"string","value":" Select evil
, "},"instruction":{"kind":"string","value":"Select evil"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37615,"cells":{"history_episodes":{"kind":"string","value":" Select fearless
, "},"instruction":{"kind":"string","value":"Select fearless"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37616,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37617,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to house
, "},"instruction":{"kind":"string","value":"Select words similar to house"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37618,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to actual
, "},"instruction":{"kind":"string","value":"Select words similar to actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37619,"cells":{"history_episodes":{"kind":"string","value":" Select immoral
, "},"instruction":{"kind":"string","value":"Select immoral"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37620,"cells":{"history_episodes":{"kind":"string","value":" Select conceal
, "},"instruction":{"kind":"string","value":"Select conceal"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37621,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to adore, scarlet
, "},"instruction":{"kind":"string","value":"Select words similar to adore, scarlet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37622,"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":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37623,"cells":{"history_episodes":{"kind":"string","value":" Select genuine
, "},"instruction":{"kind":"string","value":"Select genuine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37624,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to crimson
, "},"instruction":{"kind":"string","value":"Select words similar to crimson"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37625,"cells":{"history_episodes":{"kind":"string","value":" Select favor
, "},"instruction":{"kind":"string","value":"Select favor"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37626,"cells":{"history_episodes":{"kind":"string","value":" Select launch
, "},"instruction":{"kind":"string","value":"Select launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37627,"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":37628,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to wrong
, "},"instruction":{"kind":"string","value":"Select words similar to wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37629,"cells":{"history_episodes":{"kind":"string","value":" Select amusing
, "},"instruction":{"kind":"string","value":"Select amusing"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37630,"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":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37631,"cells":{"history_episodes":{"kind":"string","value":" Select like
, "},"instruction":{"kind":"string","value":"Select like"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37632,"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":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37633,"cells":{"history_episodes":{"kind":"string","value":" Select sustain
, "},"instruction":{"kind":"string","value":"Select sustain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37634,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to homes
, "},"instruction":{"kind":"string","value":"Select words similar to homes"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37635,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to crimson
, "},"instruction":{"kind":"string","value":"Select words similar to crimson"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37636,"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":37637,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to erroneous
, "},"instruction":{"kind":"string","value":"Select words similar to erroneous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37638,"cells":{"history_episodes":{"kind":"string","value":" Select strange
, "},"instruction":{"kind":"string","value":"Select strange"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37639,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37640,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to quiet














, "},"instruction":{"kind":"string","value":"Select words similar to quiet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37641,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to dumb












, "},"instruction":{"kind":"string","value":"Select words similar to dumb"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37642,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to keep
, "},"instruction":{"kind":"string","value":"Select words similar to keep"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37643,"cells":{"history_episodes":{"kind":"string","value":" Select unusual
, "},"instruction":{"kind":"string","value":"Select unusual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37644,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to automobile
, "},"instruction":{"kind":"string","value":"Select words similar to automobile"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37645,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37646,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to corrupt
, "},"instruction":{"kind":"string","value":"Select words similar to corrupt"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37647,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to love
, "},"instruction":{"kind":"string","value":"Select words similar to love"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37648,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to humorous, response, courageous, water
, "},"instruction":{"kind":"string","value":"Select words similar to humorous, response, courageous, water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37649,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to peculiar, houses












, "},"instruction":{"kind":"string","value":"Select words similar to peculiar, houses"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37650,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to weird
, "},"instruction":{"kind":"string","value":"Select words similar to weird"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37651,"cells":{"history_episodes":{"kind":"string","value":" Select dull
, "},"instruction":{"kind":"string","value":"Select dull"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37652,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to joyful
, "},"instruction":{"kind":"string","value":"Select words similar to joyful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37653,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mistaken
, "},"instruction":{"kind":"string","value":"Select words similar to mistaken"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37654,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to loathe
, "},"instruction":{"kind":"string","value":"Select words similar to loathe"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37655,"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":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37656,"cells":{"history_episodes":{"kind":"string","value":" Select quiet
, "},"instruction":{"kind":"string","value":"Select quiet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37657,"cells":{"history_episodes":{"kind":"string","value":" Select delighted
, "},"instruction":{"kind":"string","value":"Select delighted"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37658,"cells":{"history_episodes":{"kind":"string","value":" Select fleshy
, "},"instruction":{"kind":"string","value":"Select fleshy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37659,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to calm
, "},"instruction":{"kind":"string","value":"Select words similar to calm"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37660,"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":37661,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to gleeful
, "},"instruction":{"kind":"string","value":"Select words similar to gleeful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37662,"cells":{"history_episodes":{"kind":"string","value":" Select savory
, "},"instruction":{"kind":"string","value":"Select savory"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37663,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to kill, old, red, weird, sustain
, "},"instruction":{"kind":"string","value":"Select words similar to kill, old, red, weird, sustain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37664,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to flames
, "},"instruction":{"kind":"string","value":"Select words similar to flames"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37665,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to gigantic, genuine, delicious, odd, loathe
, "},"instruction":{"kind":"string","value":"Select words similar to gigantic, genuine, delicious, odd, loathe"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37666,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to amusing
, "},"instruction":{"kind":"string","value":"Select words similar to amusing"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37667,"cells":{"history_episodes":{"kind":"string","value":" Select appetizing
, "},"instruction":{"kind":"string","value":"Select appetizing"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37668,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37669,"cells":{"history_episodes":{"kind":"string","value":" Select murder
, "},"instruction":{"kind":"string","value":"Select murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37670,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to panicked
, "},"instruction":{"kind":"string","value":"Select words similar to panicked"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37671,"cells":{"history_episodes":{"kind":"string","value":" Select dumb
, "},"instruction":{"kind":"string","value":"Select dumb"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37672,"cells":{"history_episodes":{"kind":"string","value":" Select chop
, "},"instruction":{"kind":"string","value":"Select chop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37673,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to fearless, mistaken, vehicles
, "},"instruction":{"kind":"string","value":"Select words similar to fearless, mistaken, vehicles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37674,"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":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37675,"cells":{"history_episodes":{"kind":"string","value":" Select hide
, "},"instruction":{"kind":"string","value":"Select hide"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37676,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to laughable
, "},"instruction":{"kind":"string","value":"Select words similar to laughable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37677,"cells":{"history_episodes":{"kind":"string","value":" Select launch
, "},"instruction":{"kind":"string","value":"Select launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37678,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to actual
, "},"instruction":{"kind":"string","value":"Select words similar to actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37679,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37680,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to dumb
, "},"instruction":{"kind":"string","value":"Select words similar to dumb"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37681,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37682,"cells":{"history_episodes":{"kind":"string","value":" Select joyful
, "},"instruction":{"kind":"string","value":"Select joyful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37683,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to televisions, carve, keep, tiny
, "},"instruction":{"kind":"string","value":"Select words similar to televisions, carve, keep, tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37684,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to bunnies
, "},"instruction":{"kind":"string","value":"Select words similar to bunnies"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37685,"cells":{"history_episodes":{"kind":"string","value":" Select chubby
, "},"instruction":{"kind":"string","value":"Select chubby"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37686,"cells":{"history_episodes":{"kind":"string","value":" Select murder
, "},"instruction":{"kind":"string","value":"Select murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37687,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to sad
, "},"instruction":{"kind":"string","value":"Select words similar to sad"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37688,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to evil
, "},"instruction":{"kind":"string","value":"Select words similar to evil"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37689,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37690,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37691,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to scared
, "},"instruction":{"kind":"string","value":"Select words similar to scared"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37692,"cells":{"history_episodes":{"kind":"string","value":" Select unhappy
, "},"instruction":{"kind":"string","value":"Select unhappy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37693,"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":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37694,"cells":{"history_episodes":{"kind":"string","value":" Select favor
, "},"instruction":{"kind":"string","value":"Select favor"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37695,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37696,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to sad, favor
, "},"instruction":{"kind":"string","value":"Select words similar to sad, favor"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37697,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to furious
, "},"instruction":{"kind":"string","value":"Select words similar to furious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37698,"cells":{"history_episodes":{"kind":"string","value":" Select stop
, "},"instruction":{"kind":"string","value":"Select stop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37699,"cells":{"history_episodes":{"kind":"string","value":" Select old
, "},"instruction":{"kind":"string","value":"Select old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":376,"numItemsPerPage":100,"numTotalItems":40186,"offset":37600,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODE1NjgwMiwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MTYwNDAyLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.egSbMfGJvWa6_rOvXy5Lr7d1Eq1lt5oU5v6pihPeuaMwBAd_KRC-JZVg4-R68fFTM7EvxKscIlLIRjur1aO2CQ","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 large <body ref="11"><div id="wrap" ref="13"><div id="area" ref="3"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-56" text="evil"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-57" text="big"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-58" text="humorous"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-59" text="sustain"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-60" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select large
click
8
null
stop
Select miserable <body ref="11"><div id="wrap" ref="13"><div id="area" ref="3"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-86" text="evil"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-87" text="big"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-88" text="humorous"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-89" text="sustain"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-90" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select miserable
click
14
null
stop
Select immoral <body ref="11"><div id="wrap" ref="13"><div id="area" ref="3"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-116" text="evil"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-117" text="big"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-118" text="humorous"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-119" text="sustain"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-120" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select immoral
click
7
null
stop
Select words similar to fleshy <body ref="5"><div id="wrap" ref="9"><div id="area" ref="16"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-43" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-44" text="unwise"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-45" text="wicked"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-46" text="aged"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-47" text="tvs"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-48" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to fleshy
click
4
null
stop
Select archaic <body ref="5"><div id="wrap" ref="9"><div id="area" ref="16"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-91" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-92" text="unwise"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-93" text="wicked"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-94" text="aged"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-95" text="tvs"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-96" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select archaic
click
2
null
stop
Select unwise <body ref="5"><div id="wrap" ref="9"><div id="area" ref="16"><div id="boxes" ref="10"><label ref="3"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-139" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-140" text="unwise"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="13" value="true"></input><t ref="-141" text="wicked"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-142" text="aged"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-143" text="tvs"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-144" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select unwise
click
13
null
stop
Select words similar to wrong, detest, rabbits <body ref="6"><div id="wrap" ref="15"><div id="area" ref="2"><div id="boxes" ref="9"><label ref="12"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-66" text="aged"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-67" text="bunny"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-68" text="wrong"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-69" text="pig"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-70" text="loathe"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to wrong, detest, rabbits
click
3
null
stop
Select words similar to unusual <body ref="8"><div id="wrap" ref="1"><div id="area" ref="4"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-29" text="answer"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-30" text="crimson"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-31" text="odd"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-32" text="camouflage"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to unusual
click
5
null
stop
Select words similar to chop <body ref="10"><div id="wrap" ref="15"><div id="area" ref="11"><div id="boxes" ref="1"><label ref="2"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-31" text="initiate"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-32" text="immoral"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-33" text="carve"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="16" value="false"></input><t ref="-34" text="mild"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-35" text="answer"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-36" text="like"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to chop
click
12
null
stop
Select words similar to furious <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="5"><label ref="10"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-21" text="delicious"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-22" text="sad"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-23" text="irritated"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-24" text="wrong"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to furious
click
12
null
stop
Select sad <body ref="4"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="5"><label ref="10"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-45" text="delicious"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-46" text="sad"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-47" text="irritated"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-48" text="wrong"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select sad
click
13
null
stop
Select words similar to end <body ref="2"><div id="wrap" ref="1"><div id="area" ref="10"><div id="boxes" ref="12"><label ref="7"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-31" text="wrong"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-32" text="halt"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-33" text="pig"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-34" text="chubby"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-35" text="angry"></t></label><label ref="14"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to end
click
15
null
stop
Select fleshy <body ref="2"><div id="wrap" ref="1"><div id="area" ref="10"><div id="boxes" ref="12"><label ref="7"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-67" text="wrong"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-68" text="halt"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-69" text="pig"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-70" text="chubby"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="true"></input><t ref="-71" text="angry"></t></label><label ref="14"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-72" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select fleshy
click
16
null
stop
Select words similar to maintain <body ref="11"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-21" text="keep"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-22" text="immoral"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-23" text="brave"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-24" text="large"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to maintain
click
13
null
stop
Select evil <body ref="11"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-45" text="keep"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-46" text="immoral"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-47" text="brave"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-48" text="large"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select evil
click
1
null
stop
Select fearless <body ref="11"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-69" text="keep"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-70" text="immoral"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-71" text="brave"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-72" text="large"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select fearless
click
6
null
stop
click submit <body ref="11"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-117" text="keep"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-118" text="immoral"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-119" text="brave"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-120" text="large"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>
click submit
click
6
null
stop
Select words similar to house <body ref="15"><div id="wrap" ref="8"><div id="area" ref="14"><div id="boxes" ref="5"><label ref="13"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-36" text="camouflage"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-37" text="house"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-38" text="crimson"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-39" text="love"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-40" text="fire"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to house
click
4
null
stop
Select words similar to actual <body ref="4"><div id="wrap" ref="8"><div id="area" ref="7"><div id="boxes" ref="11"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-29" text="fleshy"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-30" text="evil"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-31" text="genuine"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-32" text="camouflage"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to actual
click
12
null
stop
Select immoral <body ref="4"><div id="wrap" ref="8"><div id="area" ref="7"><div id="boxes" ref="11"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-61" text="fleshy"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-62" text="evil"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-63" text="genuine"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-64" text="camouflage"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select immoral
click
1
null
stop
Select conceal <body ref="4"><div id="wrap" ref="8"><div id="area" ref="7"><div id="boxes" ref="11"><label ref="3"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-93" text="fleshy"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-94" text="evil"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-95" text="genuine"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-96" text="camouflage"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select conceal
click
5
null
stop
Select words similar to adore, scarlet <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="11"><label ref="5"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-21" text="petite"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-22" text="red"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-23" text="adore"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-24" text="automobiles"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to adore, scarlet
click
3
null
stop
Select words similar to assassinate <body ref="7"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="14"><label ref="13"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-26" text="rabbit"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-27" text="real"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-28" text="aged"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-29" text="tiny"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-30" text="murder"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to assassinate
click
2
null
stop
Select genuine <body ref="7"><div id="wrap" ref="4"><div id="area" ref="5"><div id="boxes" ref="14"><label ref="13"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-56" text="rabbit"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-57" text="real"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-58" text="aged"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-59" text="tiny"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-60" text="murder"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select genuine
click
10
null
stop
Select words similar to crimson <body ref="12"><div id="wrap" ref="7"><div id="area" ref="13"><div id="boxes" ref="14"><label ref="1"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-43" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-44" text="hide"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-45" text="begin"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-46" text="love"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-47" text="large"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-48" text="reply"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to crimson
click
9
null
stop
Select favor <body ref="12"><div id="wrap" ref="7"><div id="area" ref="13"><div id="boxes" ref="14"><label ref="1"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-91" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-92" text="hide"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-93" text="begin"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-94" text="love"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-95" text="large"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-96" text="reply"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select favor
click
8
null
stop
Select launch <body ref="12"><div id="wrap" ref="7"><div id="area" ref="13"><div id="boxes" ref="14"><label ref="1"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-139" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-140" text="hide"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-141" text="begin"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-142" text="love"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-143" text="large"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-144" text="reply"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select launch
click
3
null
stop
click submit <body ref="12"><div id="wrap" ref="7"><div id="area" ref="13"><div id="boxes" ref="14"><label ref="1"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-175" text="vermillion"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-176" text="hide"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-177" text="begin"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-178" text="love"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-179" text="large"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-180" text="reply"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
click submit
click
3
null
stop
Select words similar to wrong <body ref="12"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="2"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-21" text="incorrect"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-22" text="fleshy"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-23" text="fearless"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-24" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to wrong
click
3
null
stop
Select amusing <body ref="12"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="6"><label ref="2"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-45" text="incorrect"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-46" text="fleshy"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-47" text="fearless"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-48" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select amusing
click
10
null
stop
Select words similar to cars <body ref="16"><div id="wrap" ref="8"><div id="area" ref="17"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-31" text="wicked"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-32" text="sad"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-33" text="carve"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-34" text="favor"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-35" text="fire"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to cars
click
14
null
stop
Select like <body ref="16"><div id="wrap" ref="8"><div id="area" ref="17"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-67" text="wicked"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-68" text="sad"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-69" text="carve"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-70" text="favor"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-71" text="fire"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-72" text="vehicle"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select like
click
6
null
stop
Select words similar to unusual <body ref="11"><div id="wrap" ref="2"><div id="area" ref="6"><div id="boxes" ref="1"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-26" text="laughable"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-27" text="peculiar"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-28" text="televisions"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-29" text="archaic"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-30" text="retain"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to unusual
click
8
null
stop
Select sustain <body ref="11"><div id="wrap" ref="2"><div id="area" ref="6"><div id="boxes" ref="1"><label ref="4"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-56" text="laughable"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-57" text="peculiar"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-58" text="televisions"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-59" text="archaic"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-60" text="retain"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select sustain
click
15
null
stop
Select words similar to homes <body ref="3"><div id="wrap" ref="11"><div id="area" ref="7"><div id="boxes" ref="4"><label ref="8"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-16" text="rabbit"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-17" text="home"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-18" text="funny"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to homes
click
2
null
stop
Select words similar to crimson <body ref="11"><div id="wrap" ref="5"><div id="area" ref="9"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-26" text="crimson"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-27" text="sad"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-28" text="start"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-29" text="pig"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-30" text="house"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to crimson
click
6
null
stop
click submit <body ref="11"><div id="wrap" ref="5"><div id="area" ref="9"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-56" text="crimson"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-57" text="sad"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-58" text="start"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-59" text="pig"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-60" text="house"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>
click submit
click
2
null
stop
Select words similar to erroneous <body ref="5"><div id="wrap" ref="4"><div id="area" ref="10"><div id="boxes" ref="1"><label ref="3"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-36" text="incorrect"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-37" text="tvs"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-38" text="actual"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-39" text="unusual"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-40" text="gigantic"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to erroneous
click
13
null
stop
Select strange <body ref="5"><div id="wrap" ref="4"><div id="area" ref="10"><div id="boxes" ref="1"><label ref="3"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-76" text="incorrect"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-77" text="tvs"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-78" text="actual"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-79" text="unusual"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-80" text="gigantic"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select strange
click
15
null
stop
click submit <body ref="5"><div id="wrap" ref="4"><div id="area" ref="10"><div id="boxes" ref="1"><label ref="3"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-106" text="incorrect"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-107" text="tvs"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-108" text="actual"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-109" text="unusual"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-110" text="gigantic"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
click submit
click
15
null
stop
Select words similar to quiet <body ref="8"><div id="wrap" ref="16"><div id="area" ref="7"><div id="boxes" ref="2"><label ref="17"><input type="checkbox" id="ch0" ref="15" value="true"></input><t ref="-31" text="serene"></t></label><br ref="18"></br><label ref="21"><input type="checkbox" id="ch1" ref="20" value="false"></input><t ref="-32" text="stupid"></t></label><br ref="4"></br><label ref="11"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-33" text="big"></t></label><br ref="1"></br><label ref="10"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-34" text="bunny"></t></label><br ref="3"></br><label ref="12"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-35" text="loathe"></t></label><br ref="6"></br><label ref="8"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-36" text="corrupt"></t></label><br ref="7"></br></div><br ref="5"></br><button id="subbtn" classes="secondary-action" ref="19" text="submit"></button></div></div></body>,
Select words similar to quiet
click
15
null
stop
Select words similar to dumb <body ref="2"><div id="wrap" ref="19"><div id="area" ref="15"><div id="boxes" ref="14"><label ref="9"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-26" text="brave"></t></label><br ref="17"></br><label ref="20"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-27" text="unhappy"></t></label><br ref="6"></br><label ref="13"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-28" text="homes"></t></label><br ref="10"></br><label ref="16"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-29" text="kill"></t></label><br ref="12"></br><label ref="3"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-30" text="dumb"></t></label><br ref="11"></br></div><br ref="21"></br><button id="subbtn" classes="secondary-action" ref="18" text="submit"></button></div></div></body>,
Select words similar to dumb
click
1
null
stop
Select words similar to keep <body ref="12"><div id="wrap" ref="13"><div id="area" ref="6"><div id="boxes" ref="5"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-36" text="scared"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-37" text="brave"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-38" text="fleshy"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-39" text="maintain"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-40" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to keep
click
10
null
stop
Select unusual <body ref="12"><div id="wrap" ref="13"><div id="area" ref="6"><div id="boxes" ref="5"><label ref="1"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-76" text="scared"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-77" text="brave"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-78" text="fleshy"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-79" text="maintain"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="11" value="true"></input><t ref="-80" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select unusual
click
11
null
stop
Select words similar to automobile <body ref="7"><div id="wrap" ref="11"><div id="area" ref="9"><div id="boxes" ref="13"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-31" text="flame"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-32" text="unusual"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-33" text="car"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-34" text="water"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-35" text="home"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-36" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to automobile
click
15
null
stop
click submit <body ref="7"><div id="wrap" ref="11"><div id="area" ref="9"><div id="boxes" ref="13"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-67" text="flame"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-68" text="unusual"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-69" text="car"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-70" text="water"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-71" text="home"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-72" text="mistaken"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>
click submit
click
1
null
stop
Select words similar to corrupt <body ref="13"><div id="wrap" ref="10"><div id="area" ref="11"><div id="boxes" ref="3"><label ref="12"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-21" text="tv"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-22" text="serene"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-23" text="miserable"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-24" text="depraved"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to corrupt
click
7
null
stop
Select words similar to love <body ref="12"><div id="wrap" ref="11"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="8"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-21" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-22" text="angry"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-23" text="love"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-24" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to love
click
2
null
stop
Select words similar to humorous, response, courageous, water <body ref="3"><div id="wrap" ref="4"><div id="area" ref="13"><div id="boxes" ref="5"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-26" text="answer"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-27" text="funny"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-28" text="real"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-29" text="courageous"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="6" value="true"></input><t ref="-30" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to humorous, response, courageous, water
click
6
null
stop
Select words similar to peculiar, houses <body ref="4"><div id="wrap" ref="2"><div id="area" ref="9"><div id="boxes" ref="15"><label ref="17"><input type="checkbox" id="ch0" ref="16" value="true"></input><t ref="-36" text="weird"></t></label><br ref="11"></br><label ref="14"><input type="checkbox" id="ch1" ref="18" value="false"></input><t ref="-37" text="houses"></t></label><br ref="8"></br><label ref="13"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-38" text="end"></t></label><br ref="5"></br><label ref="6"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-39" text="television"></t></label><br ref="3"></br><label ref="4"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-40" text="response"></t></label><br ref="9"></br></div><br ref="1"></br><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to peculiar, houses
click
16
null
stop
Select words similar to weird <body ref="8"><div id="wrap" ref="4"><div id="area" ref="10"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-26" text="dumb"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-27" text="fleshy"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-28" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-29" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-30" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to weird
click
5
null
stop
Select dull <body ref="8"><div id="wrap" ref="4"><div id="area" ref="10"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-56" text="dumb"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="13" value="true"></input><t ref="-57" text="fleshy"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-58" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-59" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-60" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select dull
click
13
null
stop
Select words similar to joyful <body ref="8"><div id="wrap" ref="9"><div id="area" ref="7"><div id="boxes" ref="3"><label ref="4"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-21" text="happy"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-22" text="house"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-23" text="water"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-24" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to joyful
click
11
null
stop
Select words similar to mistaken <body ref="4"><div id="wrap" ref="8"><div id="area" ref="2"><div id="boxes" ref="3"><label ref="11"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-22" text="mistaken"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="6" value="true"></input><t ref="-23" text="comical"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-24" text="carve"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to mistaken
click
6
null
stop
Select words similar to loathe <body ref="3"><div id="wrap" ref="7"><div id="area" ref="14"><div id="boxes" ref="1"><label ref="8"><input type="checkbox" id="ch0" ref="17" value="true"></input><t ref="-31" text="despise"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-32" text="big"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-33" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-34" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-35" text="scarlet"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-36" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select words similar to loathe
click
17
null
stop
Select words similar to comical <body ref="12"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-36" text="joyful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-37" text="calm"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-38" text="houses"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-39" text="humorous"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-40" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to comical
click
14
null
stop
Select quiet <body ref="12"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-66" text="joyful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-67" text="calm"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="11" value="true"></input><t ref="-68" text="houses"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-69" text="humorous"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-70" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select quiet
click
11
null
stop
Select delighted <body ref="12"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-96" text="joyful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-97" text="calm"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="11" value="true"></input><t ref="-98" text="houses"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-99" text="humorous"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-100" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select delighted
click
15
null
stop
Select fleshy <body ref="12"><div id="wrap" ref="4"><div id="area" ref="2"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-126" text="joyful"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-127" text="calm"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="11" value="true"></input><t ref="-128" text="houses"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-129" text="humorous"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-130" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select fleshy
click
1
null
stop
Select words similar to calm <body ref="2"><div id="wrap" ref="10"><div id="area" ref="5"><div id="boxes" ref="8"><label ref="1"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-16" text="mistaken"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-17" text="peaceful"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-18" text="rabbits"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to calm
click
9
null
stop
Select mistaken <body ref="2"><div id="wrap" ref="10"><div id="area" ref="5"><div id="boxes" ref="8"><label ref="1"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-34" text="mistaken"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-35" text="peaceful"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-36" text="rabbits"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select mistaken
click
4
null
stop
Select words similar to gleeful <body ref="6"><div id="wrap" ref="4"><div id="area" ref="7"><div id="boxes" ref="3"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-22" text="appetizing"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-23" text="happy"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-24" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to gleeful
click
8
null
stop
Select savory <body ref="6"><div id="wrap" ref="4"><div id="area" ref="7"><div id="boxes" ref="3"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-46" text="appetizing"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-47" text="happy"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-48" text="televisions"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select savory
click
10
null
stop
Select words similar to kill, old, red, weird, sustain <body ref="13"><div id="wrap" ref="1"><div id="area" ref="8"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-31" text="bunnies"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-32" text="odd"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-33" text="vermillion"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-34" text="kill"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-35" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-36" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to kill, old, red, weird, sustain
click
1
null
stop
Select words similar to flames <body ref="8"><div id="wrap" ref="11"><div id="area" ref="10"><div id="boxes" ref="9"><label ref="6"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-22" text="flames"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-23" text="sad"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-24" text="dislike"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to flames
click
1
null
stop
Select words similar to gigantic, genuine, delicious, odd, loathe <body ref="8"><div id="wrap" ref="10"><div id="area" ref="2"><div id="boxes" ref="17"><label ref="1"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-31" text="genuine"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-32" text="peculiar"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-33" text="savory"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-34" text="keep"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-35" text="dislike"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="11" value="true"></input><t ref="-36" text="large"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to gigantic, genuine, delicious, odd, loathe
click
11
null
stop
Select words similar to amusing <body ref="11"><div id="wrap" ref="13"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-43" text="gleeful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-44" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-45" text="murder"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-46" text="televisions"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-47" text="water"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-48" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to amusing
click
15
null
stop
Select appetizing <body ref="11"><div id="wrap" ref="13"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-91" text="gleeful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-92" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-93" text="murder"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-94" text="televisions"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-95" text="water"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-96" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select appetizing
click
5
null
stop
Select water <body ref="11"><div id="wrap" ref="13"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-139" text="gleeful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-140" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="true"></input><t ref="-141" text="murder"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-142" text="televisions"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-143" text="water"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-144" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select water
click
16
null
stop
Select murder <body ref="11"><div id="wrap" ref="13"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="3"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-187" text="gleeful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-188" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="16" value="true"></input><t ref="-189" text="murder"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-190" text="televisions"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="5" value="true"></input><t ref="-191" text="water"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-192" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select murder
click
1
null
stop
Select words similar to panicked <body ref="11"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-79" text="dumb"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-80" text="camouflage"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-81" text="frightened"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-82" text="favor"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-83" text="delectable"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-84" text="chop"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to panicked
click
1
null
stop
Select dumb <body ref="11"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-127" text="dumb"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-128" text="camouflage"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-129" text="frightened"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-130" text="favor"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-131" text="delectable"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-132" text="chop"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select dumb
click
3
null
stop
Select chop <body ref="11"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-175" text="dumb"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-176" text="camouflage"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-177" text="frightened"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-178" text="favor"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-179" text="delectable"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-180" text="chop"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select chop
click
6
null
stop
Select words similar to fearless, mistaken, vehicles <body ref="2"><div id="wrap" ref="13"><div id="area" ref="14"><div id="boxes" ref="8"><label ref="10"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-36" text="car"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-37" text="fearful"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-38" text="erroneous"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-39" text="courageous"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-40" text="vermillion"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to fearless, mistaken, vehicles
click
4
null
stop
Select words similar to home <body ref="5"><div id="wrap" ref="11"><div id="area" ref="8"><div id="boxes" ref="1"><label ref="7"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-31" text="camouflage"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="17" value="false"></input><t ref="-32" text="fat"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-33" text="genuine"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-34" text="start"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-35" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-36" text="tv"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to home
click
2
null
stop
Select hide <body ref="5"><div id="wrap" ref="11"><div id="area" ref="8"><div id="boxes" ref="1"><label ref="7"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-67" text="camouflage"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="17" value="false"></input><t ref="-68" text="fat"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="16" value="false"></input><t ref="-69" text="genuine"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-70" text="start"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-71" text="houses"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-72" text="tv"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select hide
click
15
null
stop
Select words similar to laughable <body ref="8"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="10"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-21" text="launch"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-22" text="cars"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-23" text="pig"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-24" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to laughable
click
11
null
stop
Select launch <body ref="8"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="9"><label ref="10"><input type="checkbox" id="ch0" ref="6" value="true"></input><t ref="-45" text="launch"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-46" text="cars"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-47" text="pig"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-48" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select launch
click
6
null
stop
Select words similar to actual <body ref="7"><div id="wrap" ref="12"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-26" text="love"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-27" text="calm"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-28" text="furious"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-29" text="actual"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-30" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to actual
click
3
null
stop
click submit <body ref="7"><div id="wrap" ref="12"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="2"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-86" text="love"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-87" text="calm"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-88" text="furious"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-89" text="actual"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-90" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
click submit
click
4
null
stop
Select words similar to dumb <body ref="8"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-26" text="bunnies"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-27" text="dull"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-28" text="water"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-29" text="joyful"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-30" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to dumb
click
6
null
stop
Select water <body ref="8"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-56" text="bunnies"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-57" text="dull"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-58" text="water"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-59" text="joyful"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-60" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select water
click
2
null
stop
Select joyful <body ref="8"><div id="wrap" ref="15"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-86" text="bunnies"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-87" text="dull"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-88" text="water"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-89" text="joyful"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-90" text="sorrowful"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select joyful
click
11
null
stop
Select words similar to televisions, carve, keep, tiny <body ref="13"><div id="wrap" ref="8"><div id="area" ref="1"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-36" text="televisions"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-37" text="funny"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-38" text="sustain"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-39" text="petite"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-40" text="cut"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to televisions, carve, keep, tiny
click
12
null
stop
Select words similar to bunnies <body ref="11"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="3"><label ref="13"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-21" text="kill"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-22" text="bunnies"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-23" text="mad"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-24" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to bunnies
click
5
null
stop
Select chubby <body ref="11"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="3"><label ref="13"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-45" text="kill"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-46" text="bunnies"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-47" text="mad"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-48" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select chubby
click
10
null
stop
Select murder <body ref="11"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="3"><label ref="13"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-69" text="kill"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-70" text="bunnies"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-71" text="mad"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-72" text="fat"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select murder
click
4
null
stop
Select words similar to sad <body ref="13"><div id="wrap" ref="11"><div id="area" ref="14"><div id="boxes" ref="10"><label ref="9"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-43" text="genuine"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-44" text="stupid"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-45" text="miserable"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-46" text="aged"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-47" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-48" text="red"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to sad
click
2
null
stop
Select words similar to evil <body ref="9"><div id="wrap" ref="8"><div id="area" ref="15"><div id="boxes" ref="4"><label ref="5"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-26" text="chop"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-27" text="homes"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-28" text="pig"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-29" text="sinful"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="6" value="true"></input><t ref="-30" text="aged"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to evil
click
6
null
stop
Select words similar to humorous <body ref="10"><div id="wrap" ref="11"><div id="area" ref="9"><div id="boxes" ref="8"><label ref="6"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-16" text="afraid"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-17" text="sustain"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-18" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to humorous
click
3
null
stop
click submit <body ref="10"><div id="wrap" ref="11"><div id="area" ref="9"><div id="boxes" ref="8"><label ref="6"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-34" text="afraid"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-35" text="sustain"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-36" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>
click submit
click
1
null
stop
Select words similar to scared <body ref="5"><div id="wrap" ref="3"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-43" text="strange"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-44" text="unhappy"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-45" text="water"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-46" text="depraved"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-47" text="furious"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-48" text="panicked"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to scared
click
3
null
stop
Select unhappy <body ref="5"><div id="wrap" ref="3"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-91" text="strange"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-92" text="unhappy"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-93" text="water"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-94" text="depraved"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-95" text="furious"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-96" text="panicked"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select unhappy
click
15
null
stop
Select words similar to terrified <body ref="17"><div id="wrap" ref="12"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="9"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-43" text="savory"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-44" text="halt"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-45" text="launch"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-46" text="frightened"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-47" text="like"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-48" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to terrified
click
6
null
stop
Select favor <body ref="17"><div id="wrap" ref="12"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="9"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-91" text="savory"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-92" text="halt"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-93" text="launch"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-94" text="frightened"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-95" text="like"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-96" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select favor
click
8
null
stop
click submit <body ref="17"><div id="wrap" ref="12"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="9"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-127" text="savory"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-128" text="halt"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-129" text="launch"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-130" text="frightened"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-131" text="like"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-132" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>
click submit
click
8
null
stop
Select words similar to sad, favor <body ref="5"><div id="wrap" ref="4"><div id="area" ref="6"><div id="boxes" ref="2"><label ref="11"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-29" text="like"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-30" text="tragic"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-31" text="reply"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-32" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to sad, favor
click
9
null
stop
Select words similar to furious <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-31" text="furious"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-33" text="houses"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-34" text="cease"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-35" text="little"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-36" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to furious
click
8
null
stop
Select stop <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-67" text="furious"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-68" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-69" text="houses"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-70" text="cease"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-71" text="little"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-72" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select stop
click
9
null
stop
Select old <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-103" text="furious"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-104" text="fleshy"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-105" text="houses"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-106" text="cease"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-107" text="little"></t></label><label ref="17"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-108" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select old
click
7
null
stop