{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'PDF TO Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); , "},"instruction":{"kind":"string","value":"Select words similar to start"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36701,"cells":{"history_episodes":{"kind":"string","value":" Select real
, "},"instruction":{"kind":"string","value":"Select real"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36702,"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":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36703,"cells":{"history_episodes":{"kind":"string","value":" Select brave
, "},"instruction":{"kind":"string","value":"Select brave"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36704,"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":36705,"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":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36706,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to genuine, erroneous
, "},"instruction":{"kind":"string","value":"Select words similar to genuine, erroneous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36707,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to happy
, "},"instruction":{"kind":"string","value":"Select words similar to happy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36708,"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":36709,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to funny
, "},"instruction":{"kind":"string","value":"Select words similar to funny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36710,"cells":{"history_episodes":{"kind":"string","value":" Select angry
, "},"instruction":{"kind":"string","value":"Select angry"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36711,"cells":{"history_episodes":{"kind":"string","value":" Select weird
, "},"instruction":{"kind":"string","value":"Select weird"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36712,"cells":{"history_episodes":{"kind":"string","value":" Select mini
, "},"instruction":{"kind":"string","value":"Select mini"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36713,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to pork
, "},"instruction":{"kind":"string","value":"Select words similar to pork"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36714,"cells":{"history_episodes":{"kind":"string","value":" Select TV
, "},"instruction":{"kind":"string","value":"Select TV"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36715,"cells":{"history_episodes":{"kind":"string","value":" Select comical
, "},"instruction":{"kind":"string","value":"Select comical"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36716,"cells":{"history_episodes":{"kind":"string","value":" Select little
, "},"instruction":{"kind":"string","value":"Select little"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36717,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to brave
, "},"instruction":{"kind":"string","value":"Select words similar to brave"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36718,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to begin
, "},"instruction":{"kind":"string","value":"Select words similar to begin"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36719,"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":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36720,"cells":{"history_episodes":{"kind":"string","value":" Select archaic
, "},"instruction":{"kind":"string","value":"Select archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36721,"cells":{"history_episodes":{"kind":"string","value":" Select chubby
, "},"instruction":{"kind":"string","value":"Select chubby"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36722,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to kill
, "},"instruction":{"kind":"string","value":"Select words similar to kill"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36723,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to afraid
, "},"instruction":{"kind":"string","value":"Select words similar to afraid"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36724,"cells":{"history_episodes":{"kind":"string","value":" Select depraved
, "},"instruction":{"kind":"string","value":"Select depraved"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36725,"cells":{"history_episodes":{"kind":"string","value":" Select stop
, "},"instruction":{"kind":"string","value":"Select stop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36726,"cells":{"history_episodes":{"kind":"string","value":" Select comical
, "},"instruction":{"kind":"string","value":"Select comical"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36727,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to irritated
, "},"instruction":{"kind":"string","value":"Select words similar to irritated"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36728,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to water, genuine, houses














, "},"instruction":{"kind":"string","value":"Select words similar to water, genuine, houses"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36729,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to pig
, "},"instruction":{"kind":"string","value":"Select words similar to pig"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36730,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36731,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to televisions
, "},"instruction":{"kind":"string","value":"Select words similar to televisions"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36732,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to sustain
, "},"instruction":{"kind":"string","value":"Select words similar to sustain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36733,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36734,"cells":{"history_episodes":{"kind":"string","value":" Select plump
, "},"instruction":{"kind":"string","value":"Select plump"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36735,"cells":{"history_episodes":{"kind":"string","value":" Select small
, "},"instruction":{"kind":"string","value":"Select small"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36736,"cells":{"history_episodes":{"kind":"string","value":" Select TV
, "},"instruction":{"kind":"string","value":"Select TV"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36737,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36738,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to strange
, "},"instruction":{"kind":"string","value":"Select words similar to strange"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36739,"cells":{"history_episodes":{"kind":"string","value":" Select reply
, "},"instruction":{"kind":"string","value":"Select reply"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36740,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to angry, dislike
, "},"instruction":{"kind":"string","value":"Select words similar to angry, dislike"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36741,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mad
, "},"instruction":{"kind":"string","value":"Select words similar to mad"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36742,"cells":{"history_episodes":{"kind":"string","value":" Select rabbits
, "},"instruction":{"kind":"string","value":"Select rabbits"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36743,"cells":{"history_episodes":{"kind":"string","value":" Select pig
, "},"instruction":{"kind":"string","value":"Select pig"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36744,"cells":{"history_episodes":{"kind":"string","value":" Select tiny
, "},"instruction":{"kind":"string","value":"Select tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36745,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to water, murder
, "},"instruction":{"kind":"string","value":"Select words similar to water, murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36746,"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":36747,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to huge
, "},"instruction":{"kind":"string","value":"Select words similar to huge"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36748,"cells":{"history_episodes":{"kind":"string","value":" Select peculiar
, "},"instruction":{"kind":"string","value":"Select peculiar"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36749,"cells":{"history_episodes":{"kind":"string","value":" Select response
, "},"instruction":{"kind":"string","value":"Select response"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36750,"cells":{"history_episodes":{"kind":"string","value":" Select swine
, "},"instruction":{"kind":"string","value":"Select swine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36751,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to retain, sad, funny
, "},"instruction":{"kind":"string","value":"Select words similar to retain, sad, funny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36752,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to sinful
, "},"instruction":{"kind":"string","value":"Select words similar to sinful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36753,"cells":{"history_episodes":{"kind":"string","value":" Select furious
, "},"instruction":{"kind":"string","value":"Select furious"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36754,"cells":{"history_episodes":{"kind":"string","value":" Select preserve
, "},"instruction":{"kind":"string","value":"Select preserve"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36755,"cells":{"history_episodes":{"kind":"string","value":" Select peculiar
, "},"instruction":{"kind":"string","value":"Select peculiar"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36756,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to adore, enormous
, "},"instruction":{"kind":"string","value":"Select words similar to adore, enormous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36757,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to little
, "},"instruction":{"kind":"string","value":"Select words similar to little"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36758,"cells":{"history_episodes":{"kind":"string","value":" Select car
, "},"instruction":{"kind":"string","value":"Select car"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36759,"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":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36760,"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":36761,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36762,"cells":{"history_episodes":{"kind":"string","value":" Select finish
, "},"instruction":{"kind":"string","value":"Select finish"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36763,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to hate
, "},"instruction":{"kind":"string","value":"Select words similar to hate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36764,"cells":{"history_episodes":{"kind":"string","value":" Select fire
, "},"instruction":{"kind":"string","value":"Select fire"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36765,"cells":{"history_episodes":{"kind":"string","value":" Select response
, "},"instruction":{"kind":"string","value":"Select response"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36766,"cells":{"history_episodes":{"kind":"string","value":" Select tiny
, "},"instruction":{"kind":"string","value":"Select tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36767,"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":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36768,"cells":{"history_episodes":{"kind":"string","value":" Select courageous
, "},"instruction":{"kind":"string","value":"Select courageous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36769,"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":36770,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to sustain
, "},"instruction":{"kind":"string","value":"Select words similar to sustain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36771,"cells":{"history_episodes":{"kind":"string","value":" Select television
, "},"instruction":{"kind":"string","value":"Select television"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36772,"cells":{"history_episodes":{"kind":"string","value":" Select wrong
, "},"instruction":{"kind":"string","value":"Select wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36773,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to televisions
, "},"instruction":{"kind":"string","value":"Select words similar to televisions"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36774,"cells":{"history_episodes":{"kind":"string","value":" Select gleeful
, "},"instruction":{"kind":"string","value":"Select gleeful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36775,"cells":{"history_episodes":{"kind":"string","value":" Select archaic
, "},"instruction":{"kind":"string","value":"Select archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36776,"cells":{"history_episodes":{"kind":"string","value":" Select brave
, "},"instruction":{"kind":"string","value":"Select brave"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36777,"cells":{"history_episodes":{"kind":"string","value":" Select camouflage
, "},"instruction":{"kind":"string","value":"Select camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36778,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36779,"cells":{"history_episodes":{"kind":"string","value":" Select funny
, "},"instruction":{"kind":"string","value":"Select funny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36780,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to stupid
, "},"instruction":{"kind":"string","value":"Select words similar to stupid"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36781,"cells":{"history_episodes":{"kind":"string","value":" Select answer
, "},"instruction":{"kind":"string","value":"Select answer"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36782,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to start
, "},"instruction":{"kind":"string","value":"Select words similar to start"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36783,"cells":{"history_episodes":{"kind":"string","value":" click submit
, "},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36784,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to water, automobile, peculiar
, "},"instruction":{"kind":"string","value":"Select words similar to water, automobile, peculiar"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36785,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delicious, mini, finish, amusing, actual
, "},"instruction":{"kind":"string","value":"Select words similar to delicious, mini, finish, amusing, actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36786,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to televisions
, "},"instruction":{"kind":"string","value":"Select words similar to televisions"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36787,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36788,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to scarlet
, "},"instruction":{"kind":"string","value":"Select words similar to scarlet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36789,"cells":{"history_episodes":{"kind":"string","value":" Select evil
, "},"instruction":{"kind":"string","value":"Select evil"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36790,"cells":{"history_episodes":{"kind":"string","value":" Select panicked
, "},"instruction":{"kind":"string","value":"Select panicked"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36791,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delectable, amusing, depraved, bunny, mild
, "},"instruction":{"kind":"string","value":"Select words similar to delectable, amusing, depraved, bunny, mild"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36792,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to delighted
, "},"instruction":{"kind":"string","value":"Select words similar to delighted"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36793,"cells":{"history_episodes":{"kind":"string","value":" Select hide
, "},"instruction":{"kind":"string","value":"Select hide"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36794,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to funny
, "},"instruction":{"kind":"string","value":"Select words similar to funny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36795,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to unhappy
, "},"instruction":{"kind":"string","value":"Select words similar to unhappy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36796,"cells":{"history_episodes":{"kind":"string","value":" Select corrupt
, "},"instruction":{"kind":"string","value":"Select corrupt"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36797,"cells":{"history_episodes":{"kind":"string","value":" Select old
, "},"instruction":{"kind":"string","value":"Select old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36798,"cells":{"history_episodes":{"kind":"string","value":" Select vehicles
, "},"instruction":{"kind":"string","value":"Select vehicles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":36799,"cells":{"history_episodes":{"kind":"string","value":" Select stop
, "},"instruction":{"kind":"string","value":"Select stop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":367,"numItemsPerPage":100,"numTotalItems":40186,"offset":36700,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODM3NzYwNywic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MzgxMjA3LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.xUMkGG9502tTMi4S6C0mCnxYcA9VbQiXhw1U53SZpOV8MV1fXditpMW79Yc8B_vujf4SgCffR_t8wIWFEy-CBA","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
Select words similar to start <body ref="3"><div id="wrap" ref="8"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="6"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-31" text="genuine"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-32" text="courageous"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-33" text="serene"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-34" text="incorrect"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-35" text="initiate"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="8" value="true"></input><t ref="-36" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to start
click
8
null
stop
Select real <body ref="3"><div id="wrap" ref="8"><div id="area" ref="9"><div id="boxes" ref="1"><label ref="6"><input type="checkbox" id="ch0" ref="15" value="true"></input><t ref="-67" text="genuine"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-68" text="courageous"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-69" text="serene"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-70" text="incorrect"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-71" text="initiate"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="8" value="true"></input><t ref="-72" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select real
click
15
null
stop
Select words similar to calm <body ref="9"><div id="wrap" ref="6"><div id="area" ref="12"><div id="boxes" ref="3"><label ref="8"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-43" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-44" text="mild"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-45" text="genuine"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-46" text="stop"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-47" text="courageous"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-48" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to calm
click
7
null
stop
Select brave <body ref="9"><div id="wrap" ref="6"><div id="area" ref="12"><div id="boxes" ref="3"><label ref="8"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-91" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-92" text="mild"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-93" text="genuine"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-94" text="stop"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-95" text="courageous"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-96" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select brave
click
14
null
stop
Select strange <body ref="9"><div id="wrap" ref="6"><div id="area" ref="12"><div id="boxes" ref="3"><label ref="8"><input type="checkbox" id="ch0" ref="15" value="true"></input><t ref="-139" text="unusual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-140" text="mild"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-141" text="genuine"></t></label><label ref="11"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-142" text="stop"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="14" value="true"></input><t ref="-143" text="courageous"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-144" text="cheerful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select strange
click
15
null
stop
Select words similar to house <body ref="4"><div id="wrap" ref="11"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-16" text="homes"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-17" text="assassinate"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-18" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to house
click
1
null
stop
Select words similar to genuine, erroneous <body ref="11"><div id="wrap" ref="3"><div id="area" ref="12"><div id="boxes" ref="2"><label ref="4"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-29" text="detest"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="6" value="false"></input><t ref="-30" text="begin"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-31" text="real"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-32" text="incorrect"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to genuine, erroneous
click
7
null
stop
Select words similar to happy <body ref="10"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="2"><label ref="13"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-43" text="loathe"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-44" text="joyful"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-45" text="tvs"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-46" text="genuine"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-47" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-48" text="camouflage"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to happy
click
4
null
stop
click submit <body ref="10"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="2"><label ref="13"><input type="checkbox" id="ch0" ref="15" value="false"></input><t ref="-79" text="loathe"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-80" text="joyful"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-81" text="tvs"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-82" text="genuine"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-83" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-84" text="camouflage"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
click submit
click
6
null
stop
Select words similar to funny <body ref="16"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="7"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-31" text="irritated"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-32" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-33" text="small"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-34" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-35" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="immoral"></t></label></div><button id="subbtn" classes="secondary-action" ref="17" text="submit"></button></div></div></body>,
Select words similar to funny
click
8
null
stop
Select angry <body ref="16"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="7"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-67" text="irritated"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-68" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-69" text="small"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-70" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-71" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-72" text="immoral"></t></label></div><button id="subbtn" classes="secondary-action" ref="17" text="submit"></button></div></div></body>,
Select angry
click
9
null
stop
Select weird <body ref="16"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="7"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-103" text="irritated"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-104" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-105" text="small"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-106" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-107" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-108" text="immoral"></t></label></div><button id="subbtn" classes="secondary-action" ref="17" text="submit"></button></div></div></body>,
Select weird
click
1
null
stop
Select mini <body ref="16"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="7"><label ref="13"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-139" text="irritated"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-140" text="slice"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-141" text="small"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-142" text="comical"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="1" value="true"></input><t ref="-143" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch5" ref="4" value="true"></input><t ref="-144" text="immoral"></t></label></div><button id="subbtn" classes="secondary-action" ref="17" text="submit"></button></div></div></body>,
Select mini
click
4
null
stop
Select words similar to pork <body ref="17"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="pig"></t></label><label ref="16"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-32" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-33" text="response"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-34" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-35" text="petite"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="laughable"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to pork
click
7
null
stop
Select TV <body ref="17"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-67" text="pig"></t></label><label ref="16"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-68" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-69" text="response"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-70" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-71" text="petite"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-72" text="laughable"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select TV
click
6
null
stop
Select comical <body ref="17"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-103" text="pig"></t></label><label ref="16"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-104" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-105" text="response"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-106" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-107" text="petite"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-108" text="laughable"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select comical
click
8
null
stop
Select little <body ref="17"><div id="wrap" ref="10"><div id="area" ref="4"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-139" text="pig"></t></label><label ref="16"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-140" text="tvs"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-141" text="response"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-142" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-143" text="petite"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-144" text="laughable"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select little
click
3
null
stop
Select words similar to brave <body ref="5"><div id="wrap" ref="1"><div id="area" ref="3"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-21" text="crimson"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-22" text="water"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-23" text="televisions"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-24" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to brave
click
1
null
stop
Select words similar to begin <body ref="1"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="7"><label ref="9"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-21" text="sad"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-22" text="delicious"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-23" text="end"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-24" text="begin"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to begin
click
10
null
stop
Select words similar to unusual <body ref="14"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="7"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-36" text="plump"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-37" text="slice"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-38" text="vermillion"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-39" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-40" text="odd"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to unusual
click
9
null
stop
Select archaic <body ref="14"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="7"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-76" text="plump"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-77" text="slice"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-78" text="vermillion"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-79" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-80" text="odd"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select archaic
click
12
null
stop
Select chubby <body ref="14"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="7"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-116" text="plump"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-117" text="slice"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-118" text="vermillion"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-119" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-120" text="odd"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select chubby
click
3
null
stop
Select words similar to kill <body ref="6"><div id="wrap" ref="2"><div id="area" ref="4"><div id="boxes" ref="10"><label ref="13"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-36" text="murder"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-37" text="mini"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-38" text="scared"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-39" text="answer"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-40" text="peaceful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to kill
click
8
null
stop
Select words similar to afraid <body ref="5"><div id="wrap" ref="6"><div id="area" ref="8"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-26" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-27" text="terrified"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-28" text="stop"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-29" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-30" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to afraid
click
14
null
stop
Select depraved <body ref="5"><div id="wrap" ref="6"><div id="area" ref="8"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-56" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-57" text="terrified"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-58" text="stop"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-59" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-60" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select depraved
click
4
null
stop
Select stop <body ref="5"><div id="wrap" ref="6"><div id="area" ref="8"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-86" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-87" text="terrified"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-88" text="stop"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-89" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-90" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select stop
click
7
null
stop
Select comical <body ref="5"><div id="wrap" ref="6"><div id="area" ref="8"><div id="boxes" ref="10"><label ref="12"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-116" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-117" text="terrified"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-118" text="stop"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-119" text="evil"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-120" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select comical
click
3
null
stop
Select words similar to irritated <body ref="10"><div id="wrap" ref="5"><div id="area" ref="9"><div id="boxes" ref="2"><label ref="13"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-21" text="angry"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-22" text="bunny"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-23" text="small"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-24" text="hate"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to irritated
click
12
null
stop
Select words similar to water, genuine, houses <body ref="9"><div id="wrap" ref="16"><div id="area" ref="24"><div id="boxes" ref="20"><label ref="7"><input type="checkbox" id="ch0" ref="22" value="false"></input><t ref="-43" text="mild"></t></label><br ref="1"></br><label ref="13"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-44" text="house"></t></label><br ref="21"></br><label ref="2"><input type="checkbox" id="ch2" ref="23" value="false"></input><t ref="-45" text="water"></t></label><br ref="10"></br><label ref="4"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-46" text="pig"></t></label><br ref="17"></br><label ref="12"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-47" text="real"></t></label><br ref="5"></br><label ref="3"><input type="checkbox" id="ch5" ref="19" value="false"></input><t ref="-48" text="appetizing"></t></label><br ref="15"></br></div><br ref="18"></br><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to water, genuine, houses
click
8
null
stop
Select words similar to pig <body ref="1"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="9"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-21" text="cars"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-22" text="televisions"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-23" text="pork"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-24" text="incorrect"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to pig
click
2
null
stop
click submit <body ref="1"><div id="wrap" ref="5"><div id="area" ref="10"><div id="boxes" ref="6"><label ref="9"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-45" text="cars"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-46" text="televisions"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-47" text="pork"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-48" text="incorrect"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>
click submit
click
12
null
stop
Select words similar to televisions <body ref="12"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="13"><label ref="4"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-26" text="tv"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-27" text="halt"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-28" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-29" text="sad"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-30" text="sinful"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to televisions
click
1
null
stop
Select words similar to sustain <body ref="10"><div id="wrap" ref="4"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="15"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-43" text="tv"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-44" text="water"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-45" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-46" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-47" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-48" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to sustain
click
2
null
stop
Select water <body ref="10"><div id="wrap" ref="4"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="15"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-91" text="tv"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-92" text="water"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-93" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-94" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-95" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-96" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select water
click
8
null
stop
Select plump <body ref="10"><div id="wrap" ref="4"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="15"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-139" text="tv"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-140" text="water"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-141" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-142" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-143" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-144" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select plump
click
9
null
stop
Select small <body ref="10"><div id="wrap" ref="4"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="15"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-187" text="tv"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-188" text="water"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-189" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-190" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-191" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-192" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select small
click
12
null
stop
Select TV <body ref="10"><div id="wrap" ref="4"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="15"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-235" text="tv"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-236" text="water"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-237" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-238" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-239" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-240" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select TV
click
13
null
stop
click submit <body ref="10"><div id="wrap" ref="4"><div id="area" ref="17"><div id="boxes" ref="16"><label ref="15"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-271" text="tv"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-272" text="water"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-273" text="sustain"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-274" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-275" text="petite"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-276" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>
click submit
click
13
null
stop
Select words similar to strange <body ref="5"><div id="wrap" ref="10"><div id="area" ref="1"><div id="boxes" ref="9"><label ref="4"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-43" text="weird"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-44" text="answer"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-45" text="camouflage"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-46" text="water"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-47" text="sad"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-48" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to strange
click
12
null
stop
Select reply <body ref="5"><div id="wrap" ref="10"><div id="area" ref="1"><div id="boxes" ref="9"><label ref="4"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-91" text="weird"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-92" text="answer"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-93" text="camouflage"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-94" text="water"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-95" text="sad"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="7" value="true"></input><t ref="-96" text="little"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select reply
click
7
null
stop
Select words similar to angry, dislike <body ref="2"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="5"><label ref="10"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-16" text="irritated"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-17" text="dislike"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-18" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to angry, dislike
click
1
null
stop
Select words similar to mad <body ref="5"><div id="wrap" ref="10"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="8"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-26" text="rabbits"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-27" text="angry"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-28" text="pig"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-29" text="small"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-30" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to mad
click
1
null
stop
Select rabbits <body ref="5"><div id="wrap" ref="10"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="8"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-56" text="rabbits"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-57" text="angry"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-58" text="pig"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-59" text="small"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-60" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select rabbits
click
7
null
stop
Select pig <body ref="5"><div id="wrap" ref="10"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="8"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-86" text="rabbits"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-87" text="angry"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-88" text="pig"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-89" text="small"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-90" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select pig
click
3
null
stop
Select tiny <body ref="5"><div id="wrap" ref="10"><div id="area" ref="9"><div id="boxes" ref="4"><label ref="8"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-116" text="rabbits"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="1" value="true"></input><t ref="-117" text="angry"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-118" text="pig"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-119" text="small"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-120" text="peculiar"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select tiny
click
10
null
stop
Select words similar to water, murder <body ref="9"><div id="wrap" ref="5"><div id="area" ref="7"><div id="boxes" ref="1"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-29" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-30" text="flame"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-31" text="detest"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-32" text="kill"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to water, murder
click
8
null
stop
click submit <body ref="9"><div id="wrap" ref="5"><div id="area" ref="7"><div id="boxes" ref="1"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-53" text="water"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-54" text="flame"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="8" value="true"></input><t ref="-55" text="detest"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-56" text="kill"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
click submit
click
6
null
stop
Select words similar to huge <body ref="1"><div id="wrap" ref="12"><div id="area" ref="5"><div id="boxes" ref="13"><label ref="10"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-26" text="unusual"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-27" text="tvs"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-28" text="pig"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-29" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-30" text="huge"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to huge
click
11
null
stop
Select peculiar <body ref="1"><div id="wrap" ref="12"><div id="area" ref="5"><div id="boxes" ref="13"><label ref="10"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-56" text="unusual"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-57" text="tvs"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-58" text="pig"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-59" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-60" text="huge"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select peculiar
click
2
null
stop
Select response <body ref="1"><div id="wrap" ref="12"><div id="area" ref="5"><div id="boxes" ref="13"><label ref="10"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-86" text="unusual"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-87" text="tvs"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-88" text="pig"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-89" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-90" text="huge"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select response
click
3
null
stop
Select swine <body ref="1"><div id="wrap" ref="12"><div id="area" ref="5"><div id="boxes" ref="13"><label ref="10"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-116" text="unusual"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-117" text="tvs"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-118" text="pig"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-119" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-120" text="huge"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select swine
click
4
null
stop
Select words similar to retain, sad, funny <body ref="3"><div id="wrap" ref="4"><div id="area" ref="13"><div id="boxes" ref="2"><label ref="11"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-31" text="sad"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-32" text="strange"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-33" text="television"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="16" value="false"></input><t ref="-34" text="water"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-35" text="retain"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="10" value="true"></input><t ref="-36" text="amusing"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to retain, sad, funny
click
10
null
stop
Select words similar to sinful <body ref="4"><div id="wrap" ref="15"><div id="area" ref="9"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-31" text="furious"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-32" text="fat"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-33" text="fire"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-34" text="sinful"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-35" text="strange"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-36" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to sinful
click
10
null
stop
Select furious <body ref="4"><div id="wrap" ref="15"><div id="area" ref="9"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-67" text="furious"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-68" text="fat"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-69" text="fire"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-70" text="sinful"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-71" text="strange"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-72" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select furious
click
7
null
stop
Select preserve <body ref="4"><div id="wrap" ref="15"><div id="area" ref="9"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-103" text="furious"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-104" text="fat"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-105" text="fire"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-106" text="sinful"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-107" text="strange"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="15" value="false"></input><t ref="-108" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select preserve
click
13
null
stop
Select peculiar <body ref="4"><div id="wrap" ref="15"><div id="area" ref="9"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-139" text="furious"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-140" text="fat"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-141" text="fire"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-142" text="sinful"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-143" text="strange"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="15" value="true"></input><t ref="-144" text="maintain"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select peculiar
click
15
null
stop
Select words similar to adore, enormous <body ref="5"><div id="wrap" ref="14"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-26" text="murder"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-27" text="favor"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-28" text="mad"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="13" value="false"></input><t ref="-29" text="large"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-30" text="water"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to adore, enormous
click
10
null
stop
Select words similar to little <body ref="5"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="4"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-29" text="calm"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-30" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-31" text="automobiles"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-32" text="tiny"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to little
click
10
null
stop
Select car <body ref="5"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="4"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-61" text="calm"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-62" text="rabbit"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-63" text="automobiles"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="true"></input><t ref="-64" text="tiny"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select car
click
7
null
stop
Select words similar to automobile <body ref="9"><div id="wrap" ref="10"><div id="area" ref="6"><div id="boxes" ref="12"><label ref="5"><input type="checkbox" id="ch0" ref="16" value="false"></input><t ref="-115" text="archaic"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-116" text="water"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-117" text="vehicle"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-118" text="crimson"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-119" text="reply"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-120" text="genuine"></t></label></div><button id="subbtn" classes="secondary-action" ref="17" text="submit"></button></div></div></body>,
Select words similar to automobile
click
7
null
stop
Select water <body ref="9"><div id="wrap" ref="10"><div id="area" ref="6"><div id="boxes" ref="12"><label ref="5"><input type="checkbox" id="ch0" ref="16" value="false"></input><t ref="-151" text="archaic"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-152" text="water"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-153" text="vehicle"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-154" text="crimson"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-155" text="reply"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="13" value="false"></input><t ref="-156" text="genuine"></t></label></div><button id="subbtn" classes="secondary-action" ref="17" text="submit"></button></div></div></body>,
Select water
click
2
null
stop
Select words similar to maintain <body ref="2"><div id="wrap" ref="8"><div id="area" ref="11"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-22" text="house"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-23" text="sustain"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-24" text="halt"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to maintain
click
3
null
stop
Select finish <body ref="2"><div id="wrap" ref="8"><div id="area" ref="11"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-46" text="house"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-47" text="sustain"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-48" text="halt"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select finish
click
10
null
stop
Select words similar to hate <body ref="15"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-43" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-44" text="despise"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-45" text="little"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-46" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-47" text="dull"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-48" text="flame"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to hate
click
9
null
stop
Select fire <body ref="15"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-91" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-92" text="despise"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-93" text="little"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-94" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-95" text="dull"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-96" text="flame"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select fire
click
6
null
stop
Select response <body ref="15"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-175" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-176" text="despise"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-177" text="little"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-178" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-179" text="dull"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="1" value="false"></input><t ref="-180" text="flame"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select response
click
2
null
stop
Select tiny <body ref="15"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="3"><label ref="10"><input type="checkbox" id="ch0" ref="9" value="true"></input><t ref="-223" text="water"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-224" text="despise"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-225" text="little"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-226" text="response"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-227" text="dull"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="1" value="true"></input><t ref="-228" text="flame"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select tiny
click
1
null
stop
Select words similar to assassinate <body ref="2"><div id="wrap" ref="12"><div id="area" ref="9"><div id="boxes" ref="7"><label ref="14"><input type="checkbox" id="ch0" ref="16" value="false"></input><t ref="-79" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-80" text="love"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="13" value="true"></input><t ref="-81" text="kill"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-82" text="fearless"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-83" text="frightened"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-84" text="halt"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to assassinate
click
13
null
stop
Select courageous <body ref="2"><div id="wrap" ref="12"><div id="area" ref="9"><div id="boxes" ref="7"><label ref="14"><input type="checkbox" id="ch0" ref="16" value="false"></input><t ref="-127" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-128" text="love"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="13" value="true"></input><t ref="-129" text="kill"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-130" text="fearless"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-131" text="frightened"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-132" text="halt"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select courageous
click
3
null
stop
click submit <body ref="2"><div id="wrap" ref="12"><div id="area" ref="9"><div id="boxes" ref="7"><label ref="14"><input type="checkbox" id="ch0" ref="16" value="false"></input><t ref="-175" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-176" text="love"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="13" value="true"></input><t ref="-177" text="kill"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-178" text="fearless"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-179" text="frightened"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-180" text="halt"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>
click submit
click
3
null
stop
Select words similar to sustain <body ref="1"><div id="wrap" ref="11"><div id="area" ref="12"><div id="boxes" ref="5"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-31" text="quiet"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-32" text="televisions"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-33" text="reply"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-34" text="retain"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="wrong"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-36" text="slice"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to sustain
click
14
null
stop
Select television <body ref="1"><div id="wrap" ref="11"><div id="area" ref="12"><div id="boxes" ref="5"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-67" text="quiet"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-68" text="televisions"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-69" text="reply"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-70" text="retain"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-71" text="wrong"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-72" text="slice"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select television
click
7
null
stop
Select wrong <body ref="1"><div id="wrap" ref="11"><div id="area" ref="12"><div id="boxes" ref="5"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="true"></input><t ref="-103" text="quiet"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="7" value="true"></input><t ref="-104" text="televisions"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-105" text="reply"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-106" text="retain"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-107" text="wrong"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="16" value="false"></input><t ref="-108" text="slice"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select wrong
click
15
null
stop
Select words similar to televisions <body ref="8"><div id="wrap" ref="2"><div id="area" ref="5"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-43" text="fearless"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-44" text="hide"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-45" text="delighted"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-46" text="water"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-47" text="television"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="false"></input><t ref="-48" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to televisions
click
2
null
stop
Select gleeful <body ref="8"><div id="wrap" ref="2"><div id="area" ref="5"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-91" text="fearless"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-92" text="hide"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-93" text="delighted"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-94" text="water"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-95" text="television"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-96" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select gleeful
click
9
null
stop
Select archaic <body ref="8"><div id="wrap" ref="2"><div id="area" ref="5"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-139" text="fearless"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-140" text="hide"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-141" text="delighted"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-142" text="water"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-143" text="television"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-144" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select archaic
click
3
null
stop
Select brave <body ref="8"><div id="wrap" ref="2"><div id="area" ref="5"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-187" text="fearless"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-188" text="hide"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-189" text="delighted"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-190" text="water"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-191" text="television"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-192" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select brave
click
11
null
stop
Select camouflage <body ref="8"><div id="wrap" ref="2"><div id="area" ref="5"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-235" text="fearless"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-236" text="hide"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-237" text="delighted"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-238" text="water"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-239" text="television"></t></label><label ref="5"><input type="checkbox" id="ch5" ref="9" value="true"></input><t ref="-240" text="archaic"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select camouflage
click
12
null
stop
Select words similar to bunnies <body ref="9"><div id="wrap" ref="10"><div id="area" ref="8"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-16" text="stop"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="4" value="false"></input><t ref="-17" text="laughable"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-18" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to bunnies
click
3
null
stop
Select funny <body ref="9"><div id="wrap" ref="10"><div id="area" ref="8"><div id="boxes" ref="7"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-34" text="stop"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-35" text="laughable"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-36" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select funny
click
4
null
stop
Select words similar to stupid <body ref="5"><div id="wrap" ref="17"><div id="area" ref="10"><div id="boxes" ref="16"><label ref="6"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-31" text="dull"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-32" text="laughable"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-33" text="flame"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-34" text="water"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-35" text="mistaken"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="8" value="true"></input><t ref="-36" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to stupid
click
8
null
stop
Select answer <body ref="5"><div id="wrap" ref="17"><div id="area" ref="10"><div id="boxes" ref="16"><label ref="6"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-67" text="dull"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="15" value="true"></input><t ref="-68" text="laughable"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="13" value="false"></input><t ref="-69" text="flame"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-70" text="water"></t></label><label ref="12"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-71" text="mistaken"></t></label><label ref="3"><input type="checkbox" id="ch5" ref="8" value="true"></input><t ref="-72" text="answer"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select answer
click
15
null
stop
Select words similar to start <body ref="10"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="8"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-55" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-56" text="archaic"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-57" text="courageous"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-58" text="fleshy"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-59" text="fires"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="8" value="false"></input><t ref="-60" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to start
click
7
null
stop
click submit <body ref="10"><div id="wrap" ref="5"><div id="area" ref="1"><div id="boxes" ref="8"><label ref="6"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-91" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-92" text="archaic"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-93" text="courageous"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="true"></input><t ref="-94" text="fleshy"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-95" text="fires"></t></label><label ref="1"><input type="checkbox" id="ch5" ref="8" value="true"></input><t ref="-96" text="launch"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
click submit
click
7
null
stop
Select words similar to water, automobile, peculiar <body ref="14"><div id="wrap" ref="12"><div id="area" ref="7"><div id="boxes" ref="6"><label ref="5"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-36" text="automobile"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="10" value="true"></input><t ref="-37" text="water"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-38" text="weird"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-39" text="chubby"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="8" value="false"></input><t ref="-40" text="rabbit"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to water, automobile, peculiar
click
10
null
stop
Select words similar to delicious, mini, finish, amusing, actual <body ref="17"><div id="wrap" ref="8"><div id="area" ref="2"><div id="boxes" ref="1"><label ref="16"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-43" text="genuine"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-44" text="savory"></t></label><label ref="7"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-45" text="old"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-46" text="finish"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-47" text="petite"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-48" text="amusing"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to delicious, mini, finish, amusing, actual
click
6
null
stop
Select words similar to televisions <body ref="5"><div id="wrap" ref="8"><div id="area" ref="14"><div id="boxes" ref="4"><label ref="6"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-96" text="red"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-97" text="mild"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-98" text="television"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-99" text="favor"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-100" text="wrong"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to televisions
click
1
null
stop
click submit <body ref="5"><div id="wrap" ref="8"><div id="area" ref="14"><div id="boxes" ref="4"><label ref="6"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-126" text="red"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-127" text="mild"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-128" text="television"></t></label><label ref="15"><input type="checkbox" id="ch3" ref="2" value="false"></input><t ref="-129" text="favor"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-130" text="wrong"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>
click submit
click
13
null
stop
Select words similar to scarlet <body ref="16"><div id="wrap" ref="14"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="7"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-43" text="terrified"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-44" text="vermillion"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-45" text="old"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-46" text="corrupt"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-47" text="genuine"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-48" text="favor"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select words similar to scarlet
click
3
null
stop
Select evil <body ref="16"><div id="wrap" ref="14"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="7"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-91" text="terrified"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-92" text="vermillion"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-93" text="old"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-94" text="corrupt"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-95" text="genuine"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-96" text="favor"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select evil
click
5
null
stop
Select panicked <body ref="16"><div id="wrap" ref="14"><div id="area" ref="15"><div id="boxes" ref="6"><label ref="7"><input type="checkbox" id="ch0" ref="2" value="true"></input><t ref="-139" text="terrified"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-140" text="vermillion"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-141" text="old"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="17" value="false"></input><t ref="-142" text="corrupt"></t></label><label ref="11"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-143" text="genuine"></t></label><label ref="10"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-144" text="favor"></t></label></div><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select panicked
click
2
null
stop
Select words similar to delectable, amusing, depraved, bunny, mild <body ref="15"><div id="wrap" ref="5"><div id="area" ref="7"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-31" text="evil"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="delectable"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="11" value="false"></input><t ref="-33" text="rabbit"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="6" value="true"></input><t ref="-34" text="archaic"></t></label><label ref="3"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-35" text="funny"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="5" value="false"></input><t ref="-36" text="peaceful"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to delectable, amusing, depraved, bunny, mild
click
6
null
stop
Select words similar to delighted <body ref="12"><div id="wrap" ref="15"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="11"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-26" text="hide"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-27" text="happy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-28" text="dull"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-29" text="despise"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-30" text="chubby"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to delighted
click
2
null
stop
Select hide <body ref="12"><div id="wrap" ref="15"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="11"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-56" text="hide"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-57" text="happy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-58" text="dull"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="2" value="true"></input><t ref="-59" text="despise"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-60" text="chubby"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select hide
click
10
null
stop
Select words similar to funny <body ref="7"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="12"><label ref="10"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-26" text="unwise"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-27" text="keep"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-28" text="brave"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-29" text="miserable"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-30" text="laughable"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to funny
click
8
null
stop
Select words similar to unhappy <body ref="12"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="false"></input><t ref="-67" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-68" text="cars"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-69" text="panicked"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-70" text="immoral"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-71" text="cease"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-72" text="sad"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to unhappy
click
15
null
stop
Select corrupt <body ref="12"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="true"></input><t ref="-139" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-140" text="cars"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-141" text="panicked"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-142" text="immoral"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-143" text="cease"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-144" text="sad"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select corrupt
click
2
null
stop
Select old <body ref="12"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="true"></input><t ref="-175" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-176" text="cars"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-177" text="panicked"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-178" text="immoral"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-179" text="cease"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-180" text="sad"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select old
click
11
null
stop
Select vehicles <body ref="12"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="true"></input><t ref="-247" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-248" text="cars"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-249" text="panicked"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-250" text="immoral"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="true"></input><t ref="-251" text="cease"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-252" text="sad"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select vehicles
click
16
null
stop
Select stop <body ref="12"><div id="wrap" ref="6"><div id="area" ref="5"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="2" value="true"></input><t ref="-319" text="archaic"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-320" text="cars"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-321" text="panicked"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-322" text="immoral"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="true"></input><t ref="-323" text="cease"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-324" text="sad"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select stop
click
14
null
stop