{ // 获取包含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 afraid"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37101,"cells":{"history_episodes":{"kind":"string","value":" Select wrong
, "},"instruction":{"kind":"string","value":"Select wrong"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37102,"cells":{"history_episodes":{"kind":"string","value":" Select swine
, "},"instruction":{"kind":"string","value":"Select swine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37103,"cells":{"history_episodes":{"kind":"string","value":" Select petite
, "},"instruction":{"kind":"string","value":"Select petite"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37104,"cells":{"history_episodes":{"kind":"string","value":" Select murder
, "},"instruction":{"kind":"string","value":"Select murder"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37105,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37106,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to crimson
, "},"instruction":{"kind":"string","value":"Select words similar to crimson"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37107,"cells":{"history_episodes":{"kind":"string","value":" Select stupid
, "},"instruction":{"kind":"string","value":"Select stupid"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37108,"cells":{"history_episodes":{"kind":"string","value":" Select miserable
, "},"instruction":{"kind":"string","value":"Select miserable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37109,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to preserve
, "},"instruction":{"kind":"string","value":"Select words similar to preserve"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37110,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to serene
, "},"instruction":{"kind":"string","value":"Select words similar to serene"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37111,"cells":{"history_episodes":{"kind":"string","value":" Select retain
, "},"instruction":{"kind":"string","value":"Select retain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37112,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to cease
, "},"instruction":{"kind":"string","value":"Select words similar to cease"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37113,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37114,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to angry, serene, start, incorrect, conceal
, "},"instruction":{"kind":"string","value":"Select words similar to angry, serene, start, incorrect, conceal"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37115,"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":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37116,"cells":{"history_episodes":{"kind":"string","value":" Select initiate
, "},"instruction":{"kind":"string","value":"Select initiate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37117,"cells":{"history_episodes":{"kind":"string","value":" Select home
, "},"instruction":{"kind":"string","value":"Select home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37118,"cells":{"history_episodes":{"kind":"string","value":" Select happy
, "},"instruction":{"kind":"string","value":"Select happy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37119,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to crimson














, "},"instruction":{"kind":"string","value":"Select words similar to crimson"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37120,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to bunnies, peaceful, sustain
, "},"instruction":{"kind":"string","value":"Select words similar to bunnies, peaceful, sustain"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37121,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to angry
, "},"instruction":{"kind":"string","value":"Select words similar to angry"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37122,"cells":{"history_episodes":{"kind":"string","value":" Select adore
, "},"instruction":{"kind":"string","value":"Select adore"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37123,"cells":{"history_episodes":{"kind":"string","value":" Select unusual
, "},"instruction":{"kind":"string","value":"Select unusual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37124,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to answer, TVs
, "},"instruction":{"kind":"string","value":"Select words similar to answer, TVs"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37125,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to adore
, "},"instruction":{"kind":"string","value":"Select words similar to adore"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37126,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37127,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to bunny
, "},"instruction":{"kind":"string","value":"Select words similar to bunny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37128,"cells":{"history_episodes":{"kind":"string","value":" Select chop
, "},"instruction":{"kind":"string","value":"Select chop"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37129,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to petite
, "},"instruction":{"kind":"string","value":"Select words similar to petite"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37130,"cells":{"history_episodes":{"kind":"string","value":" Select erroneous
, "},"instruction":{"kind":"string","value":"Select erroneous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37131,"cells":{"history_episodes":{"kind":"string","value":" Select fearless
, "},"instruction":{"kind":"string","value":"Select fearless"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37132,"cells":{"history_episodes":{"kind":"string","value":" Select scarlet
, "},"instruction":{"kind":"string","value":"Select scarlet"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37133,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to reply
, "},"instruction":{"kind":"string","value":"Select words similar to reply"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37134,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to funny, flame, archaic
, "},"instruction":{"kind":"string","value":"Select words similar to funny, flame, archaic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37135,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to slice, like
, "},"instruction":{"kind":"string","value":"Select words similar to slice, like"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37136,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to incorrect
, "},"instruction":{"kind":"string","value":"Select words similar to incorrect"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37137,"cells":{"history_episodes":{"kind":"string","value":" Select home
, "},"instruction":{"kind":"string","value":"Select home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37138,"cells":{"history_episodes":{"kind":"string","value":" Select vehicles
, "},"instruction":{"kind":"string","value":"Select vehicles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37139,"cells":{"history_episodes":{"kind":"string","value":" Select launch
, "},"instruction":{"kind":"string","value":"Select launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37140,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to scared
, "},"instruction":{"kind":"string","value":"Select words similar to scared"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37141,"cells":{"history_episodes":{"kind":"string","value":" Select camouflage
, "},"instruction":{"kind":"string","value":"Select camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37142,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to camouflage
, "},"instruction":{"kind":"string","value":"Select words similar to camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37143,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37144,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to vermillion, assassinate, actual, home
, "},"instruction":{"kind":"string","value":"Select words similar to vermillion, assassinate, actual, home"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37145,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mistaken
, "},"instruction":{"kind":"string","value":"Select words similar to mistaken"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37146,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to home, big, assassinate, cease
, "},"instruction":{"kind":"string","value":"Select words similar to home, big, assassinate, cease"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37147,"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":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37148,"cells":{"history_episodes":{"kind":"string","value":" Select favor
, "},"instruction":{"kind":"string","value":"Select favor"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37149,"cells":{"history_episodes":{"kind":"string","value":" Select detest
, "},"instruction":{"kind":"string","value":"Select detest"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37150,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to scared
, "},"instruction":{"kind":"string","value":"Select words similar to scared"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37151,"cells":{"history_episodes":{"kind":"string","value":" Select laughable
, "},"instruction":{"kind":"string","value":"Select laughable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37152,"cells":{"history_episodes":{"kind":"string","value":" Select initiate
, "},"instruction":{"kind":"string","value":"Select initiate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37153,"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":37154,"cells":{"history_episodes":{"kind":"string","value":" Select genuine
, "},"instruction":{"kind":"string","value":"Select genuine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37155,"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":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37156,"cells":{"history_episodes":{"kind":"string","value":" Select wicked
, "},"instruction":{"kind":"string","value":"Select wicked"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37157,"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":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37158,"cells":{"history_episodes":{"kind":"string","value":" Select fires
, "},"instruction":{"kind":"string","value":"Select fires"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37159,"cells":{"history_episodes":{"kind":"string","value":" Select peculiar
, "},"instruction":{"kind":"string","value":"Select peculiar"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37160,"cells":{"history_episodes":{"kind":"string","value":" Select houses
, "},"instruction":{"kind":"string","value":"Select houses"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37161,"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":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37162,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to keep
, "},"instruction":{"kind":"string","value":"Select words similar to keep"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37163,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to terrified
, "},"instruction":{"kind":"string","value":"Select words similar to terrified"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37164,"cells":{"history_episodes":{"kind":"string","value":" Select conceal
, "},"instruction":{"kind":"string","value":"Select conceal"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37165,"cells":{"history_episodes":{"kind":"string","value":" Select reply
, "},"instruction":{"kind":"string","value":"Select reply"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37166,"cells":{"history_episodes":{"kind":"string","value":" Select aged
, "},"instruction":{"kind":"string","value":"Select aged"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37167,"cells":{"history_episodes":{"kind":"string","value":" Select crimson
, "},"instruction":{"kind":"string","value":"Select crimson"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37168,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to initiate
, "},"instruction":{"kind":"string","value":"Select words similar to initiate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37169,"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":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37170,"cells":{"history_episodes":{"kind":"string","value":" Select happy
, "},"instruction":{"kind":"string","value":"Select happy"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37171,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to incorrect
, "},"instruction":{"kind":"string","value":"Select words similar to incorrect"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37172,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to sorrowful
, "},"instruction":{"kind":"string","value":"Select words similar to sorrowful"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37173,"cells":{"history_episodes":{"kind":"string","value":" Select assassinate
, "},"instruction":{"kind":"string","value":"Select assassinate"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37174,"cells":{"history_episodes":{"kind":"string","value":" Select start
, "},"instruction":{"kind":"string","value":"Select start"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37175,"cells":{"history_episodes":{"kind":"string","value":" Select water
, "},"instruction":{"kind":"string","value":"Select water"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37176,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to tiny
, "},"instruction":{"kind":"string","value":"Select words similar to tiny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37177,"cells":{"history_episodes":{"kind":"string","value":" Select bunny
, "},"instruction":{"kind":"string","value":"Select bunny"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37178,"cells":{"history_episodes":{"kind":"string","value":" Select terrified
, "},"instruction":{"kind":"string","value":"Select terrified"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37179,"cells":{"history_episodes":{"kind":"string","value":" Select camouflage
, "},"instruction":{"kind":"string","value":"Select camouflage"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37180,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to launch
, "},"instruction":{"kind":"string","value":"Select words similar to launch"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37181,"cells":{"history_episodes":{"kind":"string","value":" Select automobiles
, "},"instruction":{"kind":"string","value":"Select automobiles"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37182,"cells":{"history_episodes":{"kind":"string","value":" Select cease
, "},"instruction":{"kind":"string","value":"Select cease"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37183,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37184,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to miserable
, "},"instruction":{"kind":"string","value":"Select words similar to miserable"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37185,"cells":{"history_episodes":{"kind":"string","value":" Select swine
, "},"instruction":{"kind":"string","value":"Select swine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37186,"cells":{"history_episodes":{"kind":"string","value":" Select mini
, "},"instruction":{"kind":"string","value":"Select mini"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37187,"cells":{"history_episodes":{"kind":"string","value":" Select courageous
, "},"instruction":{"kind":"string","value":"Select courageous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37188,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to mistaken, begin, houses
, "},"instruction":{"kind":"string","value":"Select words similar to mistaken, begin, houses"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37189,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to aged
, "},"instruction":{"kind":"string","value":"Select words similar to aged"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37190,"cells":{"history_episodes":{"kind":"string","value":" Select humorous
, "},"instruction":{"kind":"string","value":"Select humorous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37191,"cells":{"history_episodes":{"kind":"string","value":" Select gigantic
, "},"instruction":{"kind":"string","value":"Select gigantic"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37192,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to savory, old
, "},"instruction":{"kind":"string","value":"Select words similar to savory, old"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37193,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to genuine
, "},"instruction":{"kind":"string","value":"Select words similar to genuine"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37194,"cells":{"history_episodes":{"kind":"string","value":" Select dull
, "},"instruction":{"kind":"string","value":"Select dull"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37195,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to actual
, "},"instruction":{"kind":"string","value":"Select words similar to actual"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37196,"cells":{"history_episodes":{"kind":"string","value":" Select big
, "},"instruction":{"kind":"string","value":"Select big"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37197,"cells":{"history_episodes":{"kind":"string","value":" Select panicked
, "},"instruction":{"kind":"string","value":"Select panicked"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37198,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to courageous
, "},"instruction":{"kind":"string","value":"Select words similar to courageous"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":37199,"cells":{"history_episodes":{"kind":"string","value":" Select words similar to answer
, "},"instruction":{"kind":"string","value":"Select words similar to answer"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":371,"numItemsPerPage":100,"numTotalItems":40186,"offset":37100,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODMwNDcwOSwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MzA4MzA5LCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.Tm-MaRT0Lneh1Kt7LmjQ7VG-bVsacIo197h-OREe5_iecb5e2iieI0qdnp1HYMkxSVZBM6lbMrmM334PBmGGBA","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 afraid <body ref="8"><div id="wrap" ref="7"><div id="area" ref="1"><div id="boxes" ref="15"><label ref="16"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-31" text="little"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-32" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-33" text="swine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-34" text="incorrect"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-35" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-36" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to afraid
click
13
null
stop
Select wrong <body ref="8"><div id="wrap" ref="7"><div id="area" ref="1"><div id="boxes" ref="15"><label ref="16"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-67" text="little"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-68" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-69" text="swine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-70" text="incorrect"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-71" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-72" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select wrong
click
3
null
stop
Select swine <body ref="8"><div id="wrap" ref="7"><div id="area" ref="1"><div id="boxes" ref="15"><label ref="16"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-103" text="little"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-104" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-105" text="swine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-106" text="incorrect"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-107" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-108" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select swine
click
5
null
stop
Select petite <body ref="8"><div id="wrap" ref="7"><div id="area" ref="1"><div id="boxes" ref="15"><label ref="16"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-139" text="little"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-140" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-141" text="swine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-142" text="incorrect"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-143" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-144" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select petite
click
11
null
stop
Select murder <body ref="8"><div id="wrap" ref="7"><div id="area" ref="1"><div id="boxes" ref="15"><label ref="16"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-175" text="little"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-176" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-177" text="swine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-178" text="incorrect"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-179" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-180" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select murder
click
14
null
stop
click submit <body ref="8"><div id="wrap" ref="7"><div id="area" ref="1"><div id="boxes" ref="15"><label ref="16"><input type="checkbox" id="ch0" ref="11" value="true"></input><t ref="-211" text="little"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="14" value="true"></input><t ref="-212" text="assassinate"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-213" text="swine"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-214" text="incorrect"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="13" value="true"></input><t ref="-215" text="terrified"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-216" text="weird"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
click submit
click
14
null
stop
Select words similar to crimson <body ref="10"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="14"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-31" text="sad"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="bunny"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-33" text="brave"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-34" text="red"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-35" text="unwise"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-36" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to crimson
click
3
null
stop
Select stupid <body ref="10"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="14"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-67" text="sad"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-68" text="bunny"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-69" text="brave"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-70" text="red"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-71" text="unwise"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-72" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select stupid
click
12
null
stop
Select miserable <body ref="10"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="6"><label ref="14"><input type="checkbox" id="ch0" ref="5" value="true"></input><t ref="-103" text="sad"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-104" text="bunny"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-105" text="brave"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-106" text="red"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="12" value="true"></input><t ref="-107" text="unwise"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-108" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select miserable
click
5
null
stop
Select words similar to preserve <body ref="10"><div id="wrap" ref="1"><div id="area" ref="5"><div id="boxes" ref="8"><label ref="15"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-115" text="courageous"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-116" text="automobile"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="11" value="true"></input><t ref="-117" text="keep"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-118" text="mistaken"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-119" text="flames"></t></label><label ref="9"><input type="checkbox" id="ch5" ref="4" value="false"></input><t ref="-120" text="tvs"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to preserve
click
11
null
stop
Select words similar to serene <body ref="5"><div id="wrap" ref="8"><div id="area" ref="11"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-21" text="quiet"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-22" text="weird"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-23" text="maintain"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-24" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to serene
click
1
null
stop
Select retain <body ref="5"><div id="wrap" ref="8"><div id="area" ref="11"><div id="boxes" ref="7"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-45" text="quiet"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-46" text="weird"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-47" text="maintain"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-48" text="dumb"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select retain
click
12
null
stop
Select words similar to cease <body ref="7"><div id="wrap" ref="1"><div id="area" ref="3"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-16" text="brave"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-17" text="detest"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-18" text="end"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to cease
click
10
null
stop
click submit <body ref="7"><div id="wrap" ref="1"><div id="area" ref="3"><div id="boxes" ref="5"><label ref="9"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-34" text="brave"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-35" text="detest"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-36" text="end"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
click submit
click
4
null
stop
Select words similar to angry, serene, start, incorrect, conceal <body ref="4"><div id="wrap" ref="7"><div id="area" ref="8"><div id="boxes" ref="2"><label ref="15"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-31" text="irritated"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-32" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-33" text="wrong"></t></label><label ref="3"><input type="checkbox" id="ch3" ref="5" value="false"></input><t ref="-34" text="serene"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-35" text="launch"></t></label><label ref="4"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-36" text="pork"></t></label></div><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div></body>,
Select words similar to angry, serene, start, incorrect, conceal
click
1
null
stop
Select words similar to mad <body ref="9"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-31" text="homes"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-32" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-33" text="response"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-34" text="start"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-35" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-36" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to mad
click
8
null
stop
Select initiate <body ref="9"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-67" text="homes"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-68" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-69" text="response"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-70" text="start"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-71" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-72" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select initiate
click
4
null
stop
Select home <body ref="9"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-103" text="homes"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-104" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-105" text="response"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-106" text="start"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-107" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-108" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select home
click
3
null
stop
Select happy <body ref="9"><div id="wrap" ref="8"><div id="area" ref="6"><div id="boxes" ref="11"><label ref="2"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-139" text="homes"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="13" value="true"></input><t ref="-140" text="joyful"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-141" text="response"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="4" value="true"></input><t ref="-142" text="start"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="8" value="true"></input><t ref="-143" text="mad"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="11" value="false"></input><t ref="-144" text="big"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select happy
click
13
null
stop
Select words similar to crimson <body ref="18"><div id="wrap" ref="13"><div id="area" ref="1"><div id="boxes" ref="9"><label ref="15"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-79" text="vermillion"></t></label><br ref="17"></br><label ref="7"><input type="checkbox" id="ch1" ref="14" value="false"></input><t ref="-80" text="finish"></t></label><br ref="16"></br><label ref="8"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-81" text="humorous"></t></label><br ref="10"></br><label ref="12"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-82" text="corrupt"></t></label><br ref="20"></br><label ref="18"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-83" text="murder"></t></label><br ref="1"></br><label ref="9"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-84" text="dislike"></t></label><br ref="5"></br></div><br ref="19"></br><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to crimson
click
11
null
stop
Select words similar to bunnies, peaceful, sustain <body ref="8"><div id="wrap" ref="10"><div id="area" ref="5"><div id="boxes" ref="13"><label ref="9"><input type="checkbox" id="ch0" ref="6" value="false"></input><t ref="-26" text="begin"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="1" value="false"></input><t ref="-27" text="maintain"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-28" text="rabbit"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-29" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="10" value="true"></input><t ref="-30" text="quiet"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to bunnies, peaceful, sustain
click
10
null
stop
Select words similar to angry <body ref="7"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="3"><label ref="8"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-26" text="like"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-27" text="unusual"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-28" text="corrupt"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-29" text="bunny"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-30" text="irritated"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select words similar to angry
click
11
null
stop
Select adore <body ref="7"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="3"><label ref="8"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-56" text="like"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-57" text="unusual"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-58" text="corrupt"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-59" text="bunny"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-60" text="irritated"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select adore
click
5
null
stop
Select unusual <body ref="7"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="3"><label ref="8"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-96" text="like"></t></label><label ref="14"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-97" text="unusual"></t></label><label ref="13"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-98" text="corrupt"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-99" text="bunny"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-100" text="irritated"></t></label></div><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div></body>,
Select unusual
click
1
null
stop
Select words similar to answer, TVs <body ref="4"><div id="wrap" ref="8"><div id="area" ref="11"><div id="boxes" ref="3"><label ref="1"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-16" text="response"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-17" text="aged"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="7" value="true"></input><t ref="-18" text="tvs"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to answer, TVs
click
7
null
stop
Select words similar to adore <body ref="2"><div id="wrap" ref="12"><div id="area" ref="15"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-26" text="mistaken"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-27" text="start"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-28" text="frightened"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-29" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-30" text="adore"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to adore
click
3
null
stop
click submit <body ref="2"><div id="wrap" ref="12"><div id="area" ref="15"><div id="boxes" ref="11"><label ref="8"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-56" text="mistaken"></t></label><label ref="5"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-57" text="start"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="6" value="false"></input><t ref="-58" text="frightened"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-59" text="peculiar"></t></label><label ref="14"><input type="checkbox" id="ch4" ref="3" value="true"></input><t ref="-60" text="adore"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
click submit
click
9
null
stop
Select words similar to bunny <body ref="12"><div id="wrap" ref="14"><div id="area" ref="3"><div id="boxes" ref="8"><label ref="13"><input type="checkbox" id="ch0" ref="17" value="false"></input><t ref="-31" text="finish"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-32" text="slice"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-33" text="immoral"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-34" text="water"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-35" text="fearless"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-36" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to bunny
click
6
null
stop
Select chop <body ref="12"><div id="wrap" ref="14"><div id="area" ref="3"><div id="boxes" ref="8"><label ref="13"><input type="checkbox" id="ch0" ref="17" value="false"></input><t ref="-67" text="finish"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-68" text="slice"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-69" text="immoral"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-70" text="water"></t></label><label ref="16"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-71" text="fearless"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="6" value="true"></input><t ref="-72" text="bunny"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select chop
click
9
null
stop
Select words similar to petite <body ref="5"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="15"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-31" text="incorrect"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-32" text="scarlet"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-33" text="peaceful"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-34" text="sad"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="17" value="false"></input><t ref="-35" text="fearless"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-36" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select words similar to petite
click
3
null
stop
Select erroneous <body ref="5"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="15"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-67" text="incorrect"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-68" text="scarlet"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-69" text="peaceful"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-70" text="sad"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-71" text="fearless"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-72" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select erroneous
click
17
null
stop
Select fearless <body ref="5"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="15"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-103" text="incorrect"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-104" text="scarlet"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-105" text="peaceful"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-106" text="sad"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-107" text="fearless"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-108" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select fearless
click
11
null
stop
Select scarlet <body ref="5"><div id="wrap" ref="13"><div id="area" ref="8"><div id="boxes" ref="15"><label ref="10"><input type="checkbox" id="ch0" ref="12" value="true"></input><t ref="-139" text="incorrect"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="11" value="true"></input><t ref="-140" text="scarlet"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-141" text="peaceful"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-142" text="sad"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="17" value="true"></input><t ref="-143" text="fearless"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-144" text="petite"></t></label></div><button id="subbtn" classes="secondary-action" ref="16" text="submit"></button></div></div></body>,
Select scarlet
click
12
null
stop
Select words similar to reply <body ref="6"><div id="wrap" ref="13"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="1"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-53" text="fires"></t></label><label ref="12"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-54" text="assassinate"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-55" text="response"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-56" text="sinful"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to reply
click
10
null
stop
Select words similar to funny, flame, archaic <body ref="1"><div id="wrap" ref="6"><div id="area" ref="9"><div id="boxes" ref="2"><label ref="13"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-21" text="fires"></t></label><label ref="8"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-22" text="aged"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-23" text="small"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="3" value="true"></input><t ref="-24" text="humorous"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to funny, flame, archaic
click
3
null
stop
Select words similar to slice, like <body ref="6"><div id="wrap" ref="9"><div id="area" ref="10"><div id="boxes" ref="5"><label ref="1"><input type="checkbox" id="ch0" ref="11" value="false"></input><t ref="-16" text="water"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-17" text="adore"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-18" text="carve"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to slice, like
click
3
null
stop
Select words similar to incorrect <body ref="14"><div id="wrap" ref="11"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="7"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-31" text="vehicle"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="12" value="false"></input><t ref="-32" text="mistaken"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-33" text="happy"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-34" text="house"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="loathe"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-36" text="begin"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to incorrect
click
10
null
stop
Select home <body ref="14"><div id="wrap" ref="11"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="7"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-67" text="vehicle"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-68" text="mistaken"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-69" text="happy"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-70" text="house"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-71" text="loathe"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-72" text="begin"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select home
click
12
null
stop
Select vehicles <body ref="14"><div id="wrap" ref="11"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="7"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-103" text="vehicle"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-104" text="mistaken"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-105" text="happy"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-106" text="house"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-107" text="loathe"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-108" text="begin"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select vehicles
click
9
null
stop
Select launch <body ref="14"><div id="wrap" ref="11"><div id="area" ref="8"><div id="boxes" ref="4"><label ref="7"><input type="checkbox" id="ch0" ref="10" value="true"></input><t ref="-139" text="vehicle"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-140" text="mistaken"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="17" value="false"></input><t ref="-141" text="happy"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-142" text="house"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-143" text="loathe"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="3" value="true"></input><t ref="-144" text="begin"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select launch
click
3
null
stop
Select words similar to scared <body ref="4"><div id="wrap" ref="5"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-29" text="bunny"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-30" text="retain"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-31" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="1" value="false"></input><t ref="-32" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select words similar to scared
click
2
null
stop
Select camouflage <body ref="4"><div id="wrap" ref="5"><div id="area" ref="7"><div id="boxes" ref="12"><label ref="8"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-85" text="bunny"></t></label><label ref="9"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-86" text="retain"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="true"></input><t ref="-87" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch3" ref="1" value="true"></input><t ref="-88" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div></body>,
Select camouflage
click
1
null
stop
Select words similar to camouflage <body ref="15"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="7"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-26" text="funny"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-27" text="conceal"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-28" text="delicious"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-29" text="assassinate"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-30" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to camouflage
click
12
null
stop
click submit <body ref="15"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="5"><label ref="7"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-56" text="funny"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="12" value="true"></input><t ref="-57" text="conceal"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-58" text="delicious"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-59" text="assassinate"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="3" value="false"></input><t ref="-60" text="happy"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>
click submit
click
2
null
stop
Select words similar to vermillion, assassinate, actual, home <body ref="12"><div id="wrap" ref="15"><div id="area" ref="6"><div id="boxes" ref="11"><label ref="9"><input type="checkbox" id="ch0" ref="4" value="false"></input><t ref="-31" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="13" value="false"></input><t ref="-32" text="cut"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-33" text="frightened"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-34" text="homes"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="16" value="false"></input><t ref="-35" text="vermillion"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="7" value="false"></input><t ref="-36" text="murder"></t></label></div><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div></body>,
Select words similar to vermillion, assassinate, actual, home
click
5
null
stop
Select words similar to mistaken <body ref="9"><div id="wrap" ref="3"><div id="area" ref="1"><div id="boxes" ref="4"><label ref="11"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-31" text="large"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-32" text="conceal"></t></label><label ref="5"><input type="checkbox" id="ch2" ref="8" value="false"></input><t ref="-33" text="dislike"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-34" text="preserve"></t></label><label ref="1"><input type="checkbox" id="ch4" ref="4" value="true"></input><t ref="-35" text="wrong"></t></label><label ref="7"><input type="checkbox" id="ch5" ref="6" value="false"></input><t ref="-36" text="adore"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to mistaken
click
4
null
stop
Select words similar to home, big, assassinate, cease <body ref="3"><div id="wrap" ref="13"><div id="area" ref="11"><div id="boxes" ref="15"><label ref="9"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-96" text="murder"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-97" text="halt"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="2" value="false"></input><t ref="-98" text="mad"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="5" value="true"></input><t ref="-99" text="gigantic"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="14" value="false"></input><t ref="-100" text="homes"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to home, big, assassinate, cease
click
5
null
stop
Select words similar to little <body ref="10"><div id="wrap" ref="6"><div id="area" ref="2"><div id="boxes" ref="5"><label ref="7"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-36" text="house"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="9" value="false"></input><t ref="-37" text="gleeful"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-38" text="petite"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-39" text="detest"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-40" text="like"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to little
click
1
null
stop
Select favor <body ref="10"><div id="wrap" ref="6"><div id="area" ref="2"><div id="boxes" ref="5"><label ref="7"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-76" text="house"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-77" text="gleeful"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-78" text="petite"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="false"></input><t ref="-79" text="detest"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-80" text="like"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select favor
click
9
null
stop
Select detest <body ref="10"><div id="wrap" ref="6"><div id="area" ref="2"><div id="boxes" ref="5"><label ref="7"><input type="checkbox" id="ch0" ref="12" value="false"></input><t ref="-116" text="house"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="9" value="true"></input><t ref="-117" text="gleeful"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-118" text="petite"></t></label><label ref="14"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-119" text="detest"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="11" value="false"></input><t ref="-120" text="like"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select detest
click
8
null
stop
Select words similar to scared <body ref="2"><div id="wrap" ref="14"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-31" text="courageous"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-32" text="genuine"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-33" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-34" text="comical"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-35" text="begin"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-36" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to scared
click
3
null
stop
Select laughable <body ref="2"><div id="wrap" ref="14"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-67" text="courageous"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-68" text="genuine"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-69" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-70" text="comical"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-71" text="begin"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-72" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select laughable
click
13
null
stop
Select initiate <body ref="2"><div id="wrap" ref="14"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-103" text="courageous"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-104" text="genuine"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-105" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-106" text="comical"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-107" text="begin"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-108" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select initiate
click
1
null
stop
Select brave <body ref="2"><div id="wrap" ref="14"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-139" text="courageous"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-140" text="genuine"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-141" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-142" text="comical"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-143" text="begin"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-144" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select brave
click
14
null
stop
Select genuine <body ref="2"><div id="wrap" ref="14"><div id="area" ref="11"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-175" text="courageous"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-176" text="genuine"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-177" text="pig"></t></label><label ref="9"><input type="checkbox" id="ch3" ref="12" value="true"></input><t ref="-178" text="comical"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="7" value="false"></input><t ref="-179" text="begin"></t></label><label ref="2"><input type="checkbox" id="ch5" ref="14" value="true"></input><t ref="-180" text="afraid"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select genuine
click
12
null
stop
Select words similar to unhappy <body ref="4"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="3"><label ref="7"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-43" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-44" text="car"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-45" text="erroneous"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="9" value="false"></input><t ref="-46" text="tragic"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-47" text="humorous"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-48" text="depraved"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select words similar to unhappy
click
6
null
stop
Select wicked <body ref="4"><div id="wrap" ref="12"><div id="area" ref="8"><div id="boxes" ref="3"><label ref="7"><input type="checkbox" id="ch0" ref="10" value="false"></input><t ref="-91" text="conceal"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="11" value="false"></input><t ref="-92" text="car"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="6" value="true"></input><t ref="-93" text="erroneous"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="9" value="true"></input><t ref="-94" text="tragic"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-95" text="humorous"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="3" value="false"></input><t ref="-96" text="depraved"></t></label></div><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select wicked
click
9
null
stop
Select words similar to irritated <body ref="13"><div id="wrap" ref="12"><div id="area" ref="17"><div id="boxes" ref="15"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-31" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-32" text="sinful"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-33" text="delighted"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-34" text="homes"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-35" text="peculiar"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-36" text="fires"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to irritated
click
3
null
stop
Select fires <body ref="13"><div id="wrap" ref="12"><div id="area" ref="17"><div id="boxes" ref="15"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-67" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-68" text="sinful"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-69" text="delighted"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-70" text="homes"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-71" text="peculiar"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-72" text="fires"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select fires
click
5
null
stop
Select peculiar <body ref="13"><div id="wrap" ref="12"><div id="area" ref="17"><div id="boxes" ref="15"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-103" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-104" text="sinful"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-105" text="delighted"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-106" text="homes"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-107" text="peculiar"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-108" text="fires"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select peculiar
click
14
null
stop
Select houses <body ref="13"><div id="wrap" ref="12"><div id="area" ref="17"><div id="boxes" ref="15"><label ref="11"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-139" text="furious"></t></label><label ref="10"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-140" text="sinful"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-141" text="delighted"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-142" text="homes"></t></label><label ref="7"><input type="checkbox" id="ch4" ref="6" value="true"></input><t ref="-143" text="peculiar"></t></label><label ref="16"><input type="checkbox" id="ch5" ref="2" value="false"></input><t ref="-144" text="fires"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select houses
click
6
null
stop
Select words similar to stupid <body ref="14"><div id="wrap" ref="8"><div id="area" ref="4"><div id="boxes" ref="12"><label ref="13"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-26" text="stupid"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="15" value="false"></input><t ref="-27" text="fleshy"></t></label><label ref="6"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-28" text="end"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-29" text="fires"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="5" value="false"></input><t ref="-30" text="tv"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to stupid
click
1
null
stop
Select words similar to keep <body ref="12"><div id="wrap" ref="2"><div id="area" ref="11"><div id="boxes" ref="9"><label ref="13"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-21" text="sustain"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-22" text="angry"></t></label><label ref="10"><input type="checkbox" id="ch2" ref="1" value="false"></input><t ref="-23" text="afraid"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="3" value="false"></input><t ref="-24" text="genuine"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to keep
click
8
null
stop
Select words similar to terrified <body ref="6"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-43" text="reply"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-44" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-45" text="conceal"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-46" text="crimson"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-47" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="10" value="true"></input><t ref="-48" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to terrified
click
10
null
stop
Select conceal <body ref="6"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="false"></input><t ref="-91" text="reply"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-92" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-93" text="conceal"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-94" text="crimson"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-95" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="10" value="true"></input><t ref="-96" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select conceal
click
4
null
stop
Select reply <body ref="6"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-139" text="reply"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-140" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-141" text="conceal"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-142" text="crimson"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="2" value="false"></input><t ref="-143" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="10" value="true"></input><t ref="-144" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select reply
click
13
null
stop
Select aged <body ref="6"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-187" text="reply"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-188" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-189" text="conceal"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-190" text="crimson"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-191" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="10" value="true"></input><t ref="-192" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select aged
click
2
null
stop
Select crimson <body ref="6"><div id="wrap" ref="1"><div id="area" ref="9"><div id="boxes" ref="11"><label ref="12"><input type="checkbox" id="ch0" ref="13" value="true"></input><t ref="-235" text="reply"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="16" value="false"></input><t ref="-236" text="homes"></t></label><label ref="3"><input type="checkbox" id="ch2" ref="4" value="true"></input><t ref="-237" text="conceal"></t></label><label ref="17"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-238" text="crimson"></t></label><label ref="5"><input type="checkbox" id="ch4" ref="2" value="true"></input><t ref="-239" text="archaic"></t></label><label ref="8"><input type="checkbox" id="ch5" ref="10" value="true"></input><t ref="-240" text="fearful"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select crimson
click
14
null
stop
Select words similar to initiate <body ref="1"><div id="wrap" ref="2"><div id="area" ref="7"><div id="boxes" ref="8"><label ref="6"><input type="checkbox" id="ch0" ref="9" value="false"></input><t ref="-29" text="actual"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="4" value="true"></input><t ref="-30" text="launch"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-31" text="irritated"></t></label><label ref="12"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-32" text="pig"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to initiate
click
4
null
stop
Select words similar to unhappy <body ref="2"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-22" text="gleeful"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-23" text="sorrowful"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-24" text="fires"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select words similar to unhappy
click
8
null
stop
Select happy <body ref="2"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="9"><label ref="11"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-46" text="gleeful"></t></label><label ref="7"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-47" text="sorrowful"></t></label><label ref="4"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-48" text="fires"></t></label></div><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select happy
click
5
null
stop
Select words similar to incorrect <body ref="6"><div id="wrap" ref="2"><div id="area" ref="12"><div id="boxes" ref="7"><label ref="13"><input type="checkbox" id="ch0" ref="8" value="false"></input><t ref="-29" text="genuine"></t></label><label ref="4"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-30" text="cease"></t></label><label ref="9"><input type="checkbox" id="ch2" ref="10" value="false"></input><t ref="-31" text="appetizing"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="11" value="true"></input><t ref="-32" text="erroneous"></t></label></div><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select words similar to incorrect
click
11
null
stop
Select words similar to sorrowful <body ref="9"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="14"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-31" text="water"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-32" text="assassinate"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-33" text="mad"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-34" text="unhappy"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-35" text="launch"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-36" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select words similar to sorrowful
click
8
null
stop
Select assassinate <body ref="9"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="14"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-67" text="water"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-68" text="assassinate"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-69" text="mad"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-70" text="unhappy"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="6" value="false"></input><t ref="-71" text="launch"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-72" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select assassinate
click
5
null
stop
Select start <body ref="9"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="14"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-103" text="water"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-104" text="assassinate"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-105" text="mad"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-106" text="unhappy"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="6" value="true"></input><t ref="-107" text="launch"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-108" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select start
click
6
null
stop
Select water <body ref="9"><div id="wrap" ref="10"><div id="area" ref="17"><div id="boxes" ref="14"><label ref="7"><input type="checkbox" id="ch0" ref="3" value="true"></input><t ref="-139" text="water"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="true"></input><t ref="-140" text="assassinate"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-141" text="mad"></t></label><label ref="16"><input type="checkbox" id="ch3" ref="8" value="true"></input><t ref="-142" text="unhappy"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="6" value="true"></input><t ref="-143" text="launch"></t></label><label ref="11"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-144" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="15" text="submit"></button></div></div></body>,
Select water
click
3
null
stop
Select words similar to tiny <body ref="17"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="11"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-43" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-44" text="camouflage"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="12" value="false"></input><t ref="-45" text="rabbit"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-46" text="afraid"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-47" text="tiny"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="8" value="false"></input><t ref="-48" text="sustain"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to tiny
click
9
null
stop
Select bunny <body ref="17"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="11"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-91" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-92" text="camouflage"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-93" text="rabbit"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-94" text="afraid"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="9" value="true"></input><t ref="-95" text="tiny"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="8" value="false"></input><t ref="-96" text="sustain"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select bunny
click
12
null
stop
Select terrified <body ref="17"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="11"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-127" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-128" text="camouflage"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-129" text="rabbit"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-130" text="afraid"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-131" text="tiny"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="8" value="false"></input><t ref="-132" text="sustain"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select terrified
click
9
null
stop
Select camouflage <body ref="17"><div id="wrap" ref="14"><div id="area" ref="16"><div id="boxes" ref="11"><label ref="5"><input type="checkbox" id="ch0" ref="3" value="false"></input><t ref="-175" text="aged"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-176" text="camouflage"></t></label><label ref="1"><input type="checkbox" id="ch2" ref="12" value="true"></input><t ref="-177" text="rabbit"></t></label><label ref="6"><input type="checkbox" id="ch3" ref="7" value="false"></input><t ref="-178" text="afraid"></t></label><label ref="4"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-179" text="tiny"></t></label><label ref="15"><input type="checkbox" id="ch5" ref="8" value="true"></input><t ref="-180" text="sustain"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select camouflage
click
8
null
stop
Select words similar to launch <body ref="7"><div id="wrap" ref="9"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-31" text="weird"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-32" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-33" text="launch"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-34" text="incorrect"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-35" text="halt"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="17" value="false"></input><t ref="-36" text="cars"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to launch
click
1
null
stop
Select automobiles <body ref="7"><div id="wrap" ref="9"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-67" text="weird"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-68" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-69" text="launch"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-70" text="incorrect"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="15" value="false"></input><t ref="-71" text="halt"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-72" text="cars"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select automobiles
click
17
null
stop
Select cease <body ref="7"><div id="wrap" ref="9"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-103" text="weird"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-104" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-105" text="launch"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-106" text="incorrect"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-107" text="halt"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-108" text="cars"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select cease
click
15
null
stop
click submit <body ref="7"><div id="wrap" ref="9"><div id="area" ref="3"><div id="boxes" ref="10"><label ref="6"><input type="checkbox" id="ch0" ref="14" value="false"></input><t ref="-139" text="weird"></t></label><label ref="2"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-140" text="brave"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="1" value="true"></input><t ref="-141" text="launch"></t></label><label ref="4"><input type="checkbox" id="ch3" ref="11" value="false"></input><t ref="-142" text="incorrect"></t></label><label ref="13"><input type="checkbox" id="ch4" ref="15" value="true"></input><t ref="-143" text="halt"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-144" text="cars"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
click submit
click
15
null
stop
Select words similar to miserable <body ref="11"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-26" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="false"></input><t ref="-27" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-28" text="courageous"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-29" text="small"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-30" text="comical"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to miserable
click
1
null
stop
Select swine <body ref="11"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-56" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-57" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-58" text="courageous"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-59" text="small"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-60" text="comical"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select swine
click
8
null
stop
Select mini <body ref="11"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-156" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-157" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="5" value="false"></input><t ref="-158" text="courageous"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-159" text="small"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-160" text="comical"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select mini
click
8
null
stop
Select courageous <body ref="11"><div id="wrap" ref="4"><div id="area" ref="15"><div id="boxes" ref="9"><label ref="7"><input type="checkbox" id="ch0" ref="1" value="true"></input><t ref="-186" text="pork"></t></label><label ref="3"><input type="checkbox" id="ch1" ref="8" value="true"></input><t ref="-187" text="unhappy"></t></label><label ref="14"><input type="checkbox" id="ch2" ref="5" value="true"></input><t ref="-188" text="courageous"></t></label><label ref="2"><input type="checkbox" id="ch3" ref="6" value="false"></input><t ref="-189" text="small"></t></label><label ref="10"><input type="checkbox" id="ch4" ref="12" value="false"></input><t ref="-190" text="comical"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select courageous
click
5
null
stop
Select words similar to mistaken, begin, houses <body ref="1"><div id="wrap" ref="12"><div id="area" ref="6"><div id="boxes" ref="3"><label ref="2"><input type="checkbox" id="ch0" ref="5" value="false"></input><t ref="-43" text="fat"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="10" value="false"></input><t ref="-44" text="house"></t></label><label ref="16"><input type="checkbox" id="ch2" ref="4" value="false"></input><t ref="-45" text="erroneous"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="14" value="false"></input><t ref="-46" text="begin"></t></label><label ref="15"><input type="checkbox" id="ch4" ref="9" value="false"></input><t ref="-47" text="car"></t></label><label ref="13"><input type="checkbox" id="ch5" ref="17" value="true"></input><t ref="-48" text="savory"></t></label></div><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div></body>,
Select words similar to mistaken, begin, houses
click
17
null
stop
Select words similar to aged <body ref="11"><div id="wrap" ref="5"><div id="area" ref="16"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-31" text="terrified"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-32" text="enormous"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-33" text="amusing"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-34" text="old"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-35" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-36" text="detest"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select words similar to aged
click
14
null
stop
Select humorous <body ref="11"><div id="wrap" ref="5"><div id="area" ref="16"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-67" text="terrified"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-68" text="enormous"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="15" value="false"></input><t ref="-69" text="amusing"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-70" text="old"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-71" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-72" text="detest"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select humorous
click
3
null
stop
Select gigantic <body ref="11"><div id="wrap" ref="5"><div id="area" ref="16"><div id="boxes" ref="2"><label ref="10"><input type="checkbox" id="ch0" ref="1" value="false"></input><t ref="-103" text="terrified"></t></label><label ref="17"><input type="checkbox" id="ch1" ref="3" value="true"></input><t ref="-104" text="enormous"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="15" value="true"></input><t ref="-105" text="amusing"></t></label><label ref="7"><input type="checkbox" id="ch3" ref="14" value="true"></input><t ref="-106" text="old"></t></label><label ref="9"><input type="checkbox" id="ch4" ref="13" value="false"></input><t ref="-107" text="scarlet"></t></label><label ref="6"><input type="checkbox" id="ch5" ref="12" value="false"></input><t ref="-108" text="detest"></t></label></div><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div></body>,
Select gigantic
click
15
null
stop
Select words similar to savory, old <body ref="6"><div id="wrap" ref="3"><div id="area" ref="2"><div id="boxes" ref="13"><label ref="11"><input type="checkbox" id="ch0" ref="7" value="false"></input><t ref="-29" text="actual"></t></label><label ref="1"><input type="checkbox" id="ch1" ref="5" value="false"></input><t ref="-30" text="unwise"></t></label><label ref="12"><input type="checkbox" id="ch2" ref="10" value="true"></input><t ref="-31" text="aged"></t></label><label ref="8"><input type="checkbox" id="ch3" ref="4" value="false"></input><t ref="-32" text="delicious"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to savory, old
click
10
null
stop
Select words similar to genuine <body ref="3"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="6"><label ref="12"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-26" text="actual"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-27" text="immoral"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-28" text="rabbits"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-29" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-30" text="carve"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select words similar to genuine
click
7
null
stop
Select dull <body ref="3"><div id="wrap" ref="9"><div id="area" ref="5"><div id="boxes" ref="6"><label ref="12"><input type="checkbox" id="ch0" ref="7" value="true"></input><t ref="-56" text="actual"></t></label><label ref="11"><input type="checkbox" id="ch1" ref="2" value="true"></input><t ref="-57" text="immoral"></t></label><label ref="15"><input type="checkbox" id="ch2" ref="14" value="false"></input><t ref="-58" text="rabbits"></t></label><label ref="1"><input type="checkbox" id="ch3" ref="10" value="false"></input><t ref="-59" text="dumb"></t></label><label ref="8"><input type="checkbox" id="ch4" ref="4" value="false"></input><t ref="-60" text="carve"></t></label></div><button id="subbtn" classes="secondary-action" ref="13" text="submit"></button></div></div></body>,
Select dull
click
2
null
stop
Select words similar to actual <body ref="2"><div id="wrap" ref="5"><div id="area" ref="16"><div id="boxes" ref="13"><label ref="9"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-43" text="actual"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-44" text="angry"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-45" text="fearful"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="15" value="false"></input><t ref="-46" text="large"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-47" text="stupid"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-48" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select words similar to actual
click
4
null
stop
Select big <body ref="2"><div id="wrap" ref="5"><div id="area" ref="16"><div id="boxes" ref="13"><label ref="9"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-91" text="actual"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-92" text="angry"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="false"></input><t ref="-93" text="fearful"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-94" text="large"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-95" text="stupid"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-96" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select big
click
15
null
stop
Select panicked <body ref="2"><div id="wrap" ref="5"><div id="area" ref="16"><div id="boxes" ref="13"><label ref="9"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-139" text="actual"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="7" value="false"></input><t ref="-140" text="angry"></t></label><label ref="11"><input type="checkbox" id="ch2" ref="3" value="true"></input><t ref="-141" text="fearful"></t></label><label ref="10"><input type="checkbox" id="ch3" ref="15" value="true"></input><t ref="-142" text="large"></t></label><label ref="17"><input type="checkbox" id="ch4" ref="1" value="false"></input><t ref="-143" text="stupid"></t></label><label ref="12"><input type="checkbox" id="ch5" ref="14" value="false"></input><t ref="-144" text="courageous"></t></label></div><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div></body>,
Select panicked
click
3
null
stop
Select words similar to courageous <body ref="3"><div id="wrap" ref="11"><div id="area" ref="5"><div id="boxes" ref="1"><label ref="10"><input type="checkbox" id="ch0" ref="4" value="true"></input><t ref="-82" text="fearless"></t></label><label ref="6"><input type="checkbox" id="ch1" ref="2" value="false"></input><t ref="-83" text="hate"></t></label><label ref="8"><input type="checkbox" id="ch2" ref="7" value="false"></input><t ref="-84" text="terrified"></t></label></div><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div></body>,
Select words similar to courageous
click
4
null
stop
Select words similar to answer <body ref="7"><div id="wrap" ref="6"><div id="area" ref="1"><div id="boxes" ref="11"><label ref="4"><input type="checkbox" id="ch0" ref="8" value="true"></input><t ref="-21" text="answer"></t></label><label ref="13"><input type="checkbox" id="ch1" ref="3" value="false"></input><t ref="-22" text="conceal"></t></label><label ref="2"><input type="checkbox" id="ch2" ref="9" value="false"></input><t ref="-23" text="red"></t></label><label ref="5"><input type="checkbox" id="ch3" ref="12" value="false"></input><t ref="-24" text="plump"></t></label></div><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div></body>,
Select words similar to answer
click
8
null
stop