{ // 获取包含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 !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转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 !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; 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, 'OCR模型免费转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 }); }); } })(); \n\nShowFixedHeader.aspx.vb\n\nImports System Imports System.Data Imports System.Data.Oledb Public Class ShowFixedHeader Inherits System.Web.UI.Page Protected WithEvents Table1 As System.Web.UI.HtmlControls.HtmlTable Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid Protected WithEvents Form1 As System.Web.UI.HtmlControls.HtmlForm Protected WithEvents lucky_elove As HtmlControls.HtmlGenericControl #Region \" Web Form Designer Generated Code \" 'This call is required by the Web Form Designer. buggerStepThrough()> Private Sub InitializeComponent() End Sub Private Sub Page_Init(ByVal sender As System.object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load lucky_elove.InnerText = \"【孟宪会之精彩世界】 - 跨栏表头的实现\" Table1.Rows(0).Cells(0).InnerText = \"【孟宪会之精彩世界】.NET版本之最新文章\" Table1.Rows(0).Cells(1).InnerText = \"文章信息\" Table1.Rows(1).Cells(0).InnerText = \"文章标题\" Table1.Rows(1).Cells(1).InnerText = \"发布时间\" Table1.Rows(1).Cells(2).InnerText = \"所属栏目\" Table1.Rows(1).Cells(3).InnerText = \"点击率\" Table1.Rows(0).Style.Add(\"color\", \"white\") Table1.Rows(0).Style.Add(\"font-weight\", \"bold\") Table1.Rows(0).Cells(0).Attributes.Add(\"onclick\",_ \"window.open('http://lucky_elove.www1.dotnetplayground.com/')\") Table1.Rows(0).Cells(0).Style.Add(\"cursor\", \"hand\") Try Dim cnString As String = \"Provider=Microsoft.Jet.OLEDB.4.0;Data source=\"_ + Server.MapPath(\"Test.mdb\") Dim cn As New OleDbConnection(cnString) cn.Open() Dim strsql As String = \"select TOP 30 D.Title,D.CreateDate,S.Title as pid,D.HitCount \"_ + \"FROM Document D INNER JOIN Subject S ON D.pid = S.id ORDER BY CreateDate DESC\" Dim cmd As New OleDbCommand(strSQL, cn) DataGrid1.DataSource = cmd.ExecuteReader DataGrid1.DataBind() cn.Close() cn = Nothing Catch eOle As OleDbException Response.Write(\"产生错误:\" + eOle.Message) End Try End Sub Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemDataBound If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then If e.Item.Cells(0).Text.Length > 26 Then e.Item.Cells(0).Attributes.Add(\"Title\", e.Item.Cells(0).Text) e.Item.Cells(0).Text = e.Item.Cells(0).Text.Substring(0, 26) + \"…\" End If e.Item.Cells(1).Text = Format(System.Convert.ToDateTime(e.Item.Cells(1).Text),_ \"yyyy年M月d日 h点m分s秒\") End If End Sub End Class\n\n来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10748419/viewspace-991314/,如需转载,请注明出处,否则将追究法律责任。\n\n请登录后发表评论 登录\n全部评论\n • 博文量\n 3122\n • 访问量\n 2226441"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://blog.itpub.net/10748419/viewspace-991314/\",\n \"source_domain\": \"blog.itpub.net\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"28299\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:GPVIRSYNG7XBQLWOLARTNEJHXW3SJE6T\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-23T15:23:02Z\",\n \"WARC-IP-Address\": \"122.226.187.18\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:IOL6MCTHLUODVMFDTQOHVRCMWJZELNLJ\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://blog.itpub.net/10748419/viewspace-991314/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-144.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 8,\n 9,\n 56,\n 57,\n 83,\n 84,\n 136,\n 170,\n 171,\n 193,\n 194,\n 222,\n 223,\n 277,\n 278,\n 303,\n 304,\n 325,\n 326,\n 1752,\n 1753,\n 1777,\n 1778,\n 4546,\n 4547,\n 4637,\n 4638,\n 4650,\n 4655,\n 4663,\n 4672,\n 4680\n ],\n \"line_end_idx\": [\n 8,\n 9,\n 56,\n 57,\n 83,\n 84,\n 136,\n 170,\n 171,\n 193,\n 194,\n 222,\n 223,\n 277,\n 278,\n 303,\n 304,\n 325,\n 326,\n 1752,\n 1753,\n 1777,\n 1778,\n 4546,\n 4547,\n 4637,\n 4638,\n 4650,\n 4655,\n 4663,\n 4672,\n 4680,\n 4691\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 4691,\n \"ccnet_original_nlines\": 32,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.05401235073804855,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.029320990666747093,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.540123462677002,\n \"rps_doc_frac_unique_words\": 0.6591549515724182,\n \"rps_doc_mean_word_length\": 9.83661937713623,\n \"rps_doc_num_sentences\": 156,\n \"rps_doc_symbol_to_word_ratio\": 0.0038580200634896755,\n \"rps_doc_unigram_entropy\": 5.201303482055664,\n \"rps_doc_word_count\": 355,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.036655209958553314,\n \"rps_doc_frac_chars_dupe_6grams\": 0.019473079591989517,\n \"rps_doc_frac_chars_dupe_7grams\": 0.019473079591989517,\n \"rps_doc_frac_chars_dupe_8grams\": 0.019473079591989517,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.021764030680060387,\n \"rps_doc_frac_chars_top_3gram\": 0.012886599637567997,\n \"rps_doc_frac_chars_top_4gram\": 0.009163799695670605,\n \"rps_doc_books_importance\": -468.4802551269531,\n \"rps_doc_books_importance_length_correction\": -468.4802551269531,\n \"rps_doc_openwebtext_importance\": -284.9725341796875,\n \"rps_doc_openwebtext_importance_length_correction\": -284.9725341796875,\n \"rps_doc_wikipedia_importance\": -149.63748168945312,\n \"rps_doc_wikipedia_importance_length_correction\": -149.63748168945312\n },\n \"fasttext\": {\n \"dclm\": 0.21524137258529663,\n \"english\": 0.1617426574230194,\n \"fineweb_edu_approx\": 3.261878252029419,\n \"eai_general_math\": 0.06250137090682983,\n \"eai_open_web_math\": 0.1663912534713745,\n \"eai_web_code\": 0.5348383188247681\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"005.133\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n },\n \"secondary\": {\n \"code\": \"005.1\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Code/Software\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Leftover HTML\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Graduate/Expert Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":160,"cells":{"id":{"kind":"number","value":-5445239267931309000,"string":"-5,445,239,267,931,309,000"},"text":{"kind":"string","value":"How To Install Duct Work How To Clean Your Own Air Ducts Vacuum Hose Inserted Into A Floor Register Demonstrating\n\nhow to install duct work how to clean your own air ducts vacuum hose inserted into a floor register demonstrating\n\nhow to install duct work how to clean your own air ducts vacuum hose inserted into a floor register demonstrating .\n\ninstalling central air without ductwork preferred mechanical services installing central air in a home without ductwork, how to replace ductwork and install a return vent howtos diy seal new flex duct to new box with ties, how to insulate ductwork youtube how to insulate ductwork, hvac install an airsupply line and a cold air return howtos diy step , round ductwork installation tips the family handyman fhjauducpip ductwork, neptronic avoid modifyingaltering duct work to install heaters knowing in advance the type of installation required can save you time money and frustration, ductwork in basement , finished basement edition , rules for flexible ducts that remodelers need to know pro remodeler all ducts whether rigid or flexible should be sealed with ulrated duct mastic duct tape has many uses but sealing ducts isnt one of them, installation images and photo gallery for kirkwood heating air slab ductwork installation, rules for flexible ducts that remodelers need to know pro remodeler rules for remodelers when installing flexbile ductwork.\n\nhow to install duct work is it time to replace or repair your duct work are you losing heat through leaking ducts contact our duct work experts to evaluate repair or replace your peoria civic center hvac ductwork fabrication and installation peoria civic center hvac ductwork fabrication and installation project jcc inc .\nhow to install duct work bath fan installation venting installing ceiling drops for a dropped or suspended ceiling youtube installing ceiling drops for a dropped or suspended ceiling .\nhow to install duct work installing a drop ceiling to hide duct work installation of the ductwork ies how to install air inlets into the installation of the ductwork ies how to install air inlets into the download scientific diagram .\nhow to install duct work air diffusion council flex duct installation standards 2 friction rate compression dont kill your air flow with this flex duct disease .\nhow to install duct work name floorplan 3jpg views 2197 size 160 kb minimizing energy losses in ducts department of energy designing and installing new duct systems .\nhow to install duct work installing a drop ceiling to hide duct work youtube installing a drop ceiling to hide duct work .\nhow to install duct work peoria civic center hvac ductwork fabrication and installation project how to install bath kitchen fans bath fan installation venting .\nhow to install duct work how to clean your own air ducts vacuum hose inserted into a floor register demonstrating .\nhow to install duct work ductwork install how to install a round start collar in ductwork youtube how to install a round start collar in ductwork .\nhow to install duct work ductwork clearance how to replace ductwork and install a return vent howtos diy seal new flex duct to new box with ties .\nhow to install duct work how to clean your own air ducts and save money how to clean your own air ducts vacuum hose inserted into a floor register demonstrating .\nhow to install duct work see what makes efficiency heating cooling your number one choice for duct repair in milwaukie rules for flexible ducts that remodelers need to know pro remodeler plan the framing package to include chases or trusses to accommodate ductwork b ducts that are not stretched tight or .\nhow to install duct work rules for remodelers when installing flexbile ductwork how to clean your own air ducts and save money how to clean your own air ducts vacuum hose inserted into a floor register demonstrating .\nhow to install duct work tips and tricks for installing drop ceilings drop ceilings once the borders are determined mark the location of the main runners on the floor or have someone hold a tape measure and verify the main runner locations .\nhow to install duct work avoid modifyingaltering duct work to install heaters knowing in advance the type of installation required can save you time money and frustration ductwork installation repair see what makes efficiency heating cooling your number one choice for duct repair in milwaukie .\nhow to install duct work if you have very low basement or you want to build drop soffit tight to the duct you may be interested to take a look at this type of installation list how to install balancing dampers for installing a new collar into fiber board ductwork you will need to install a fiber board duct collar and then screw the balancing damper into that .\nhow to install duct work broan installation tips duct dynasty building science corporation figure b ugly and unfortunately typical this is a percent or more energy hit on cooling and heating compared to the base case .\nhow to install duct work older ductwork as time passes ductwork can become contaminated with dust dirt debris mold slime dead rodents dead bugs as well as other contaminants installing ceiling drops for a dropped or suspended ceiling youtube installing ceiling drops for a dropped or suspended ceiling .\nhow to install duct work air diffusion council flex duct installation standards 3 sag support tips and tricks for installing drop ceilings drop ceilings tips .\nhow to install duct work image titled install a bathroom fan step 1 how to install a drop ceiling simple steps and big mistake i figured out how to install a drop ceiling for my basement .\nhow to install duct work installing ceiling drops for a dropped or suspended ceiling rules for flexible ducts that remodelers need to know pro remodeler rules for remodelers when installing flexbile ductwork .\nhow to install duct work can ductless ac installation be the answer youve been looking for how to install new heating air duct work in a crawl space hunker step .\nhow to install duct work hvac ductwork replacement cost design and ultimate buying guide this information is aimed at the homeowner who wants to fully understand the mechanical systems in their home in this case the ducts their purpose .\nhow to install duct work understanding hvac duct installation understanding hvac duct installation hvac apprenticeship understanding hvac duct installation while it is important to und .\nhow to install duct work once the borders are determined mark the location of the main runners on the floor or have someone hold a tape measure and verify the main runner locations how to install duct wrap insulation insulation and room careful sizing and installation of the duct work helps equalize the airflow but once the experts calculate and .\nhow to install duct work name floorplan 1jpg views 1990 size 183 kb how to replace ductwork and install a return vent howtos diy seal new flex duct to new box with ties .\nhow to install duct work why fabric ductwork .\nhow to install duct work round sheet metal duct materials list .\n\nLeave a Reply\n\nYour email address will not be published. Required fields are marked *"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://takefiles.info/how-to-install-duct-work/how-to-install-duct-work-how-to-clean-your-own-air-ducts-vacuum-hose-inserted-into-a-floor-register-demonstrating-/\",\n \"source_domain\": \"takefiles.info\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"55884\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:YB6UM5K65PTBLFYJLKBYDK37N5LPAFUO\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-20T06:44:18Z\",\n \"WARC-IP-Address\": \"104.31.95.250\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:6TRZJEMTU2AAQJC7HWNFQQPXKIEWOPP3\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://takefiles.info/how-to-install-duct-work/how-to-install-duct-work-how-to-clean-your-own-air-ducts-vacuum-hose-inserted-into-a-floor-register-demonstrating-/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-24.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 114,\n 115,\n 229,\n 230,\n 346,\n 347,\n 1404,\n 1405,\n 1728,\n 1913,\n 2148,\n 2310,\n 2477,\n 2601,\n 2762,\n 2878,\n 3026,\n 3173,\n 3337,\n 3644,\n 3862,\n 4105,\n 4401,\n 4764,\n 4983,\n 5287,\n 5447,\n 5636,\n 5846,\n 6009,\n 6248,\n 6436,\n 6786,\n 6957,\n 7004,\n 7069,\n 7070,\n 7084,\n 7085\n ],\n \"line_end_idx\": [\n 114,\n 115,\n 229,\n 230,\n 346,\n 347,\n 1404,\n 1405,\n 1728,\n 1913,\n 2148,\n 2310,\n 2477,\n 2601,\n 2762,\n 2878,\n 3026,\n 3173,\n 3337,\n 3644,\n 3862,\n 4105,\n 4401,\n 4764,\n 4983,\n 5287,\n 5447,\n 5636,\n 5846,\n 6009,\n 6248,\n 6436,\n 6786,\n 6957,\n 7004,\n 7069,\n 7070,\n 7084,\n 7085,\n 7155\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 7155,\n \"ccnet_original_nlines\": 39,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.34910276532173157,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.0008156599942594767,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.0399673692882061,\n \"rps_doc_frac_unique_words\": 0.2753378450870514,\n \"rps_doc_mean_word_length\": 4.971283912658691,\n \"rps_doc_num_sentences\": 32,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.892024040222168,\n \"rps_doc_word_count\": 1184,\n \"rps_doc_frac_chars_dupe_10grams\": 0.441386342048645,\n \"rps_doc_frac_chars_dupe_5grams\": 0.5932721495628357,\n \"rps_doc_frac_chars_dupe_6grams\": 0.558613657951355,\n \"rps_doc_frac_chars_dupe_7grams\": 0.5361875891685486,\n \"rps_doc_frac_chars_dupe_8grams\": 0.524974524974823,\n \"rps_doc_frac_chars_dupe_9grams\": 0.5095140933990479,\n \"rps_doc_frac_chars_top_2gram\": 0.0458715595304966,\n \"rps_doc_frac_chars_top_3gram\": 0.08358818292617798,\n \"rps_doc_frac_chars_top_4gram\": 0.08698607236146927,\n \"rps_doc_books_importance\": -556.4531860351562,\n \"rps_doc_books_importance_length_correction\": -556.4531860351562,\n \"rps_doc_openwebtext_importance\": -376.1184997558594,\n \"rps_doc_openwebtext_importance_length_correction\": -376.1184997558594,\n \"rps_doc_wikipedia_importance\": -230.6095428466797,\n \"rps_doc_wikipedia_importance_length_correction\": -230.6095428466797\n },\n \"fasttext\": {\n \"dclm\": 0.0010042800568044186,\n \"english\": 0.8819863200187683,\n \"fineweb_edu_approx\": 1.4319120645523071,\n \"eai_general_math\": 0.00341654010117054,\n \"eai_open_web_math\": 0.05500274896621704,\n \"eai_web_code\": 0.00014913000632077456\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"697.048\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Building\",\n \"level_3\": \"Heating, Ventilation, and Air conditioning\"\n }\n },\n \"secondary\": {\n \"code\": \"690\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Building\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n },\n \"secondary\": {\n \"code\": \"21\",\n \"label\": \"Customer Support\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":161,"cells":{"id":{"kind":"number","value":-4189400721775912400,"string":"-4,189,400,721,775,912,400"},"text":{"kind":"string","value":"In Vivo is part of Informa PLC\n\nThis site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC’s registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.\n\nThis copy is for your personal, non-commercial use. For high-quality copies or electronic reprints for distribution to colleagues or customers, please call +44 (0) 20 3377 3183\n\nPrinted By\n\nUsernamePublicRestriction\nUsernamePublicRestriction\n\nTriax Pharmaceuticals LLC\n\nDivision of Bausch Health Companies Inc.\nwww.triaxpharma.com\n\nLatest From Triax Pharmaceuticals LLC\n\nStart-Up Quarterly Statistics, Q2 2012\n\nIn the second quarter of 2012, start-up companies raised a total of $556 million across all industries. Most of that financing – $439.8 million – went to the biopharma sector. Cancer was the most prevalent therapeutic area for alliances. There were just four start-up acquisitions – two each in the biopharma and medical device industries.\n\nBioPharmaceutical Medical Device\n\nPharmaceutical/Biotechnology Deal Statistics Quarterly, Q2 2011\n\nOf the $6.3 billion total raised, 32% was from China distributor Shanghai Pharmaceuticals' $1.99 billion IPO - not only Q2's biggest financing, but also the second-largest pharma IPO of all time. Six of the 26 completed mergers were done to gain access to emerging markets, most notably, Takeda's $13.7 billion buy of Nycomed, almost half of the total $27.9 billion spent on pharma acquisitions this quarter. Q2's largest alliance was Vertex's in-licensing of Alios BioPharma's preclinical HCV nucleotide analogues, a deal that could be worth up to $775 million in up fronts and development milestones.\nBioPharmaceutical\n\nDeals Shaping the Medical Industry (06/2011)\n\nThe dealmaking column is a survey of recent transactions, including strategic alliances, mergers & acquisitions, and financings, in the life sciences industries. Deals are listed by the following industry sectors: in vitro diagnostics, pharmaceuticals, medical devices, and research/analytical instrumentation and reagents. All transactions are excerpted from Elsevier's Strategic Transactions.\nSee All\n\nCompany Information\n\n • Industry\n • Biotechnology\n • Pharmaceuticals\n • Generic Drugs\n • Specialty Pharmaceuticals\n • Therapeutic Areas\n • Dermatology\n • Alias(es)\n • Ownership\n • Private\n • Headquarters\n • Worldwide\n • North America\n • USA\n • Parent & Subsidiaries\n • Bausch Health Companies Inc.\n • Senior Management\n • Joseph J Krivulka, Pres.\n Leonard L Mazur, COO\n Peter Volk, VP, Mktg.\n Gary F Talarico, SVP, Sales\n • Contact Info\n • Triax Pharmaceuticals LLC\n Phone: (908) 372-0500\n 20 Commerce Drive\n Suite 232\n Cranford, NJ 07016-3599\n USA\nAdvertisement\nAdvertisement\nUsernamePublicRestriction\n\nRegister"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://invivo.pharmaintelligence.informa.com/companies/200700971\",\n \"source_domain\": \"invivo.pharmaintelligence.informa.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"80461\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:KDWRJGOYHJHBQ5UWCRQDVTKESSABXS4I\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-14T14:42:51Z\",\n \"WARC-IP-Address\": \"104.16.255.107\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:QKLP2LOYC5TYXUJ6FGEEKP25WMR2OZVF\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://invivo.pharmaintelligence.informa.com/companies/200700971\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-123.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 31,\n 32,\n 257,\n 258,\n 435,\n 436,\n 447,\n 448,\n 474,\n 500,\n 501,\n 527,\n 528,\n 569,\n 589,\n 590,\n 628,\n 629,\n 668,\n 669,\n 1009,\n 1010,\n 1043,\n 1044,\n 1108,\n 1109,\n 1712,\n 1730,\n 1731,\n 1776,\n 1777,\n 2172,\n 2180,\n 2181,\n 2201,\n 2202,\n 2215,\n 2233,\n 2253,\n 2273,\n 2305,\n 2327,\n 2343,\n 2357,\n 2371,\n 2383,\n 2400,\n 2414,\n 2434,\n 2446,\n 2472,\n 2505,\n 2527,\n 2556,\n 2581,\n 2607,\n 2639,\n 2656,\n 2686,\n 2712,\n 2734,\n 2748,\n 2776,\n 2784,\n 2798,\n 2812,\n 2838,\n 2839\n ],\n \"line_end_idx\": [\n 31,\n 32,\n 257,\n 258,\n 435,\n 436,\n 447,\n 448,\n 474,\n 500,\n 501,\n 527,\n 528,\n 569,\n 589,\n 590,\n 628,\n 629,\n 668,\n 669,\n 1009,\n 1010,\n 1043,\n 1044,\n 1108,\n 1109,\n 1712,\n 1730,\n 1731,\n 1776,\n 1777,\n 2172,\n 2180,\n 2181,\n 2201,\n 2202,\n 2215,\n 2233,\n 2253,\n 2273,\n 2305,\n 2327,\n 2343,\n 2357,\n 2371,\n 2383,\n 2400,\n 2414,\n 2434,\n 2446,\n 2472,\n 2505,\n 2527,\n 2556,\n 2581,\n 2607,\n 2639,\n 2656,\n 2686,\n 2712,\n 2734,\n 2748,\n 2776,\n 2784,\n 2798,\n 2812,\n 2838,\n 2839,\n 2847\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2847,\n \"ccnet_original_nlines\": 68,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.21470019221305847,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.046421658247709274,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2901354134082794,\n \"rps_doc_frac_unique_words\": 0.6136363744735718,\n \"rps_doc_mean_word_length\": 5.6994948387146,\n \"rps_doc_num_sentences\": 27,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.187009811401367,\n \"rps_doc_word_count\": 396,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.02658396027982235,\n \"rps_doc_frac_chars_top_3gram\": 0.030571559444069862,\n \"rps_doc_frac_chars_top_4gram\": 0.02126717008650303,\n \"rps_doc_books_importance\": -222.81491088867188,\n \"rps_doc_books_importance_length_correction\": -222.81491088867188,\n \"rps_doc_openwebtext_importance\": -121.16698455810547,\n \"rps_doc_openwebtext_importance_length_correction\": -121.16698455810547,\n \"rps_doc_wikipedia_importance\": -78.49072265625,\n \"rps_doc_wikipedia_importance_length_correction\": -78.49072265625\n },\n \"fasttext\": {\n \"dclm\": 0.0000324200009345077,\n \"english\": 0.8767768740653992,\n \"fineweb_edu_approx\": 1.0520918369293213,\n \"eai_general_math\": 0.004267449956387281,\n \"eai_open_web_math\": 0.10299866646528244,\n \"eai_web_code\": 0.000008580000212532468\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"615.19\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"Materia medica, Drugs, and Pharmacy\"\n }\n },\n \"secondary\": {\n \"code\": \"658.83\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":162,"cells":{"id":{"kind":"number","value":6578096413574702000,"string":"6,578,096,413,574,702,000"},"text":{"kind":"string","value":"Loading Events\n\nEvents for November 2019\n\nEvents Search and Views Navigation\n\nEvent Views Navigation\n\nCalendar of Events\n\nCalendar of Events\nMondayTuesdayWednesdayThursdayFridaySaturdaySunday\n28\n29\n30\n31\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n\nChicago Pop Culture Con\n\n1\n\nChicago Pop Culture Con\n\n+ Export Events"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.chimerascomics.com/calendar/2019-11/\",\n \"source_domain\": \"www.chimerascomics.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"74407\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:ODJG5KOOBWXY2GKWRML73DXZM5OLPAPI\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-17T20:27:55Z\",\n \"WARC-IP-Address\": \"146.66.99.190\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:NK7SQ5REU7F65Q5VXROAJXHGWKPXS3CM\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.chimerascomics.com/calendar/2019-11/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-97.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 15,\n 16,\n 41,\n 42,\n 77,\n 78,\n 101,\n 102,\n 121,\n 122,\n 141,\n 192,\n 195,\n 198,\n 201,\n 204,\n 206,\n 208,\n 210,\n 212,\n 214,\n 216,\n 218,\n 220,\n 222,\n 225,\n 228,\n 231,\n 234,\n 237,\n 240,\n 243,\n 246,\n 249,\n 252,\n 255,\n 258,\n 261,\n 264,\n 267,\n 270,\n 273,\n 276,\n 279,\n 282,\n 285,\n 286,\n 310,\n 311,\n 313,\n 314,\n 338,\n 339\n ],\n \"line_end_idx\": [\n 15,\n 16,\n 41,\n 42,\n 77,\n 78,\n 101,\n 102,\n 121,\n 122,\n 141,\n 192,\n 195,\n 198,\n 201,\n 204,\n 206,\n 208,\n 210,\n 212,\n 214,\n 216,\n 218,\n 220,\n 222,\n 225,\n 228,\n 231,\n 234,\n 237,\n 240,\n 243,\n 246,\n 249,\n 252,\n 255,\n 258,\n 261,\n 264,\n 267,\n 270,\n 273,\n 276,\n 279,\n 282,\n 285,\n 286,\n 310,\n 311,\n 313,\n 314,\n 338,\n 339,\n 354\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 354,\n \"ccnet_original_nlines\": 53,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.05970149114727974,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.5522388219833374,\n \"rps_doc_frac_unique_words\": 0.7424242496490479,\n \"rps_doc_mean_word_length\": 4.21212100982666,\n \"rps_doc_num_sentences\": 1,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.7747139930725098,\n \"rps_doc_word_count\": 66,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.10791367292404175,\n \"rps_doc_frac_chars_top_3gram\": 0.11510790884494781,\n \"rps_doc_frac_chars_top_4gram\": 0.14388489723205566,\n \"rps_doc_books_importance\": -26.81058692932129,\n \"rps_doc_books_importance_length_correction\": -26.81058692932129,\n \"rps_doc_openwebtext_importance\": -16.594789505004883,\n \"rps_doc_openwebtext_importance_length_correction\": -16.594789505004883,\n \"rps_doc_wikipedia_importance\": -17.5495662689209,\n \"rps_doc_wikipedia_importance_length_correction\": -17.5495662689209\n },\n \"fasttext\": {\n \"dclm\": -0.000009780000254977494,\n \"english\": 0.6823185086250305,\n \"fineweb_edu_approx\": 0.8921921253204346,\n \"eai_general_math\": -0.00000810999972600257,\n \"eai_open_web_math\": 0.4042081832885742,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"791.436\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"025.044\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"Library science\",\n \"level_3\": \"Library administration\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":163,"cells":{"id":{"kind":"number","value":1591900021165992700,"string":"1,591,900,021,165,992,700"},"text":{"kind":"string","value":"Subscribe To Wreck-It Ralph 2: What We Know So Far About Ralph Breaks The Internet Updates\n\nTraditionally, Disney is fairly gunshy when it comes to theatrically released animated sequels. In fact, Disney Animation Studios has only ever produced one direct sequel to a theatrical release, The Rescuers Down Under, back in 1990. However, the sequels begin to increase in 2018 when Wreck-It Ralph sees a sequel of its own, Ralph Breaks the Internet: Wreck-it Ralph 2.\n\nThe first movie brought us into a world that exists inside our favorite video games. The sequel, as the name implies, will expand on that theme and take on the entire internet. With a scope that large, nearly anything can happen, and, based on what we know, quite a lot of it will. Here's everything we know about the sequel to Wreck-It Ralph.\n\nWreck-It Ralph 2\n\nWhat Is The Wreck-It Ralph 2 Release Date?\n\nThere are several \"big weekends\" on the release calendar, and Disney is frequently associated with all of them. However, there may be no weekend more synonymous with Disney than Thanksgiving weekend. Movies like Frozen, Moana, and Coco have all been released the day before Thanksgiving, and Ralph Breaks the Internet: Wreck-It Ralph 2 will be Disney's 2018 representative for the holiday weekend when it gets released on November 21, 2018. Originally, Ralph 2 was going to be released in the spring of 2018. However, likely due to the issues Disney was having producing Gigantic, Ralph was pushed to November. The film will have some competition for that release, as it opens the same day as Creed 2. It also opens the week after Fantastic Beasts: The Crimes of Grindelwald.\n\nRalph and Vanellope\n\nWhat Is Wreck-It Ralph 2 Rated?\n\nIt's a bit early to know exactly what the release date for Ralph Breaks the Internet: Wreck-It Ralph 2 will be. However, the first movie received a PG rating and so it's a safe bet the sequel will fall in line with that. This is Disney that we're talking about, so really a G rating is the only other viable option. At this point, PG is becoming the standard for Disney animation and while the first film likely could have gotten away with a G rating, we expect the tone of the sequel to be on par with its predecessor.\n\nWhat Have We Seen From Wreck-It Ralph 2?\n\nLucky for us, after years of waiting to see something from Ralph Breaks the Internet: Wreck-It Ralph 2, a trailer was finally released at the end of February 2018. In it, we see that Mr. Litwak, the arcade owner, has installed a Wi-Fi router in his business, which is plugged into the same power strip as the games, making it possible for Ralph and Venellope to go from the game world to the internet. While we still don't get much of the larger story in this two-minute trailer, it's easy to see that this sequel will be a lot of fun.\n\nWreck-It Ralph 2 still\n\nWhat Is Wreck-It Ralph 2 About?\n\nThe first details about the actual plot of Ralph Breaks the Internet: Wreck-It Ralph 2 came out last summer during Disney's D23 Expo. While we already had an idea where the movie would take place due to the title, we have a bit of information as to why. Apparently, the copy of Sugar Rush inside the arcade from the first movie is in need of a replacement part. This leads Ralph and Vanellope to make use of a router that has been installed in the arcade to jump from the arcade onto the internet in order to go looking for it. This will take the pair to, we assume, a number of different worlds, similar to the way that each game in the arcade was unique in the first film.\n\nExactly how a couple of digital characters are going to pick up a physical replacement part from the actual internet is unclear. Maybe they need to make nice with an Amazon buy box or digitally alter the results of an eBay auction in order to make sure the arcade wins. Either way, we saw how scary going \"Out of Order\" was for the people inside Fix-It Felix Jr in the first movie, and clearly that possibility happening for Sugar Rush will make this adventure an equally serious one.\n\nZootopia\n\nThe Writers\n\nThe story of Ralph Breaks the Internet: Wreck-It Ralph 2 comes to us from three Disney veterans who have a strong history behind them. The Head of Story is Jim Reardon, who previously was part of the story team for both Zootopia and the original Wreck-It Ralph. Then we have Pamela Ribon who previously assisted with the story for Disney's Moana. Before that, she had worked on television comedies like Mind of Mencia and Samantha Who? Finally, the third member of the story team for Ralph 2 is Phil Johnston, who co-wrote the screenplay for both Zootopia and the first Wreck-It Ralph. He's also got another big job on this movie, which takes us to our next section.\n\nWreck-It Ralph\n\nThe Directors\n\nThe first Wreck-It Ralph was a solo directorial effort from Rich Moore, who also co-directed Zootopia. He'll be back in the director's chair for Ralph Breaks the Internet: Wreck-It Ralph 2, but this time he'll share directorial responsibilities with Phil Johnston. This is Johnston's debut as a feature film director, but considering how intimately he's been involved with this franchise, it certainly feels like he's picked the right film to start with.\n\nWreck-It Ralph w/ Q-Bert\n\nWreck-It Ralph\n\nLong before Wreck-It Ralph 2 was official, we knew that it was coming, mostly because voice actor John C. Reilly likes to talk. The original Wreck-It Ralph was all about a character who had been designed to be a particular way, in this case, a video game villain, who tried to step outside his role and find more in his existence. His quest took him outside of his Donkey Kong-esque 8-bit video game and into other games, including modern first-person shooters and kart racers. Ralph succeeded in finding more, but also made peace with his role as the bad guy. One assumes that we'll find Ralph in a similar state as Ralph Breaks the Internet: Wreck-It Ralph 2 begins. The shift away from video games and into the internet will probably be the biggest shift for him. We certainly got the impression in the first movie that the characters were very much a product of their era, and so Ralph, from a game over 30 years old, likely won't know where to start when navigating the web. We've been promised that the friendship between Ralph and Vanellope will be tested in the sequel, though we're not exactly sure what that means.\n\nVanellope Von Schweetz\n\nVanellope Von Schweetz\n\nMost of Wreck-It Ralph took place in the game of Sugar Rush, the candy go-kart game and home of Vanellope Von Schweetz, voiced by Sarah Silverman. At the end of the first film, we learned that Vanellope was actually the princess of the land, though her time as an apparent glitch made her feel more comfortable in a hoodie than a frilly dress. Sugar Rush will be key to the sequel as well, as Vanellope and Ralph's journey into the internet is undertaken in an attempt to find a part that will fix the Sugar Rush arcade cabinet. This could indicate a slight shift in the character dynamic. Even though the film's title is all about Ralph, he may take a more secondary role in Vanellope's quest to fix her game.\n\nFix-It Felix Jr.\n\nFix-It Felix Jr.\n\nFix-It Felix Jr. was the name of the video game that Ralph came from, and Felix was an important supporting character in the first film. While Jack McBrayer was apparently the last person to know that Ralph Breaks the Internet: Wreck-It Ralph 2 was coming, it has been confirmed that he'll be back to reprise his role as the guy who fixes everything. It's unclear how big a role Felix will have, but as the character was married at the end of the first movie, there are a lot of opportunities to do some new things with him.\n\nCalhoun\n\nCalhoun\n\nFix-It Felix Jr's bride at the end of the first movie was the tough-as-nails Calhoun, voiced by Jane Lynch. The actress has confirmed that she will be back for the sequel, and we would expect her part to be on par with that of Felix as far as its size an importance, but that's pure speculation. Calhoun's modern military video game character represented the current generation of more mature games, which are very popular among actual online communities, so, perhaps, she'll be in a better position to navigate the world of the internet than the others.\n\nMr. Litwak\n\nMr. Litwak\n\nOne character from the first film who has seemingly not been confirmed for the sequel is Mr. Litwak, the owner of the arcade where Ralph and the gang all reside. He was voiced by the hilarious Ed O'Neil and while he wasn't a major character in the first film, with the plot of the game revolving around the Sugar Rush arcade cabinet, there's a good chance that the owner will make another supporting appearance as he did before.\n\nSugar Rush\n\nOther Returning Characters\n\nThere was a nearly endless number of small supporting characters in Wreck-It Ralph in the form of the Nicelanders of Fix-it Felix Jr. and the additional racers in Sugar Rush. Since this adventure will take our leads out of the arcade, we wouldn't expect any of them to have roles even as large as what they had before. Still, expect the likes of Mindy Kaling and others to appear briefly, if only to keep the worlds feeling lived in and to help give us an idea of what has happened in the intervening years.\n\nTaraji P Henson\n\nYesss\n\nSo far, only one brand new character has been introduced for Ralph Breaks the Internet: Wreck it Ralph 2. During the D23 Expo last summer, attendees were treated to footage of the character known as Yesss who is voiced by Taraji P. Henson. She plays a digital algorithm for a website known as Buzzaholic, the apparent stand-in for BuzzFeed in this universe. She will be the film's tour guide of sorts as the character who introduces the internet world to our characters and helps them navigate it. No images have been released publicly of Yesss, but she's described as a character with blue hair that dresses fairly hip and has clothes made from fiber optics.\n\nJames Corden Into the Woods\n\nNew Voices\n\nTwo voice actors have been attached to the movie to play brand new characters that we don't know much about. Ugly Betty's Ana Ortiz was the first name announced for what is being called a \"small role,\" but beyond that, we don't know much. Late night TV host James Corden, who seems to be doing voice acting in everything these days, is also apparently involved in Wreck-it Ralph 2. His casting was revealed by Jane Lynch, so it's possible his role will be involved with whatever Calhoun is up to in the new movie.\n\nKing Candy\n\nAlan Tudyk\n\nThere are only about two things you can be sure of when it comes to a Disney Animation Studios movie these days. First, it will open with a shot of a castle, and two, you'll hear the voice of Alan Tudyk at some point. He's been in every animated Disney movie for the last several years, including voicing the major role of King Candy in the first Wreck-It Ralph. Tudyk has confirmed he'll be back for the sequel, though in a different role. It could be another major role like it was last time, though in Moana he voiced a sidekick chicken, so, really, anything is possible.\n\nDisney Princesses\n\nDisney References\n\nDisney has become a massive entity in recent years and Wreck-it Ralph 2 will actually make reference to this fact with a major scene that they showed off at the D23 Expo last year. The characters will actually go to one of Disney's real homes on the internet, OhMyDisney.com, where they will see elements of Star Wars and Marvel as well as Disney animation. In fact, Ralph and Vanellope will meet all of the classic Disney princesses in one place, in a moment that will be a major joy for all the Disney fanatics out there. All of the original voice actors who are still with us will reprise their roles. With everybody from Snow White to Anna and Elsa making an appearance. Whether this will actually be a scene that is important in the grand scheme of the story or just one for fun is unclear, but it will be a major event either way.\n\nSarah Silverman and John C. Reilly Talk 'Ralph Breaks The Internet'\n\nSubscribe to our Newsletter\n\nBlended From Around The Web\n\n \n\nRelated\n\nHot Topics\n\nCookie Settings"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://blend.cinemablend.com/news/2302621/wreck-it-ralph-2-what-we-know-so-far-about-ralph-breaks-the-internet\",\n \"source_domain\": \"blend.cinemablend.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"156060\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:GM62XRZOQNQZZNM5Q7NSROSWYP57M2XZ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-22T23:38:23Z\",\n \"WARC-IP-Address\": \"104.18.139.76\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:H65YU3LJSYCLT3JKO3VQSUPLC7JP62SW\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://blend.cinemablend.com/news/2302621/wreck-it-ralph-2-what-we-know-so-far-about-ralph-breaks-the-internet\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-97.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 91,\n 92,\n 465,\n 466,\n 810,\n 811,\n 828,\n 829,\n 872,\n 873,\n 1649,\n 1650,\n 1670,\n 1671,\n 1703,\n 1704,\n 2224,\n 2225,\n 2266,\n 2267,\n 2803,\n 2804,\n 2827,\n 2828,\n 2860,\n 2861,\n 3536,\n 3537,\n 4022,\n 4023,\n 4032,\n 4033,\n 4045,\n 4046,\n 4713,\n 4714,\n 4729,\n 4730,\n 4744,\n 4745,\n 5200,\n 5201,\n 5226,\n 5227,\n 5242,\n 5243,\n 6368,\n 6369,\n 6392,\n 6393,\n 6416,\n 6417,\n 7128,\n 7129,\n 7146,\n 7147,\n 7164,\n 7165,\n 7690,\n 7691,\n 7699,\n 7700,\n 7708,\n 7709,\n 8264,\n 8265,\n 8276,\n 8277,\n 8288,\n 8289,\n 8718,\n 8719,\n 8730,\n 8731,\n 8758,\n 8759,\n 9267,\n 9268,\n 9284,\n 9285,\n 9291,\n 9292,\n 9952,\n 9953,\n 9981,\n 9982,\n 9993,\n 9994,\n 10508,\n 10509,\n 10520,\n 10521,\n 10532,\n 10533,\n 11108,\n 11109,\n 11127,\n 11128,\n 11146,\n 11147,\n 11984,\n 11985,\n 12053,\n 12054,\n 12082,\n 12083,\n 12111,\n 12112,\n 12114,\n 12115,\n 12123,\n 12124,\n 12135,\n 12136\n ],\n \"line_end_idx\": [\n 91,\n 92,\n 465,\n 466,\n 810,\n 811,\n 828,\n 829,\n 872,\n 873,\n 1649,\n 1650,\n 1670,\n 1671,\n 1703,\n 1704,\n 2224,\n 2225,\n 2266,\n 2267,\n 2803,\n 2804,\n 2827,\n 2828,\n 2860,\n 2861,\n 3536,\n 3537,\n 4022,\n 4023,\n 4032,\n 4033,\n 4045,\n 4046,\n 4713,\n 4714,\n 4729,\n 4730,\n 4744,\n 4745,\n 5200,\n 5201,\n 5226,\n 5227,\n 5242,\n 5243,\n 6368,\n 6369,\n 6392,\n 6393,\n 6416,\n 6417,\n 7128,\n 7129,\n 7146,\n 7147,\n 7164,\n 7165,\n 7690,\n 7691,\n 7699,\n 7700,\n 7708,\n 7709,\n 8264,\n 8265,\n 8276,\n 8277,\n 8288,\n 8289,\n 8718,\n 8719,\n 8730,\n 8731,\n 8758,\n 8759,\n 9267,\n 9268,\n 9284,\n 9285,\n 9291,\n 9292,\n 9952,\n 9953,\n 9981,\n 9982,\n 9993,\n 9994,\n 10508,\n 10509,\n 10520,\n 10521,\n 10532,\n 10533,\n 11108,\n 11109,\n 11127,\n 11128,\n 11146,\n 11147,\n 11984,\n 11985,\n 12053,\n 12054,\n 12082,\n 12083,\n 12111,\n 12112,\n 12114,\n 12115,\n 12123,\n 12124,\n 12135,\n 12136,\n 12151\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 12151,\n \"ccnet_original_nlines\": 114,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.44543689489364624,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.005436889827251434,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.13553397357463837,\n \"rps_doc_frac_unique_words\": 0.30531176924705505,\n \"rps_doc_mean_word_length\": 4.438798904418945,\n \"rps_doc_num_sentences\": 99,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.552123546600342,\n \"rps_doc_word_count\": 2165,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.07981269806623459,\n \"rps_doc_frac_chars_dupe_6grams\": 0.04547347128391266,\n \"rps_doc_frac_chars_dupe_7grams\": 0.039854321628808975,\n \"rps_doc_frac_chars_dupe_8grams\": 0.02049948088824749,\n \"rps_doc_frac_chars_dupe_9grams\": 0.008532780222594738,\n \"rps_doc_frac_chars_top_2gram\": 0.03870968148112297,\n \"rps_doc_frac_chars_top_3gram\": 0.02570239081978798,\n \"rps_doc_frac_chars_top_4gram\": 0.027471380308270454,\n \"rps_doc_books_importance\": -891.3543701171875,\n \"rps_doc_books_importance_length_correction\": -891.3543701171875,\n \"rps_doc_openwebtext_importance\": -515.86279296875,\n \"rps_doc_openwebtext_importance_length_correction\": -515.86279296875,\n \"rps_doc_wikipedia_importance\": -414.0177001953125,\n \"rps_doc_wikipedia_importance_length_correction\": -414.0177001953125\n },\n \"fasttext\": {\n \"dclm\": 0.08410108089447021,\n \"english\": 0.973392903804779,\n \"fineweb_edu_approx\": 1.101897954940796,\n \"eai_general_math\": 0.022852059453725815,\n \"eai_open_web_math\": 0.14525574445724487,\n \"eai_web_code\": 0.013641719706356525\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"791.4372\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"791.457\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":164,"cells":{"id":{"kind":"number","value":-945013139918788000,"string":"-945,013,139,918,788,000"},"text":{"kind":"string","value":"Impatience\n\nYves was a man of few words. He expressed his ideas in the form of drawings and collages tossed off wordlessly. They always contained an element of violence, aggression and unbelievable impatience. The most significant thing for me was the fact that his knowledge of nature helped me to confirm the hunch I had about the change of route under way, about the fact that landscape was in the process of becoming the only medium capable of establishing connections in the city. These hypotheses about tension between city and country came to the fore at La Villette competition, not only in relation to our project, but the projects of Cedric Price, Jean Nouvel and Bernard Tschumi as well. Since then they have been confirmed, specially in Asian cities, not only for these positive reasons, but for other less admissible reasons too, because landscape is less expensive and politically correct. So the 20th century is drawing to a close with the death of town planning and with his highly cynical apotheosis of landscape. Yves was a molecule in this field with his bipolar tension between city and country. He foreshadowed this shift.\n\nRem Koolhaas about Yves Brunier, Interview (1996)\n\nBrunier_9c 1ab70371a7d4509f7a389a1bae5fab17 4d647a05278e06edbb69830a861ff6b3Yves Brunier, Diverse Design Documents (circa 1990)\n\n9b0d035628e1602ecd5cd706dc07d609\n\n143da37f  Image\n\n37f003ca689b54fa64c91616e69de1e2\nYves Brunier, Model for the Garden Rooms of the Museumpark (1992)\n\nFIND IT ON THE MAP\nAdvertisements"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://landscapetheory1.wordpress.com/tag/yves-brunier/\",\n \"source_domain\": \"landscapetheory1.wordpress.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"231206\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:EGR37W7IJYXW35YJXCU7BBR3OHDLNXBY\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-14T23:02:03Z\",\n \"WARC-IP-Address\": \"192.0.78.12\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:JTDKB6PBSW7H2ACZ7D4RGIDTWLKEBYWN\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://landscapetheory1.wordpress.com/tag/yves-brunier/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-123.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 11,\n 12,\n 1144,\n 1145,\n 1195,\n 1196,\n 1324,\n 1325,\n 1358,\n 1359,\n 1375,\n 1376,\n 1409,\n 1475,\n 1476,\n 1495\n ],\n \"line_end_idx\": [\n 11,\n 12,\n 1144,\n 1145,\n 1195,\n 1196,\n 1324,\n 1325,\n 1358,\n 1359,\n 1375,\n 1376,\n 1409,\n 1475,\n 1476,\n 1495,\n 1509\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1509,\n \"ccnet_original_nlines\": 16,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.41015625,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.0234375,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1171875,\n \"rps_doc_frac_unique_words\": 0.6419214010238647,\n \"rps_doc_mean_word_length\": 5.436681270599365,\n \"rps_doc_num_sentences\": 10,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.689892292022705,\n \"rps_doc_word_count\": 229,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.044979918748140335,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.012048190459609032,\n \"rps_doc_frac_chars_top_3gram\": 0.012851409614086151,\n \"rps_doc_frac_chars_top_4gram\": 0.033734939992427826,\n \"rps_doc_books_importance\": -112.98702239990234,\n \"rps_doc_books_importance_length_correction\": -103.35895538330078,\n \"rps_doc_openwebtext_importance\": -56.054290771484375,\n \"rps_doc_openwebtext_importance_length_correction\": -56.054290771484375,\n \"rps_doc_wikipedia_importance\": -49.90288162231445,\n \"rps_doc_wikipedia_importance_length_correction\": -37.61206817626953\n },\n \"fasttext\": {\n \"dclm\": 0.028824390843510628,\n \"english\": 0.9516623616218567,\n \"fineweb_edu_approx\": 2.21854305267334,\n \"eai_general_math\": 0.06610912084579468,\n \"eai_open_web_math\": 0.23569977283477783,\n \"eai_web_code\": 0.0035592899657785892\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"711.0\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Gardening, Parks, and Forests and forestry\",\n \"level_3\": \"City planning and Regional planning\"\n }\n },\n \"secondary\": {\n \"code\": \"720.0\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Architecture\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":165,"cells":{"id":{"kind":"number","value":4937288031711633000,"string":"4,937,288,031,711,633,000"},"text":{"kind":"string","value":"Second letter to Lord Pelham, &c. &c. &c in continuation of the comparative view of the system of penal colonization in New South Wales, and the home penitentiary system, prescribed by two acts of Parliament of the years 1794 & 1799\n\nMain Author: Bentham, Jeremy\nOther Authors: Pelham, Thomas\nFormat: eBook\nLanguage:English\nPublished: S.l. s.n [1802], 1802\nSubjects:\nOnline Access:\nCollection: Making of the Modern World - Collection details see MPG.ReNa\nItem Description:Caption title. - Goldsmiths'-Kress no. 18543. - OCLC, 16991769. - Reproduction of original from Goldsmiths' Library, University of London. - Signed: Jeremy Bentham. - With: Letter to Lord Pelham / Jeremy Bentham. [London : s.n., 1802]\nPhysical Description:72 p\nFormat:Full text online"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://ebooks.mpdl.mpg.de/ebooks/Record/EB000975980\",\n \"source_domain\": \"ebooks.mpdl.mpg.de\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"30259\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:GK6YSWH3N6RDUOEZPE6FLUFP4QHQ3WYG\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-16T18:09:42Z\",\n \"WARC-IP-Address\": \"134.76.28.192\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:YNB7GK5TKXLMCJOBJT47WJM4PDEG6SJZ\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://ebooks.mpdl.mpg.de/ebooks/Record/EB000975980\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-201.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 233,\n 234,\n 263,\n 293,\n 307,\n 324,\n 357,\n 367,\n 382,\n 455,\n 707,\n 733\n ],\n \"line_end_idx\": [\n 233,\n 234,\n 263,\n 293,\n 307,\n 324,\n 357,\n 367,\n 382,\n 455,\n 707,\n 733,\n 756\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 756,\n \"ccnet_original_nlines\": 12,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.19161677360534668,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.017964070662856102,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3652694523334503,\n \"rps_doc_frac_unique_words\": 0.7142857313156128,\n \"rps_doc_mean_word_length\": 5.580952167510986,\n \"rps_doc_num_sentences\": 16,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.1431169509887695,\n \"rps_doc_word_count\": 105,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.03412969037890434,\n \"rps_doc_frac_chars_top_3gram\": 0.04095562919974327,\n \"rps_doc_frac_chars_top_4gram\": 0.061433449387550354,\n \"rps_doc_books_importance\": -96.82313537597656,\n \"rps_doc_books_importance_length_correction\": -96.8231430053711,\n \"rps_doc_openwebtext_importance\": -54.030975341796875,\n \"rps_doc_openwebtext_importance_length_correction\": -54.030982971191406,\n \"rps_doc_wikipedia_importance\": -45.7397575378418,\n \"rps_doc_wikipedia_importance_length_correction\": -45.73976516723633\n },\n \"fasttext\": {\n \"dclm\": 0.000028849999580415897,\n \"english\": 0.7134628891944885,\n \"fineweb_edu_approx\": 2.2362754344940186,\n \"eai_general_math\": 0.002424119971692562,\n \"eai_open_web_math\": 0.2921569347381592,\n \"eai_web_code\": 0.00010371000098530203\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"364.90994\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Criminology\"\n }\n },\n \"secondary\": {\n \"code\": \"364.9092\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Criminology\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Academic/Research\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Academic Writing\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Advanced Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Graduate/Expert Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":166,"cells":{"id":{"kind":"number","value":-9059123339421218000,"string":"-9,059,123,339,421,218,000"},"text":{"kind":"string","value":"A clean house is a proper house. The top vacuum cleaner will remove dust and dirt along with many harmful allergens and pathogens. There are many vacuum cleaners that may clean your floors while blowing fine dust particles and airborne antagonists throughout your house. Selecting the ideal vacuum cleaner requires research. You will find a number of sorts of vacuum cleaners to consider when making your selection. Each has its strengths and weaknesses when it comes to cleaning. The best vacuum cleaners are typically more expensive but have the very best features needed to keep the house of yours neat and fresh. Investing into the best vacuum cleaner is a great investment in the house of yours as well as your family's overall health.\n\nhttp%3A%2F%2Fimages.samsung.com%2Fis%2FiThe top vacuum cleaner can often be purchased at the local retail outlet of yours or online. Many times you can find an effective local store that focuses primarily on vacuums. These vacuum specialty stores normally carry the very best vacuum cleaner that you can purchase. Often the costs at these vacuum cleaner specialty retailers are over at many big box stores like Wal Mart, Lowes or Circuit City. However if you purchase at a store that focuses primarily on the very best vacuum cleaners you've a good local source for maintenance as well as parts. Just about any warranty work is going to be accomplished locally in matter of many days. If you buy the vacuum of yours cleaner online then you most likely are going to need to ship your vacuum cleaner to probably the nearest maintenance facility. Purchasing the perfect vacuum cleaner offered will definitely limit the danger of any reliability complications.\n\n\nThe best vacuum cleaner in india vacuum cleaner available can include a good used piece of equipment. Great vacuum cleaners that are not abused and are refurbished at vacuum cleaner shops are a great option for the budget minded vacuum better shopper. The people who refurbished your pre-owned vacuum cleaner will know it inside and out and so if you need treats or help they'll be able to easily solve some complications that you might encounter. Online auctions are also a great place to find good utilized or maybe factory refurbished vacuum cleaners. You will have to do the research of yours to be sure that the model that you're thinking about has a great record of reliability. Most online vacuum cleaner sales have just a brief return time or perhaps short warranty period and quite a few haven't any protection to the end user at all. The best vacuum cleaner available could be the person that doesn't lead you to be concerned about its reliability.\n\nRemember the top vacuum cleaner in india will have all the features you are looking for and the ability to clean the surfaces located in the house of yours. The best vacuum cleaners will last a long time in case taken care of. Additional options to contemplate would be the design of vacuum cleaner, is it and upright or perhaps canister version, is it bag less and if does use bags can they be readily available. The top vacuum cleaners have HEPA filters to get rid of fine dust particles and allergens. This's a really vital feature in ensuring the house of yours remains healthy and clean. As a home owner it only is a good idea to invest in just the finest vacuum cleaner available.\n\n댓글 0\n\n목록\n번호 제목 글쓴이 날짜 조회 수\n공지 [公知] 紛失物センター利用方法 octagonseoul 2017.09.06 804\n공지 [Notice] the method of using Lost and Found service [22] octagonseoul 2017.09.06 1183\n공지 [공지] 분실물 센터 이용 방법 [24] octagonseoul 2017.09.06 1333\n공지 [公告] 失物品使用方式 octagonseoul 2017.09.06 632\n1581 Women's Swimwear 75044 SusieChidley4822 2019.06.22 539\n1580 Seluruh Keluhan Sepak Bola Kamu Akan Dijawab Di Sini Oleh Dewi365 CarrieShumway797492 2019.06.22 12263\n1579 Yang Mesti Kamu Ketahui Berkenaan Main-Main Sepak Bola Di Bandar Bola FredrickWatts8711 2019.06.22 17260\n1578 Bandar Judi Bola Online Terpopuler Di Asia RetaMudie469493537 2019.06.22 30\n1577 Nonton Film Indoxxi Terbaru Serta Terlengkap ZulmaRobinette95 2019.06.22 43\n1576 Mount Bromo Tour Package, Low-cost Rate 2019 From Surabaya Malang CathleenMcGuinness24 2019.06.22 87\n1575 Idn Poker Terbaik Di Asia 2019 MarshaJoris6666494 2019.06.22 15\n» Best Vacuum Cleaner In India, What Is It And Also Where Can I Find It FelixZiemba87807 2019.06.22 898\n1573 BROMO TOUR Travel Surabaya Bromo Ijen Tours Plans 2019 JohnathanKroll58570 2019.06.22 89\n1572 Fifty 2 Best Online Buying Sites For Female DerrickD11724519 2019.06.22 149\n1571 Taruhan Bola Online Terpercaya Di Indonesia MonroeStoker9368 2019.06.22 15\n1570 Rahasia Yang Mengerikan Dari Situs Download Lagu Aplikasi Mp3 Unduh Cuma-cuma LaurenceWhitford125 2019.06.22 112\n1569 Aplikasi Nonton Movie Gratis Di Android WilhelminaBosley 2019.06.22 24\n1568 Website Aplikasi Download Lagu Mp3 Gratis Serta Apa Yang Mesti Dilakoni Dengan Bertentangan PercyDemko3722713 2019.06.22 377\n1567 Taruhan Bola Online Terpercaya Di Indonesia VirgilBenjamin0448 2019.06.22 59\n1566 Download Movie Gratis Terkini Yang Sungguh Update OlgaChute49688356 2019.06.22 75\n1565 Agen Bola Resmi Dan Terpercaya KathaleenHarrel75 2019.06.22 73\n1564 Nonton Movie Gratis Subtitle Indonesia Terlengkap JeraldFranklin196 2019.06.22 119\n1563 Taruhan Online Bola Terbaik LavonNmc6328885550 2019.06.22 28\n1562 Bandar Bola Terpercaya TajTedesco640281 2019.06.22 58"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.octagonlost.com:446/board_zYMd91/8563\",\n \"source_domain\": \"www.octagonlost.com:446\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"31473\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:QPVEGR3MENAUNYYSN5TP6WIA7SR53BEI\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-15T21:06:54Z\",\n \"WARC-IP-Address\": \"112.175.184.38\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:4VV3OIAZRLEQATEJ5SMKXN4QQOLOLWMC\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.octagonlost.com:446/board_zYMd91/8563\",\n \"WARC-Truncated\": \"disconnect\",\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-81.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 741,\n 742,\n 1699,\n 1700,\n 1701,\n 2660,\n 2661,\n 3348,\n 3349,\n 3354,\n 3355,\n 3358,\n 3376,\n 3424,\n 3513,\n 3568,\n 3612,\n 3672,\n 3780,\n 3890,\n 3971,\n 4052,\n 4158,\n 4227,\n 4331,\n 4425,\n 4506,\n 4586,\n 4704,\n 4780,\n 4910,\n 4992,\n 5079,\n 5147,\n 5235,\n 5301\n ],\n \"line_end_idx\": [\n 741,\n 742,\n 1699,\n 1700,\n 1701,\n 2660,\n 2661,\n 3348,\n 3349,\n 3354,\n 3355,\n 3358,\n 3376,\n 3424,\n 3513,\n 3568,\n 3612,\n 3672,\n 3780,\n 3890,\n 3971,\n 4052,\n 4158,\n 4227,\n 4331,\n 4425,\n 4506,\n 4586,\n 4704,\n 4780,\n 4910,\n 4992,\n 5079,\n 5147,\n 5235,\n 5301,\n 5359\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 5359,\n \"ccnet_original_nlines\": 36,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2973760962486267,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.00680272001773119,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2507288455963135,\n \"rps_doc_frac_unique_words\": 0.5029446482658386,\n \"rps_doc_mean_word_length\": 5.239104747772217,\n \"rps_doc_num_sentences\": 80,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.510043144226074,\n \"rps_doc_word_count\": 849,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.04766187071800232,\n \"rps_doc_frac_chars_dupe_6grams\": 0.01708633080124855,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.052607908844947815,\n \"rps_doc_frac_chars_top_3gram\": 0.014613309875130653,\n \"rps_doc_frac_chars_top_4gram\": 0.013489210046827793,\n \"rps_doc_books_importance\": -444.70465087890625,\n \"rps_doc_books_importance_length_correction\": -444.70465087890625,\n \"rps_doc_openwebtext_importance\": -243.3387908935547,\n \"rps_doc_openwebtext_importance_length_correction\": -243.3387908935547,\n \"rps_doc_wikipedia_importance\": -235.6049346923828,\n \"rps_doc_wikipedia_importance_length_correction\": -235.6049346923828\n },\n \"fasttext\": {\n \"dclm\": 0.0038911099545657635,\n \"english\": 0.8681730628013611,\n \"fineweb_edu_approx\": 0.9535374641418457,\n \"eai_general_math\": 0.002461249940097332,\n \"eai_open_web_math\": 0.13984417915344238,\n \"eai_web_code\": 0.00010692999785533175\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"623.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"Military engineering and Marine engineering\"\n }\n },\n \"secondary\": {\n \"code\": \"640\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":167,"cells":{"id":{"kind":"number","value":7889963727485826000,"string":"7,889,963,727,485,826,000"},"text":{"kind":"string","value":"Category: Issue 89\n\nEditor’s Note: Winter Returns\n\nAre you willing to play?\n\nAs storm after storm pounds into California we are finally aware that the winter of 2016 is legit. For many of us, this presents a problem. The problem is that after a few lean winters we have grown lazy and unmotivated. As the Sierra snowpack continues to accumulate it’s almost like we don’t know what to do. Having spent so much time eulogizing about the death of winter and the good old days of skiing and riding in California it’s almost like we lost the ability to actually go skiing or riding anymore. Backcountry lines that haven’t been skied since 2011 are now just sitting there … waiting.\n\nCompounding the problem is that the surf has been incredible all up and down the coast. Spots that normally see small crumbly waves in the summer are now seeing relentless sets of grinding barrels day after …\n\nRead More\n\nEar to the Ground: February / March 2016\n\nOutdoor News and Notes for the California Region\n\nUSFS to Plant Trees in Rim Fire Burn Area\nThe US Forest Service is enlisting the help of all available stakeholders and members of the public to help plant 90,000 trees in the Rim Fire burn area this spring. In partnership with Tuolumne River Trust, the Stanislaus National Forest hosted public meetings in January to inform and recruit volunteers for tree planting days scheduled to take place seven days per week throughout the spring.\n\n2013’s Rim Fire burned over 257,000 acres on the Stanislaus National Forest. Forest scientists/specialists estimate that without reforestation it is highly unlikely the forest would grow back in our lifetimes. Anyone interested in helping to reforest the area is welcome – individuals, groups, families.\n\nFor more information, call the Stanislaus National Forest at (209) 532-3671 or the Tuolumne River Trust at (949) 533-2346.\n\n\nSteven Hemphill Returns to Sierra-at-Tahoe\n\nRead More\n\nTechnique Clinic: Winter Whitewater\n\nTips for cold weather paddling\n\nBy Haven Livingston\n\nWhen Buck Crocket and Brian Banks arrived to kayak the first spring run of Gore Canyon on the upper Colorado River and found that the banks were still iced over and so was one of the rapids, Crocket did what any resourceful multi-sport adventurer would do. He reached into his truck and pulled out his ice axe. Getting into the river would be a slide, but getting out would require mounting a few feet of overhanging ice and snow.\n\nPaddling under these conditions may seem like a masochistic task, but consider the benefits: Instead of sitting in traffic en route to the slopes to ski groomers, you sneak off the beaten path to a lower elevation river and have the entire flowing wonderland to yourself. Rivers on the northwest edge of California come alive with winter rains and glow with the …\n\nRead More\n\nEPiC: Protecting Mono Lake\n\nMono Lake Committee safeguards California gem\n\nWords by Leonie Sherman\nPhotos courtesy Mono Lake Committee\n\nOn the edge of Yosemite National Park, fifteen miles east of Tioga Pass, Mono Lake shimmers like a jewel amid the vast monochromatic expanse of the Great Basin. More than twice as salty as the ocean and over ten times as alkaline, the lake hosts hundreds of thousands of nesting migratory birds and up to 80% of the state’s nesting California Gulls. Most visitors passing through have no idea how close this rich ecosystem came to complete biological collapse.\n\n“Mono Lake is the most significant environmental success story of its time,” says Lisa Cutting, Eastern Sierra Policy Director for the Mono Lake Committee (MLC). Started almost forty years ago by a dedicated group of visionary graduate students, the MLC has grown to thirteen full-time staff and acts as the on-the-ground watchdog of the Mono …\n\nRead More\n\nRaising the Bar\n\nThe evolution of sports fuel\n\nBy Avery Robins\n\nRaisingBar-iStock_000014014805_Small\n\nWe haven’t always had a dizzying array of energy supplements to power us before, during and after a long trail run or mountain bike ride. It used to be that endurance athletes would refuel with Gatorade, bananas, or whatever else was in their fridge. That was until 1986, when Cal Berkeley track coach Brian Maxwell and his wife Jennifer began tinkering with the concept of the energy bar.\n\nBrian was having trouble bonking at the 21st mile mark during marathons, so the couple began experimenting with different recipes in their home kitchen to find a solution.\n\nThey started with a blender to mix ingredients like oat bran, milk proteins, fructose and maltodextrins into a thick sludge. The sludge would then cool into the more chewy consistency that we associate with sports bars today.\n\nAfter three years of experimentation the couple landed …\n\nRead More\n\nAthlete Profile: Big Wave Bianca\n\nCatching up with pro surfer Bianca Valenti\n\nBy Haven Livingston\n\nFor professional surfer Bianca Valenti the progression into surfing big waves comes naturally after 23 years at the sport. From the first scared moment of catching a stand up barrel, Valenti has been hooked on seeking bigger waves to satiate the desire for that same rush of adrenaline. Now a regular at the lineup at Mavericks, Valenti is progressing at a calculated pace to become one of the world’s top big wave women surfers.\n\nThe 5’4” Italian-American charger moonlights as an Italian wine specialist, following in the footsteps of her master sommelier grandfather and chef father at the family’s restaurant in Marin County. Though she can charm diners in Italian, Spanish or English, when it comes to the ocean, she’s just as fluent in nature’s universal language of power. Her thrills come from stepping outside of her comfort zone. …\n\nRead More\n\nOver the Mountain and through the Woods\n\nA look at classic cross country and skate skiing\n\nBy Avery Robins\n\nAre you looking to shake up your time in the mountains this winter season? Perhaps you are looking for a full body workout that fires up your core. Or, perhaps you need a break from the downhill ski scene, and are yearning for a way to soak in the tranquility of the backcountry. Look no further, because cross country sking could be the answer.\n\nModern cross country skiing is strikingly similar to the original form of skiing that was invented in Scandinavia over five thousand years ago. Nordic people strapped on what they called “skíðs” (the Old Norse word for “planks of wood”) in order to transport themselves across large distances of snowy terrain.\n\nBut don’t get us wrong, modern cross country skiing is no old school walk in the park. It is one of the most …\n\nRead More\n\nSnow Biking\n\nFat bikes open up a whole new world of two-wheeled adventures\n\nBy Dave Zook\n\nFat bikes are all the buzz. Those absurdly wide tires — sometimes over five inches of knobby, under-inflated width — does anyone know exactly what makes them so great? Regardless they are certainly hitting mass appeal as this variation on a traditional mountain bike has been growing steadily around California and the US for the last decade.\n\nMore brands than ever are manufacturing them, giving riders options formerly reserved for the MTB or road riding crowd. Full-suspension rides are offered for the most cushy of experiences and even fancy components like carbon wheel sets can lighten the load, depending on your riding style — and the size of your wallet.\n\nMany riders become believers due to the bike’s ability to make some terrain more accessible. The traction is the key here and they “float” over …\n\nRead More\n\nWinter Returns\n\nEl Niño gives Tahoe backcountry skiers a huge helping of powder\n\nWords and photos by Brennan Lagasse\n\n“I’m going to ski this super cautiously, island of safety to island of safety. Copy?”\n\n“Yes. I have eyes on,” my partner responds.\n\nSlowly, I dance my way into Emerald Chute, one of the most classic backcountry ski lines in the greater Tahoe area. Earlier in the day, Ming Poon and I had broken trail, methodically working our way up crystalline fields of powder until we crested the top of the line, which feeds directly into the iconic Emerald Bay. A couple of friends caught us as we were getting to the top, and together the four of us shared in one of the best runs any of us has experienced in our Tahoe backyard in at least four years. Our friends had to take off after that run, but Ming and …\n\nRead More\n\nPedaling the Wild\n\nThe quest to allow cycling in federally designated Wilderness\n\nBy Kurt Gensheimer\n\nBicycles in federally protected Wilderness. Depending on who you ask, this is a linchpin issue for the future of conservation or you’ll get a blank stare and a “what about it?” Regardless of the reaction, the topic has been emotionally charged for decades, and as a result, there has been a lot of misunderstanding surrounding the original intent of the Wilderness Act of 1964. The issue of bicycles in Wilderness was recently rekindled when the Boulder-White Clouds region of Idaho, a coveted gem of backcountry mountain biking for generations, was designated federal Wilderness this past summer, shutting out mountain bike use forever.\n\nDespite the fact that mountain bikes have been proven through numerous independent environmental studies to be as low-impact on trails as hiking and far lower impact than equestrian use, bicycles are still banned from 110 …\n\nRead More\n\nThe Bright Side of Suffering\n\nGravel grinder season kicks off\n\nBy Sarah Hansing\n\nWell, the holiday season is officially over. It was a glorious time of joyous celebrations and gratitude, festivities and feasts, family and … well, family.\n\nWhich is to say, togetherness. The type of togetherness that can – at times – make you want to end your lineage. Because family celebrations in real life somehow never quite follow the storyline of those heartwarming holiday specials that no one can collectively agree on watching as a family.\n\nIt goes something like this: Someone gets the short straw on hosting the meal. Extended family – who are absent the rest of the year – come together like flocks of politically, morally, and dietarily disagreeing birds. Due to the close quarters and possibly because of some minor incident that happened (perhaps involving Uncle Dave and his now ex-wife) cause a rift, which leads to an …\n\nRead More\n\nEvent Profiles: February / March 2016\n\nA sneak peek at some of the season’s best upcoming events\n\nEP-Banff-Paddle-for-the-North-03-Simon-Lucas\n\nBanff Mountain Film Festival\nFebruary 19-21, Santa Cruz\n\nNational Geographic and the North Face present the Banff Mountain Film Festival World Tour. Join UCSC Recreation and get set to explore the edge of believable with some of the best films from the Banff Mountain Film Festival as it brings amazing stories to the big screen at the Rio Theatre. Journey to exotic locations, paddle the wildest waters, and climb the highest peaks. Celebrate the 25th anniversary of bringing this event to Santa Cruz while also celebrating the 50th anniversary of UC Santa Cruz. This event benefits the UCSC Wilderness Orientation Scholarship Fund. Different films will be shown each night so come for one or all three shows.\n\nTickets are available at brownpapertickets.com or in person at Bicycle Trip in Santa Cruz.\n\nrecreation.ucsc.edu/banff.html\n\n\nEP-Alpenglow1-untitled-(6-of-21)\n\nAlpenglow Mountain Festival\nFebruary 20-28, Tahoe City…\n\nRead More\nLoading\n\nJoin the Tribe\n\nENO\n\nUpcoming Events\n\nWarrenMiller\n\nLike Us On Facebook\n\nENO\n\nRead past issues online\n\nissue85-ASJ\n\nIssue 85\n\nIssue 86\n\nIssue 86\n\nIssue 87\n\nIssue 87\n\nissue85-ASJ\n\nIssue 88\n\nIssue 86\n\nIssue 89\n\nIssue 87\n\nIssue 90\n\nFourWheel\n\nOur Sponsors\n\nWM_PreSale"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://adventuresportsjournal.com/category/archives/issue-89/\",\n \"source_domain\": \"adventuresportsjournal.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"111687\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:T4NH6NB3NWWR2JLSUDRFOZWULJKEKTPA\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-20T12:33:08Z\",\n \"WARC-IP-Address\": \"192.124.249.14\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:IAQNLZSMWND5XSIOXSCHGTH2COXAAKFN\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://adventuresportsjournal.com/category/archives/issue-89/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-180.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 19,\n 20,\n 50,\n 51,\n 76,\n 77,\n 677,\n 678,\n 887,\n 888,\n 898,\n 899,\n 940,\n 941,\n 990,\n 991,\n 1033,\n 1429,\n 1430,\n 1734,\n 1735,\n 1858,\n 1859,\n 1860,\n 1903,\n 1904,\n 1914,\n 1915,\n 1951,\n 1952,\n 1983,\n 1984,\n 2004,\n 2005,\n 2436,\n 2437,\n 2801,\n 2802,\n 2812,\n 2813,\n 2840,\n 2841,\n 2887,\n 2888,\n 2912,\n 2948,\n 2949,\n 3410,\n 3411,\n 3756,\n 3757,\n 3767,\n 3768,\n 3784,\n 3785,\n 3814,\n 3815,\n 3831,\n 3832,\n 3869,\n 3870,\n 4260,\n 4261,\n 4433,\n 4434,\n 4660,\n 4661,\n 4718,\n 4719,\n 4729,\n 4730,\n 4763,\n 4764,\n 4807,\n 4808,\n 4828,\n 4829,\n 5259,\n 5260,\n 5671,\n 5672,\n 5682,\n 5683,\n 5723,\n 5724,\n 5773,\n 5774,\n 5790,\n 5791,\n 6137,\n 6138,\n 6449,\n 6450,\n 6561,\n 6562,\n 6572,\n 6573,\n 6585,\n 6586,\n 6648,\n 6649,\n 6662,\n 6663,\n 7006,\n 7007,\n 7328,\n 7329,\n 7475,\n 7476,\n 7486,\n 7487,\n 7502,\n 7503,\n 7567,\n 7568,\n 7604,\n 7605,\n 7691,\n 7692,\n 7736,\n 7737,\n 8307,\n 8308,\n 8318,\n 8319,\n 8337,\n 8338,\n 8400,\n 8401,\n 8420,\n 8421,\n 9059,\n 9060,\n 9284,\n 9285,\n 9295,\n 9296,\n 9325,\n 9326,\n 9358,\n 9359,\n 9376,\n 9377,\n 9534,\n 9535,\n 9829,\n 9830,\n 10218,\n 10219,\n 10229,\n 10230,\n 10268,\n 10269,\n 10327,\n 10328,\n 10373,\n 10374,\n 10403,\n 10430,\n 10431,\n 11085,\n 11086,\n 11177,\n 11178,\n 11209,\n 11210,\n 11211,\n 11244,\n 11245,\n 11273,\n 11301,\n 11302,\n 11312,\n 11320,\n 11321,\n 11336,\n 11337,\n 11341,\n 11342,\n 11358,\n 11359,\n 11372,\n 11373,\n 11393,\n 11394,\n 11398,\n 11399,\n 11423,\n 11424,\n 11436,\n 11437,\n 11446,\n 11447,\n 11456,\n 11457,\n 11466,\n 11467,\n 11476,\n 11477,\n 11486,\n 11487,\n 11499,\n 11500,\n 11509,\n 11510,\n 11519,\n 11520,\n 11529,\n 11530,\n 11539,\n 11540,\n 11549,\n 11550,\n 11560,\n 11561,\n 11574,\n 11575\n ],\n \"line_end_idx\": [\n 19,\n 20,\n 50,\n 51,\n 76,\n 77,\n 677,\n 678,\n 887,\n 888,\n 898,\n 899,\n 940,\n 941,\n 990,\n 991,\n 1033,\n 1429,\n 1430,\n 1734,\n 1735,\n 1858,\n 1859,\n 1860,\n 1903,\n 1904,\n 1914,\n 1915,\n 1951,\n 1952,\n 1983,\n 1984,\n 2004,\n 2005,\n 2436,\n 2437,\n 2801,\n 2802,\n 2812,\n 2813,\n 2840,\n 2841,\n 2887,\n 2888,\n 2912,\n 2948,\n 2949,\n 3410,\n 3411,\n 3756,\n 3757,\n 3767,\n 3768,\n 3784,\n 3785,\n 3814,\n 3815,\n 3831,\n 3832,\n 3869,\n 3870,\n 4260,\n 4261,\n 4433,\n 4434,\n 4660,\n 4661,\n 4718,\n 4719,\n 4729,\n 4730,\n 4763,\n 4764,\n 4807,\n 4808,\n 4828,\n 4829,\n 5259,\n 5260,\n 5671,\n 5672,\n 5682,\n 5683,\n 5723,\n 5724,\n 5773,\n 5774,\n 5790,\n 5791,\n 6137,\n 6138,\n 6449,\n 6450,\n 6561,\n 6562,\n 6572,\n 6573,\n 6585,\n 6586,\n 6648,\n 6649,\n 6662,\n 6663,\n 7006,\n 7007,\n 7328,\n 7329,\n 7475,\n 7476,\n 7486,\n 7487,\n 7502,\n 7503,\n 7567,\n 7568,\n 7604,\n 7605,\n 7691,\n 7692,\n 7736,\n 7737,\n 8307,\n 8308,\n 8318,\n 8319,\n 8337,\n 8338,\n 8400,\n 8401,\n 8420,\n 8421,\n 9059,\n 9060,\n 9284,\n 9285,\n 9295,\n 9296,\n 9325,\n 9326,\n 9358,\n 9359,\n 9376,\n 9377,\n 9534,\n 9535,\n 9829,\n 9830,\n 10218,\n 10219,\n 10229,\n 10230,\n 10268,\n 10269,\n 10327,\n 10328,\n 10373,\n 10374,\n 10403,\n 10430,\n 10431,\n 11085,\n 11086,\n 11177,\n 11178,\n 11209,\n 11210,\n 11211,\n 11244,\n 11245,\n 11273,\n 11301,\n 11302,\n 11312,\n 11320,\n 11321,\n 11336,\n 11337,\n 11341,\n 11342,\n 11358,\n 11359,\n 11372,\n 11373,\n 11393,\n 11394,\n 11398,\n 11399,\n 11423,\n 11424,\n 11436,\n 11437,\n 11446,\n 11447,\n 11456,\n 11457,\n 11466,\n 11467,\n 11476,\n 11477,\n 11486,\n 11487,\n 11499,\n 11500,\n 11509,\n 11510,\n 11519,\n 11520,\n 11529,\n 11530,\n 11539,\n 11540,\n 11549,\n 11550,\n 11560,\n 11561,\n 11574,\n 11575,\n 11585\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 11585,\n \"ccnet_original_nlines\": 217,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 1,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3826322853565216,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.009950250387191772,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.050458721816539764,\n \"rps_doc_frac_no_alph_words\": 0.13025780022144318,\n \"rps_doc_frac_unique_words\": 0.4760914742946625,\n \"rps_doc_mean_word_length\": 4.86018705368042,\n \"rps_doc_num_sentences\": 77,\n \"rps_doc_symbol_to_word_ratio\": 0.005879689939320087,\n \"rps_doc_unigram_entropy\": 6.060111999511719,\n \"rps_doc_word_count\": 1924,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.01154956966638565,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.00908994022756815,\n \"rps_doc_frac_chars_top_3gram\": 0.009624640457332134,\n \"rps_doc_frac_chars_top_4gram\": 0.008662180043756962,\n \"rps_doc_books_importance\": -855.8555297851562,\n \"rps_doc_books_importance_length_correction\": -855.8555297851562,\n \"rps_doc_openwebtext_importance\": -542.3984985351562,\n \"rps_doc_openwebtext_importance_length_correction\": -542.3984985351562,\n \"rps_doc_wikipedia_importance\": -422.8210144042969,\n \"rps_doc_wikipedia_importance_length_correction\": -422.8210144042969\n },\n \"fasttext\": {\n \"dclm\": 0.0005754199810326099,\n \"english\": 0.944472074508667,\n \"fineweb_edu_approx\": 1.4532874822616577,\n \"eai_general_math\": 0.0018844599835574627,\n \"eai_open_web_math\": 0.09883003681898117,\n \"eai_web_code\": 0.00016803000471554697\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.5\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"333.91\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Land use\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":168,"cells":{"id":{"kind":"number","value":-1085386193308495000,"string":"-1,085,386,193,308,495,000"},"text":{"kind":"string","value":"Jump to content\n\n\nHoliday Ops Discounts\n\n\n • Please log in to reply\n5 replies to this topic\n\nJamadeus #1 Posted 14 January 2019 - 04:01 PM\n\n Staff Sergeant\n\n • Player\n • 21220 battles\n • 327\n • [LOC-A] LOC-A\n • Member since:\n 02-19-2015\n\nHave I missed the discounts? On this page it says\n\n \n\nBlock Quote\n\n You can choose a vehicle for the discount until the release of Update 1.4\n\n \n\nBut obviously the festive garage is now gone, so there is no dropdown. It would be most annoying to miss out on all those credits.\n\nGeno1isme #2 Posted 14 January 2019 - 04:07 PM\n\n Field Marshal\n\n • Player\n • 48103 battles\n • 10,223\n • [TRYIT] TRYIT\n • Member since:\n 09-03-2013\n\nView PostJamadeus, on 14 January 2019 - 05:01 PM, said:\n\nHave I missed the discounts? On this page it says\n\n \n\n \n\nBut obviously the festive garage is now gone, so there is no dropdown. It would be most annoying to miss out on all those credits.\n\n \n\nWhen you log into the client you'll get a notification about unused Holiday Ops rewards with a button that takes you to the interface where you can assign the discounts.\n\nJamadeus #3 Posted 14 January 2019 - 04:10 PM\n\n Staff Sergeant\n\n • Player\n • 21220 battles\n • 327\n • [LOC-A] LOC-A\n • Member since:\n 02-19-2015\n\nOkay, I put my spectacles on and found it. Bottom right hand side, notifications, ⓘ .\n\nThanks Geno1isme.\n\n \n\n\nEdited by Jamadeus, 14 January 2019 - 04:18 PM.\n\n\nTungstenHitman #4 Posted 14 January 2019 - 04:13 PM\n\n Major General\n\n • Player\n • 30631 battles\n • 5,764\n • Member since:\n 08-28-2016\n\nThat's why I just slapped any unused ones onto the Italian tech tree just in case.\n\n \n\nT10 - FV something something new death star S-barn thingy\n\nT9- Conway, bought it, still semi-stock.\n\nT8- Italian \n\nT7-Italian \n\nT6-Italian \n\nT5- T-34(Russian) bought it, put 2 marks on it, hated it so much, rage sold it again\n\nT4- Italian. Bought it, 7-8 battles from stock to complete grind and unlocked T5. Sold it.(nice tank for a T4 btw))\n\n15:15 Added after 1 minute\nO and didn't bother assigning T1-T3 since I don't care, free xp passed those tanks anyway and they're practically free anyway. If the option is still there later I might just use them and sell for a little extra credits... might be worth 1 shot of premium ammo lol\n\nLorensoth #5 Posted 14 January 2019 - 05:50 PM\n\n Staff Sergeant\n\n • Player\n • 21029 battles\n • 335\n • Member since:\n 06-17-2011\n\nI was wondering same. After reading this, apperantly, i have crews sitting there, but still can't find place to apply my discounts.\n\n \n\nEdit; ok figured out, you get message about using discount once login, so if you need to use discount, try reloging to game, message should be at where after battle reports shown.\n\n\nEdited by Lorensoth, 14 January 2019 - 06:48 PM.\n\n\nFU7D0M3 #6 Posted 19 January 2019 - 12:04 PM\n\n Private\n\n • Player\n • 18067 battles\n • 14\n • Member since:\n 12-27-2013\n\nCheck here, the guy below shows the right place with a picture\n\n \n\nhttp://forum.worldof...anks-discounts/\n\n\n\n\n\n\n1 user(s) are reading this topic\n\n0 members, 0 guests, 0 anonymous users"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://forum.worldoftanks.eu/index.php?/topic/696894-holiday-ops-discounts/\",\n \"source_domain\": \"forum.worldoftanks.eu\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"66862\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:TSBRJOHETAHM7YNXOLTKKUO4UHA2EFNP\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-18T20:38:11Z\",\n \"WARC-IP-Address\": \"92.223.20.126\",\n \"WARC-Identified-Payload-Type\": \"application/xhtml+xml\",\n \"WARC-Payload-Digest\": \"sha1:L2D3HDJQ2OWXRAIJKGEZVVDJJ5Z36EHO\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://forum.worldoftanks.eu/index.php?/topic/696894-holiday-ops-discounts/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-47.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 16,\n 17,\n 18,\n 40,\n 41,\n 42,\n 69,\n 93,\n 94,\n 140,\n 141,\n 160,\n 161,\n 172,\n 190,\n 198,\n 216,\n 234,\n 249,\n 250,\n 300,\n 301,\n 303,\n 304,\n 316,\n 317,\n 392,\n 393,\n 395,\n 396,\n 527,\n 528,\n 575,\n 576,\n 594,\n 595,\n 606,\n 624,\n 635,\n 653,\n 671,\n 686,\n 687,\n 743,\n 744,\n 794,\n 795,\n 797,\n 798,\n 800,\n 801,\n 932,\n 933,\n 935,\n 936,\n 1106,\n 1107,\n 1153,\n 1154,\n 1173,\n 1174,\n 1185,\n 1203,\n 1211,\n 1229,\n 1247,\n 1262,\n 1263,\n 1349,\n 1350,\n 1368,\n 1369,\n 1371,\n 1372,\n 1373,\n 1421,\n 1422,\n 1423,\n 1475,\n 1476,\n 1494,\n 1495,\n 1506,\n 1524,\n 1534,\n 1552,\n 1567,\n 1568,\n 1651,\n 1652,\n 1654,\n 1655,\n 1713,\n 1714,\n 1755,\n 1756,\n 1769,\n 1770,\n 1782,\n 1783,\n 1795,\n 1796,\n 1881,\n 1882,\n 1998,\n 1999,\n 2026,\n 2291,\n 2292,\n 2339,\n 2340,\n 2359,\n 2360,\n 2371,\n 2389,\n 2397,\n 2415,\n 2430,\n 2431,\n 2563,\n 2564,\n 2566,\n 2567,\n 2747,\n 2748,\n 2749,\n 2798,\n 2799,\n 2800,\n 2845,\n 2846,\n 2858,\n 2859,\n 2870,\n 2888,\n 2895,\n 2913,\n 2928,\n 2929,\n 2992,\n 2993,\n 2995,\n 2996,\n 3035,\n 3036,\n 3037,\n 3038,\n 3039,\n 3040,\n 3041,\n 3074,\n 3075\n ],\n \"line_end_idx\": [\n 16,\n 17,\n 18,\n 40,\n 41,\n 42,\n 69,\n 93,\n 94,\n 140,\n 141,\n 160,\n 161,\n 172,\n 190,\n 198,\n 216,\n 234,\n 249,\n 250,\n 300,\n 301,\n 303,\n 304,\n 316,\n 317,\n 392,\n 393,\n 395,\n 396,\n 527,\n 528,\n 575,\n 576,\n 594,\n 595,\n 606,\n 624,\n 635,\n 653,\n 671,\n 686,\n 687,\n 743,\n 744,\n 794,\n 795,\n 797,\n 798,\n 800,\n 801,\n 932,\n 933,\n 935,\n 936,\n 1106,\n 1107,\n 1153,\n 1154,\n 1173,\n 1174,\n 1185,\n 1203,\n 1211,\n 1229,\n 1247,\n 1262,\n 1263,\n 1349,\n 1350,\n 1368,\n 1369,\n 1371,\n 1372,\n 1373,\n 1421,\n 1422,\n 1423,\n 1475,\n 1476,\n 1494,\n 1495,\n 1506,\n 1524,\n 1534,\n 1552,\n 1567,\n 1568,\n 1651,\n 1652,\n 1654,\n 1655,\n 1713,\n 1714,\n 1755,\n 1756,\n 1769,\n 1770,\n 1782,\n 1783,\n 1795,\n 1796,\n 1881,\n 1882,\n 1998,\n 1999,\n 2026,\n 2291,\n 2292,\n 2339,\n 2340,\n 2359,\n 2360,\n 2371,\n 2389,\n 2397,\n 2415,\n 2430,\n 2431,\n 2563,\n 2564,\n 2566,\n 2567,\n 2747,\n 2748,\n 2749,\n 2798,\n 2799,\n 2800,\n 2845,\n 2846,\n 2858,\n 2859,\n 2870,\n 2888,\n 2895,\n 2913,\n 2928,\n 2929,\n 2992,\n 2993,\n 2995,\n 2996,\n 3035,\n 3036,\n 3037,\n 3038,\n 3039,\n 3040,\n 3041,\n 3074,\n 3075,\n 3113\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 3113,\n \"ccnet_original_nlines\": 152,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2632331848144531,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.06008584052324295,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3605150282382965,\n \"rps_doc_frac_unique_words\": 0.501937985420227,\n \"rps_doc_mean_word_length\": 4.3643412590026855,\n \"rps_doc_num_sentences\": 26,\n \"rps_doc_symbol_to_word_ratio\": 0.011444919742643833,\n \"rps_doc_unigram_entropy\": 5.169025897979736,\n \"rps_doc_word_count\": 516,\n \"rps_doc_frac_chars_dupe_10grams\": 0.1865008920431137,\n \"rps_doc_frac_chars_dupe_5grams\": 0.19671402871608734,\n \"rps_doc_frac_chars_dupe_6grams\": 0.19671402871608734,\n \"rps_doc_frac_chars_dupe_7grams\": 0.1865008920431137,\n \"rps_doc_frac_chars_dupe_8grams\": 0.1865008920431137,\n \"rps_doc_frac_chars_dupe_9grams\": 0.1865008920431137,\n \"rps_doc_frac_chars_top_2gram\": 0.043960921466350555,\n \"rps_doc_frac_chars_top_3gram\": 0.04618116840720177,\n \"rps_doc_frac_chars_top_4gram\": 0.04218472167849541,\n \"rps_doc_books_importance\": -291.3363952636719,\n \"rps_doc_books_importance_length_correction\": -291.3363952636719,\n \"rps_doc_openwebtext_importance\": -190.68763732910156,\n \"rps_doc_openwebtext_importance_length_correction\": -190.68763732910156,\n \"rps_doc_wikipedia_importance\": -127.6866226196289,\n \"rps_doc_wikipedia_importance_length_correction\": -127.6866226196289\n },\n \"fasttext\": {\n \"dclm\": -0.000005479999799717916,\n \"english\": 0.9099408388137817,\n \"fineweb_edu_approx\": 0.9240398406982422,\n \"eai_general_math\": 0.0012130100512877107,\n \"eai_open_web_math\": 0.351894736289978,\n \"eai_web_code\": -0.000009540000064589549\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"794.8\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"labels\": {\n \"level_1\": \"\",\n \"level_2\": \"\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"18\",\n \"label\": \"Q&A Forum\"\n },\n \"secondary\": {\n \"code\": \"21\",\n \"label\": \"Customer Support\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":169,"cells":{"id":{"kind":"number","value":-7536225689327196000,"string":"-7,536,225,689,327,196,000"},"text":{"kind":"string","value":"Cushions\n\nCushion crush! These beauties have been handwoven by artisans using traditional techniques and the finest wools, cottons and metallic threads.\n48 results\nTRIBE CUSHION BLUSH/TAN\nCALYPSO ROUND CUSHION BLUE/CORAL/TAN\nHARLEQUIN RECTANGULAR CUSHION\nSHIMMER CUSHION\nSHIMMER CUSHION\n$139.00\nMexicola Cushion\nDESERT BOLSTER CUSHION TAN AND FUSCHIA\nCLEO CUSHION\nCLEO CUSHION\n$175.00\nPaz Silver Cushion\nSale\nPaz Silver Cushion\n$75.00 $125.00\nPOPPY PEACHY CUSHION\nTRIANGLE SHAG CUSHION\nSHAG DIAMOND SILVER CUSHION\nVIVIAN CUSHION BLACK AND WHITE\n\n48 results\n\nContinue shopping\nYour Order\n\nYou have no items in your cart"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://langdonltd.com.au/collections/frontpage?page=3\",\n \"source_domain\": \"langdonltd.com.au\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"85712\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:62XF363ISHL346N6N7ZODJYNQHR3TLVF\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-21T17:17:37Z\",\n \"WARC-IP-Address\": \"23.227.38.32\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:CM3V5KKUQ2TUJD75UYFVT2ZLHZRX6727\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://langdonltd.com.au/collections/frontpage?page=3\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-173.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 9,\n 10,\n 153,\n 164,\n 188,\n 225,\n 255,\n 271,\n 287,\n 295,\n 312,\n 351,\n 364,\n 377,\n 385,\n 404,\n 409,\n 428,\n 443,\n 464,\n 486,\n 514,\n 545,\n 546,\n 557,\n 558,\n 576,\n 587,\n 588\n ],\n \"line_end_idx\": [\n 9,\n 10,\n 153,\n 164,\n 188,\n 225,\n 255,\n 271,\n 287,\n 295,\n 312,\n 351,\n 364,\n 377,\n 385,\n 404,\n 409,\n 428,\n 443,\n 464,\n 486,\n 514,\n 545,\n 546,\n 557,\n 558,\n 576,\n 587,\n 588,\n 618\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 618,\n \"ccnet_original_nlines\": 29,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.10091742873191833,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.38532111048698425,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.22018349170684814,\n \"rps_doc_frac_unique_words\": 0.6818181872367859,\n \"rps_doc_mean_word_length\": 5.829545497894287,\n \"rps_doc_num_sentences\": 7,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.746737003326416,\n \"rps_doc_word_count\": 88,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.0760233923792839,\n \"rps_doc_frac_chars_top_3gram\": 0.08187135308980942,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -46.65186309814453,\n \"rps_doc_books_importance_length_correction\": -59.362632751464844,\n \"rps_doc_openwebtext_importance\": -29.511985778808594,\n \"rps_doc_openwebtext_importance_length_correction\": -42.222755432128906,\n \"rps_doc_wikipedia_importance\": -27.733257293701172,\n \"rps_doc_wikipedia_importance_length_correction\": -40.444026947021484\n },\n \"fasttext\": {\n \"dclm\": 0.0015948399668559432,\n \"english\": 0.6462141871452332,\n \"fineweb_edu_approx\": 0.402728408575058,\n \"eai_general_math\": 0.00010920000204350799,\n \"eai_open_web_math\": 0.009312509559094906,\n \"eai_web_code\": 0.000010130000191566069\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"647.9\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"Household employees, Caterers and catering, and Real estate management\"\n }\n },\n \"secondary\": {\n \"code\": \"746.9\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Drawing, Decoration and ornament, and Design\",\n \"level_3\": \"Needlework and Fancy work\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"15\",\n \"label\": \"E-Commerce/Marketplace\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":170,"cells":{"id":{"kind":"number","value":8155786734375173000,"string":"8,155,786,734,375,173,000"},"text":{"kind":"string","value":"ARLHS\n\nKolaka (Sulawesi) Light\n\nARLHS IDO-367\n\nARLHS\n\nARLHS World List of Lights (WLOL)\n\n\n\nLocated in Indonesia Call Area\n\nAdd a photograph\n\nDetails\nAlso Known As:\nARLHS IDO 367, IDO-367, IDO 367\nApproximate Coordinates\nLAT: 04° 03' S\nLON: 121° 36' E\nPlease Help Us Refine these Coordinates\nMap Link - KML\nMaidenhead Coordinates\naka 'Gridsquare'\nPI05\nStructure removed, relocated, destroyed or otherwise lost? no\nListed in the World List of Lights since\n2006-06-01\nGoogle Map in New Window\nRed Lighthouse Map Icon\nApprox. Location\nyellow Lighthouse Map Icon\nLocation Report Received\nGreen Lighthouse Map Icon\nLocation Verified\n\nCircle shows 1000m radius from light\n\nThis record modified May 12, 2008. - Feedback to the WLOL Maintainer\n\nAmateur radio activity for this Lighthouse\nStart DateEnd DateCallsignNotes\nNo Activations Known - Please add below\nAdd a past, current or future operation.\nActivation Start Date - YYYY-MM-DD\nActivation End Date - YYYY-MM-DD\n(only if multiple days)\nCallsign of activator\nNotes\n\nThe information contained within the ARLHS World List of Lights is Copyright 2003-2019 ARLHS, LLC.\nVisit ARLHS for usage information.\n\nDatabase HTML Rendering Programs, MySQL Schema and Web Site Content (excluding the actual lighthouse data)\nCopyright 2006-2019 John Huggins\nPHP/MySQL Database Engine: $Revision: 1.88 $\nLighthouse Display Program: $Revision: 1.49 $"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://wlol.arlhs.com/lighthouse/IDO367.html\",\n \"source_domain\": \"wlol.arlhs.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"10775\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:MAHH6YRPBQVC6NB5EQKSWCOMNTTQQMTK\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-18T06:06:22Z\",\n \"WARC-IP-Address\": \"184.106.236.246\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:ZXAPT44STQGOV7VJNQZLXVN7I3XMSIQS\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://wlol.arlhs.com/lighthouse/IDO367.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-173.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 6,\n 7,\n 31,\n 32,\n 46,\n 47,\n 53,\n 54,\n 88,\n 89,\n 90,\n 91,\n 122,\n 123,\n 140,\n 141,\n 149,\n 164,\n 196,\n 220,\n 235,\n 251,\n 291,\n 306,\n 329,\n 346,\n 351,\n 413,\n 454,\n 465,\n 490,\n 514,\n 531,\n 558,\n 583,\n 609,\n 627,\n 628,\n 665,\n 666,\n 735,\n 736,\n 779,\n 811,\n 851,\n 892,\n 927,\n 960,\n 984,\n 1006,\n 1012,\n 1013,\n 1112,\n 1147,\n 1148,\n 1255,\n 1288,\n 1333\n ],\n \"line_end_idx\": [\n 6,\n 7,\n 31,\n 32,\n 46,\n 47,\n 53,\n 54,\n 88,\n 89,\n 90,\n 91,\n 122,\n 123,\n 140,\n 141,\n 149,\n 164,\n 196,\n 220,\n 235,\n 251,\n 291,\n 306,\n 329,\n 346,\n 351,\n 413,\n 454,\n 465,\n 490,\n 514,\n 531,\n 558,\n 583,\n 609,\n 627,\n 628,\n 665,\n 666,\n 735,\n 736,\n 779,\n 811,\n 851,\n 892,\n 927,\n 960,\n 984,\n 1006,\n 1012,\n 1013,\n 1112,\n 1147,\n 1148,\n 1255,\n 1288,\n 1333,\n 1378\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1378,\n \"ccnet_original_nlines\": 58,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.1111111119389534,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.10740741342306137,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2888889014720917,\n \"rps_doc_frac_unique_words\": 0.7049999833106995,\n \"rps_doc_mean_word_length\": 5.514999866485596,\n \"rps_doc_num_sentences\": 9,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.782726287841797,\n \"rps_doc_word_count\": 200,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.039891209453344345,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.024478690698742867,\n \"rps_doc_frac_chars_top_3gram\": 0.029918400570750237,\n \"rps_doc_frac_chars_top_4gram\": 0.0462375283241272,\n \"rps_doc_books_importance\": -140.6638641357422,\n \"rps_doc_books_importance_length_correction\": -140.66099548339844,\n \"rps_doc_openwebtext_importance\": -77.10444641113281,\n \"rps_doc_openwebtext_importance_length_correction\": -77.10444641113281,\n \"rps_doc_wikipedia_importance\": -42.19860076904297,\n \"rps_doc_wikipedia_importance_length_correction\": -41.17239761352539\n },\n \"fasttext\": {\n \"dclm\": 0.00003396999818505719,\n \"english\": 0.7207417488098145,\n \"fineweb_edu_approx\": 1.450924277305603,\n \"eai_general_math\": -0.000007269999969139462,\n \"eai_open_web_math\": 0.07250093668699265,\n \"eai_web_code\": 0.00001109000004362315\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"623.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"Military engineering and Marine engineering\"\n }\n },\n \"secondary\": {\n \"code\": \"959.8\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Asia\",\n \"level_3\": \"Southeast Asia\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":171,"cells":{"id":{"kind":"number","value":1800272364776291800,"string":"1,800,272,364,776,291,800"},"text":{"kind":"string","value":"List Rental - Statlistics\n\nProgressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database\n\nThe Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database reaches beef and dairy cattle producers who turn to Progressive Publishing to deliver practical tips, relevant news, cutting edge technology, and resources within the beef and dairy cattle industries.\n\nSEGMENTSSELECTS\n\nSELECTS\n\n40,483 Total Universe / Universe Rate $160.00/M\n40,483 Active Subscribers\n\nDESCRIPTION\n\nThe Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database reaches beef and dairy cattle producers who turn to Progressive Publishing to deliver practical tips, relevant news, cutting edge technology, and resources within the beef and dairy cattle industries.  To make informed business and purchasing decisions, these professionals read Progressive Publishing magazines to receive timely data on market statistics, industry trends, herd management, and new product developments within the farm and ranch industry.\n\n \n\nThey rely on Progressive Dairyman, Progressive Cattleman, Progressive Forage Growers, and El Lechero magazines to provide informative topics on operational and managerial success. Informational articles from veterinarians, producers, and professors provide insight into breeding, calf and heifer raising, consumer consumption trends, bull management, range and pasture management, herd health, and nutrition.\n\n \n\nResponsive to marketing offers that give them viable solutions in a highly competitive industry, these producers purchase the products and services they need to effectively manage and expand their operations. They purchase products like farm and ranch apparel, barn supplies, 4-wheelers, livestock medical supplies, feed, livestock supplements, fencing supplies, vaccines, gates, ID tags, castration supplies, disinfectants, wormers, ropes, branding equipment, milking buckets, milker cleaning equipment, udder care, pumps, regulators, gauges, stalls, milk stands, hay and alfalfa, milk storage, tractors, cooling tanks, muck boots, and barn cooling fans to ensure profitability in their livelihood as cattlemen and dairymen. \n\n \n\nProducers in the Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database are receptive to marketing offers from work-wear clothiers, industry trade publications, software providers, computer manufacturers, agricultural equipment providers, livestock accessory suppliers, farm and ranch suppliers, office supply providers, trade show organizers, feed stores, financial and lending institutions, and continuing education providers.\n\nORDERING INSTRUCTIONS\n\n \n\nSELECTS\n\nState $15.00/M\nSCF $15.00/M\nZip $15.00/M\n\nADDRESSING\n\nKey Coding $3.50/M\nP/S Labels $15.00/M\nRun Charges $10.00/M\nEmail/FTP $100.00/F\n\n \n\n "},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.statlistics.com/mailing-lists/progressive-publishing-cattle-calves-heifers-and-dairy-cow-professionals-database.html\",\n \"source_domain\": \"www.statlistics.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"9440\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:CRCSXP46HCPM7XJGJGE66TZ7G5DVJMHH\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-18T11:32:34Z\",\n \"WARC-IP-Address\": \"50.204.49.200\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:CQJBOPLNK4RGPNP553KIKXVM3M4FJEKW\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.statlistics.com/mailing-lists/progressive-publishing-cattle-calves-heifers-and-dairy-cow-professionals-database.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-47.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 26,\n 27,\n 111,\n 112,\n 401,\n 402,\n 418,\n 419,\n 427,\n 428,\n 476,\n 502,\n 503,\n 515,\n 516,\n 1060,\n 1061,\n 1063,\n 1064,\n 1473,\n 1474,\n 1476,\n 1477,\n 2204,\n 2205,\n 2207,\n 2208,\n 2666,\n 2667,\n 2689,\n 2690,\n 2692,\n 2693,\n 2701,\n 2702,\n 2717,\n 2730,\n 2743,\n 2744,\n 2755,\n 2756,\n 2775,\n 2795,\n 2816,\n 2836,\n 2837,\n 2839,\n 2840\n ],\n \"line_end_idx\": [\n 26,\n 27,\n 111,\n 112,\n 401,\n 402,\n 418,\n 419,\n 427,\n 428,\n 476,\n 502,\n 503,\n 515,\n 516,\n 1060,\n 1061,\n 1063,\n 1064,\n 1473,\n 1474,\n 1476,\n 1477,\n 2204,\n 2205,\n 2207,\n 2208,\n 2666,\n 2667,\n 2689,\n 2690,\n 2692,\n 2693,\n 2701,\n 2702,\n 2717,\n 2730,\n 2743,\n 2744,\n 2755,\n 2756,\n 2775,\n 2795,\n 2816,\n 2836,\n 2837,\n 2839,\n 2840,\n 2841\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2841,\n \"ccnet_original_nlines\": 48,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.14198783040046692,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.040567949414253235,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2636916935443878,\n \"rps_doc_frac_unique_words\": 0.5635359287261963,\n \"rps_doc_mean_word_length\": 6.447513580322266,\n \"rps_doc_num_sentences\": 17,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.939629077911377,\n \"rps_doc_word_count\": 362,\n \"rps_doc_frac_chars_dupe_10grams\": 0.2712082266807556,\n \"rps_doc_frac_chars_dupe_5grams\": 0.2712082266807556,\n \"rps_doc_frac_chars_dupe_6grams\": 0.2712082266807556,\n \"rps_doc_frac_chars_dupe_7grams\": 0.2712082266807556,\n \"rps_doc_frac_chars_dupe_8grams\": 0.2712082266807556,\n \"rps_doc_frac_chars_dupe_9grams\": 0.2712082266807556,\n \"rps_doc_frac_chars_top_2gram\": 0.027420740574598312,\n \"rps_doc_frac_chars_top_3gram\": 0.04627249017357826,\n \"rps_doc_frac_chars_top_4gram\": 0.05655527114868164,\n \"rps_doc_books_importance\": -192.91615295410156,\n \"rps_doc_books_importance_length_correction\": -192.91615295410156,\n \"rps_doc_openwebtext_importance\": -151.30364990234375,\n \"rps_doc_openwebtext_importance_length_correction\": -151.30364990234375,\n \"rps_doc_wikipedia_importance\": -112.93760681152344,\n \"rps_doc_wikipedia_importance_length_correction\": -112.93760681152344\n },\n \"fasttext\": {\n \"dclm\": 0.0227468591183424,\n \"english\": 0.8664919137954712,\n \"fineweb_edu_approx\": 1.6260273456573486,\n \"eai_general_math\": 0.0005105099990032613,\n \"eai_open_web_math\": 0.007977190427482128,\n \"eai_web_code\": 0.0029504899866878986\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"636.2\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Agriculture\",\n \"level_3\": \"Domestic animals and Pets\"\n }\n },\n \"secondary\": {\n \"code\": \"658.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":172,"cells":{"id":{"kind":"number","value":5118403867508051000,"string":"5,118,403,867,508,051,000"},"text":{"kind":"string","value":"Narcotics Anonymous UK\n\nHelpline: 10.00am - midnight\n0300 999 1212\n\nBangor\n\nTo tell us about changes to this meeting, please press the NEW DRAFT tab (above when logged in). Click here for an illustrated guide\n\nMonday\n12:00 pm\nMonday lunchtime meeting Group\nClassroom\nPenrhyn House\nLlandegai Road\nBangor\nGwynedd County\nWales\nLL57 1PZ\nOpen meeting.\nArea: \nNW England & N Wales Area\n\nMeeting Format\n\n\"Open to all\"\nCandlelight\nLiving Clean Study\nWheelchair Accessible? : \nNo\nLength of meeting: \n1 hour 30 mins\nTrain stations: \nBangor\nPostcode: \nLlandegai Road\nBangor LL57 1PZ\nCustomize This"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://ukna.org/meeting/bangor-0\",\n \"source_domain\": \"ukna.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"55098\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:CXK3X5LRKCPQCXFEWAFCWE3UKVRYB5U2\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-16T10:10:03Z\",\n \"WARC-IP-Address\": \"104.25.226.4\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:NCH7S564CDPRLCUWTRVGJEKGC6G4VR5I\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://ukna.org/meeting/bangor-0\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-192.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 23,\n 24,\n 53,\n 67,\n 68,\n 75,\n 76,\n 209,\n 210,\n 217,\n 226,\n 257,\n 267,\n 281,\n 296,\n 303,\n 318,\n 324,\n 333,\n 347,\n 354,\n 380,\n 381,\n 396,\n 397,\n 411,\n 423,\n 442,\n 468,\n 471,\n 491,\n 506,\n 523,\n 530,\n 541,\n 556,\n 572\n ],\n \"line_end_idx\": [\n 23,\n 24,\n 53,\n 67,\n 68,\n 75,\n 76,\n 209,\n 210,\n 217,\n 226,\n 257,\n 267,\n 281,\n 296,\n 303,\n 318,\n 324,\n 333,\n 347,\n 354,\n 380,\n 381,\n 396,\n 397,\n 411,\n 423,\n 442,\n 468,\n 471,\n 491,\n 506,\n 523,\n 530,\n 541,\n 556,\n 572,\n 586\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 586,\n \"ccnet_original_nlines\": 37,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.15596330165863037,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.08256880939006805,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2293577939271927,\n \"rps_doc_frac_unique_words\": 0.800000011920929,\n \"rps_doc_mean_word_length\": 5.166666507720947,\n \"rps_doc_num_sentences\": 5,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.1735334396362305,\n \"rps_doc_word_count\": 90,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.055913981050252914,\n \"rps_doc_frac_chars_top_3gram\": 0.08172042667865753,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -41.139251708984375,\n \"rps_doc_books_importance_length_correction\": -55.347476959228516,\n \"rps_doc_openwebtext_importance\": -16.993350982666016,\n \"rps_doc_openwebtext_importance_length_correction\": -31.20157814025879,\n \"rps_doc_wikipedia_importance\": -17.773611068725586,\n \"rps_doc_wikipedia_importance_length_correction\": -31.98183822631836\n },\n \"fasttext\": {\n \"dclm\": -0.000007870000445109326,\n \"english\": 0.6455252766609192,\n \"fineweb_edu_approx\": 0.5750917792320251,\n \"eai_general_math\": 0.000014539999938278925,\n \"eai_open_web_math\": 0.0064940499141812325,\n \"eai_web_code\": -0.000009420000424142927\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"362.29285\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Hospitals, Asylums, and Human services\"\n }\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"labels\": {\n \"level_1\": \"\",\n \"level_2\": \"\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"20\",\n \"label\": \"Structured Data\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":173,"cells":{"id":{"kind":"number","value":5423643082984752000,"string":"5,423,643,082,984,752,000"},"text":{"kind":"string","value":"New Subaru Ascent Olathe KS 66061\n\n\nSubaru Ascent Limited 8-Passenger\n\nThe 2020 Subaru Ascent. Under the hood you'll find a 4 cylinder engine with more than 200 horsepower, and all wheel drive keeps this model firmly attached to the road surface. Well tuned suspension and stability control deliver a spirited, yet composed, ride and drive Turbocharger technology provides forced air induction, enhancing performance while preserving fuel economy. Subaru infused the interior with top shelf amenities, such as: variably intermittent wipers, adjustable headrests in all seating positions, an automatic dimming rear-view mirror, heated front and rear seats, air conditioning, heated steering wheel, and power seats. Subaru also prioritized safety and security with features such as: head curtain airbags, front side impact airbags, traction control, brake assist, a security system, an emergency communication system, and 4 wheel disc brakes with ABS. Adaptive cruise control maintains a pre set distance behind the car ahead of you, simplifying highway driving and enhancing safety. Our experienced sales staff is eager to share its knowledge and enthusiasm with you. They'll work with you to find the right vehicle at a price you can afford. Please don't hesitate to give us a call.\n\nTags: Subaru, New, SUV, Ascent\n\n* Although every reasonable effort has been made to ensure the accuracy of the information contained on this site, absolute accuracy cannot be guaranteed. This site, and all information and materials appearing on it, are presented to the user \"as is\" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, title or non-infringement. All vehicles are subject to prior sale. Price does not include applicable tax, title, and license. Not responsible for typographical errors.\n\n)\n; ;"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.olathesubaru.com/blog/video/2019/october/2/2020-Subaru-Ascent-Olathe-KS-679737360a0e0ae7370e1c361aa0a830.htm?locale=en_US\",\n \"source_domain\": \"www.olathesubaru.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"137221\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:TPTOQZI62XHAXQ3NS7LKK5GPQVKI3AC7\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-17T17:38:22Z\",\n \"WARC-IP-Address\": \"165.254.45.175\",\n \"WARC-Identified-Payload-Type\": \"application/xhtml+xml\",\n \"WARC-Payload-Digest\": \"sha1:FZMWD7M54WOUNHFUM7NAD4KJV2OFMXM7\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.olathesubaru.com/blog/video/2019/october/2/2020-Subaru-Ascent-Olathe-KS-679737360a0e0ae7370e1c361aa0a830.htm?locale=en_US\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-191.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 34,\n 35,\n 36,\n 70,\n 71,\n 1283,\n 1284,\n 1315,\n 1316,\n 1898,\n 1899,\n 1901\n ],\n \"line_end_idx\": [\n 34,\n 35,\n 36,\n 70,\n 71,\n 1283,\n 1284,\n 1315,\n 1316,\n 1898,\n 1899,\n 1901,\n 1904\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1904,\n \"ccnet_original_nlines\": 12,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2909604609012604,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.008474580012261868,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1836158186197281,\n \"rps_doc_frac_unique_words\": 0.6816608905792236,\n \"rps_doc_mean_word_length\": 5.352941036224365,\n \"rps_doc_num_sentences\": 14,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.041193008422852,\n \"rps_doc_word_count\": 289,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.023270849138498306,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -212.55638122558594,\n \"rps_doc_books_importance_length_correction\": -212.55625915527344,\n \"rps_doc_openwebtext_importance\": -92.39299774169922,\n \"rps_doc_openwebtext_importance_length_correction\": -92.39299774169922,\n \"rps_doc_wikipedia_importance\": -72.44495391845703,\n \"rps_doc_wikipedia_importance_length_correction\": -72.44495391845703\n },\n \"fasttext\": {\n \"dclm\": 0.015004280023276806,\n \"english\": 0.9232551455497742,\n \"fineweb_edu_approx\": 0.7389299273490906,\n \"eai_general_math\": 0.005479339975863695,\n \"eai_open_web_math\": 0.14165657758712769,\n \"eai_web_code\": 0.000658750010188669\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"629.2222\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"629.22\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":174,"cells":{"id":{"kind":"number","value":5382342605490926000,"string":"5,382,342,605,490,926,000"},"text":{"kind":"string","value":"Close\n\nSupport Global Voices\n\nTo stay independent, free, and sustainable, our community needs the help of friends and readers like you.\n\nDonate now »\n\nSee all those languages up there? We translate Global Voices stories to make the world's citizen media available to everyone.\n\nLearn more about Lingua Translation  »\n\nChina: Can a cop-killer be a hero?\n\nActually, the majority opinion in the story of Beijing resident Yang Jia who recently rushed into a police building in Shanghai and stabbed and killed six police officers, wounding several others, seems to be on Yang's side. Since then, Yang's mother has mysteriously disappeared, Beijing police have been sent to investigate and, judging from what's being said online, Shanghai police are refusing to cooperate.\n\nAnother thing that remains is GenitalGate, the rumor/story flying around that Yang was beaten so badly by police last year when he was accused of having stolen a bicycle that his genitalia no longer functioned properly, and this was the reason for his revenge.\n\nRelated to that is the idea that Roland Soong at EastSouthWestNorth put forth recently following the Weng'an pushup-riots, that either the most effective or most recent technique used by China's human flesh internet discussion directors aka the 50 Cent Party (will somebody please write them an entry on Wikipedia already!) in an age where enough netizens are savvy enough to get around keyword blocks, is to flood the blogosphere with disinformation in situations like these similar enough to divide portions of the online community and discredit the rest.\n\nMore information continues to surface on who these 50 Centers are and how they go about their work, so, second, is it likely that this short personal essay which appeared (briefly, for some) on all the usual major BBS forums yesterday was planted in an attempt to influence discussion? For example, how could the journalist mentioned below be so certain that any talk of Yang Jia's genital dysfunction was a lie? One commenter in the post linked to below notes that whoever posted it also only registered that account yesterday.\n\n‘Fragmented thoughts on the Zhaibei police attack case “GenitalGate”‘ as posted on XinhuaNet on July 25:\n\n一、关于生命\n\n袭警案发生了有些日子了,网上各种声音起云涌,其中最夺人心魄的便是“生殖器”门了。由于生殖器被打残,杨佳才愤而杀人,夺走6条人命。于是乎群情激愤,杀人者成了英雄,被杀者成了活该。反过来的话,要是一个警察哪怕是杀了6个罪犯,这个警察恐怕会面临武力使用过当的指控,是绝对成不了英雄的。\n\n难道6个警察的命就不是人命吗?难道面对6条无辜逝去的生命一律忍心用“尽管杀人是不对的,但是……”这种语言来说话不嫌太冷酷吗?\n\n社会进步的最高表现便是尊重生命。不久前的纹川地震,我们一起哀悼死难的同胞,从未追问他生前是好人还是坏人,共同唱响对生命的礼赞,使我们民族的灵魂升华。这一次,难道我们就应该冷酷地拷问生前是非,仅仅就应为他们是警察吗?试问,如果杨佳式的“英雄”行为得以褒扬,我们的社会不就成了杀戮至上野蛮的丛林了吗?\n\n不懂得尊重生命,就是野蛮和落后,别拿林冲来说事儿!\n\n杨佳成了英雄,真是亘古奇闻!\n\n1. Regarding life\n\nIt's been a good few days since the attack on police took place, and all sorts of voices have rung forth on the internet, the most sensational of which has been “GenitalGate”. Because he'd had his genitalia ruined in a beating, he became enraged and a killer, taking six lives. Then the public became furious, the killer became a hero, and the murdered then deserved it. Flip that around, if this had been a cop who killed six criminals, that cop would just be accused of excessive use of force. He definitely would not have become a hero.\n\nSo…six cops, aren't these human lives too? Six innocent lives were lost and to go and so easily say things like, ‘killing people is wrong, but……”, don't you think that's a little cold-hearted?\n\nThe clearest display of social progress is respect for life. Just a short time ago, we mourned for the tragic deaths of our compatriots in the Wenchuan earthquake. There was no asking if they were good people or bad throughout their lives, there was only unity in singing praise for life, uplifting the souls of our people. Now, though, it's like people are ready to torture others just to prove that they were wrong, and why, because they were cops? So let me ask, if “heroes” like Yang Jia are worthy of praise, won't our society then become some sort of kill-or-be-killed barbaric jungle?\n\nTo not know how to respect life is to be backwards and primitive, so don't even think about talking about Lin Chong!\n\nHow Yang Jia became a hero is far beyond me!\n\n二、关于杨佳\n\n杨佳已经被舆论打扮成大大的良民,其父说他“好读书”,旅馆说他按时交房钱,且不论是否真的,这就够良民了吗?我就看到有报道说他平时寡言少语,但为点鸡毛琐事就和邻居拔拳相向,大打出手,是个不叫则已,一叫就咬死人的疯狗,更加接近为了打牌输掉就杀死同学的马家爵!这种人在社会上确有一些,其自有存在的合理性,正常人千万敬而远之,以免杀生之祸。\n\n2. Regarding Yang Jia\n\nPopular opinion has already painted Yang Jia as some sort of model citizen, his dad has said that he was “good in school”, the hostel he was staying at said he paid his rent on time, and regardless of if these are true or not, is that alone enough to make someone a model citizen? I see reports saying he kept to himself and didn't talk much, but then went picking fights with the neighbors over the most trivial of things, getting violent with them, a mad dog who needed no provocation, but when provoked would bite and not be able to stop, overall looking a lot like Ma Jiajue who killed his classmates over a poker match! People like this definitely do exist in society, and normal people always keep a safe distance, so to avoid tragic loss of life.\n\n三、关于警察\n\n这些年贪官污吏也杀了不少,抓得更多,但新的还在出现。原因很复杂,从人们如潮的怒骂背后,我更多听到的不是道德的谴责和法制的呼唤,而是心态“不平衡” 三个字。试想,这样的人一旦为官,怎能不去“找平衡”?价值观不正,这是贪官不断的一个重要原因。警察作为官府的人,也是从老百姓中来的人,既不象宣传得那么好,也不象大家说的那么坏。为什么一出事就无根据地认定是警察坏了呢?在杨佳被警察拦下的事情上,我就听说他是在人行道上骑着一辆无牌自行车才被拦住的。全世界的警察都在街上盘查可疑人,而每个害怕在街上遭遇飞车抢劫的上海人也都会赞同这样的盘查。当然我也没根据说警察的态度很好,但说警察不对的目前也没看到什么根据,有的都是推断。\n\n3. Regarding the police\n\nOver the past few years, more than a few corrupt officials have been killed, and even more have been arrested, but new ones continue to appear. The reasons for this are complicated, but behind all the people cursing angrily like the tide, what I hear most are not moral condemnations or cries for the legal system, but signs of unbalanced mentality. If you think about it, when people like this become officials, why is it that they don't go find balance? Unhealthy values, this is one of the key reasons for unending official corruption. Police, as authority officials, are also people who come from the public, neither as good as gets propagandized, nor as bad as everyone says. Why is that that when something goes wrong police are groundlessly assumed to be bad? As for the incident of Yang Jia being stopped by police, I even heard that he was only stopped for riding an unlicensed bicycle in a pedestrian lane. Police around the world stop and check suspicious people on the streets, and every Shanghai resident afraid of being jacked in a rob-and-run will agree with these inspections. Of course, I don't have any basis to say that police have good attitudes, but then I haven't seen any basis at present to go and say that police are bad, and anyone who does is just speculating.\n\n四、关于“生殖器门”\n这个消息可靠吗?我搜了一下,最早是一个匿名者2号晚上发在Myspace的一个跟贴上的,故事很煽情,但至今没有任何可靠一点的渠道能证实。传的人多了,却几乎变成了确凿事实,据说连凤凰卫视都信了。我有个记者朋友通过关系看到了杨佳自己写的申述状,连杨佳自己都从未说过关于腰部以下的任何事!他告诉我此事肯定是假的,但是发新闻效果不讨人喜欢所以不吭气。从此我鄙视他。\n\n“生殖器门”比周老虎的照片容易分辨,打坏了要变好恐不那么容易,我不信警察隐瞒得掉。要是真的,杨佳杀的就不会是分局,而是派出所,因为拦他的警察就是派出所的,那个地方每天都有老百姓随便进去办户口,不想某些想象力过高的人说的比分局更难冲进去,这是每个中国人都知道的常识。我看他要杀的是在处理中不给他钱的人,因为有可靠消息证明他在山西警察那里就搞到了数万元钱,搞钱的方法和动迁时做“钉子户”差不多。\n\n呜呼,可悲的“生殖器门”!世上本无所谓真相,说的人多了,也就成了真相。\n\n舆论能杀人!它既把秦桧钉上了历史的耻辱柱,弘扬了千古正气,也把大明的长城袁崇焕送上了断头台,使大好河山沦于鞑虏之手。不管许多人喜欢不喜欢,我要说的是:\n\n好听的故事不等于事实,这一次,舆论错了!\n\n4. Regarding “GenitalGate”\n\nIs this information reliable? I did a search, and the earliest I was able to find was an anonymous MySpace user who posted it on the evening of the 2nd. The story is very stirring, but to this day there hasn't been anything more substantial to confirm this. The number of people who have spread it around is quite high, and that alone has nearly made it irrefutable fact, apparently even Phoenix TV even believed it. I have one journalist friend who through his connections was able to see Yang Jia's handwritten statement, and even Yang Jia himself has never said anything at all regarding the area below his waist! He told me that GenitalGate was a lie, but to put that in the news wouldn't please viewers, and that's why he kept silent. Because of this, I despise him.\n\n“GenitalGate” is even easier to refute than the Zhou Tiger photos, because for that to be beaten bad and then recover, I'm afraid, is not that easy, so I don't believe that the police would have been able to cover that up. If it is true, Yang Jia wouldn't have killed people at a central police office, but at a local police station, because the police who stopped him were from a police station, and people go in and out of there every day to process hukous, which, unlike those people with too much imagination are saying, is not harder to rush into than a central police office building. This is common sense of which every Chinese person is aware. I can see that the people he wanted to kill were those who wouldn't give him money while he was being processed, because there is reliable information which proves that while he was being held by police there in Shanxi, he got them for tens of thousands of RMB, using pretty much the same tactics at the same time as the “Nailhouse”.\n\nAlas, for this unfortunate “GenitalGate”! There is no so-called truth on this earth, only people who talk a lot, of stuff that becomes truth on its own.\n\nPublic opinion gets people killed! It got Qin Hui fixed in the most humiliating pose in history, bringing about ages of righteousness, put Yuan Chonghuan of the Great Wall up on the head-chop block, even led to our rivers and valleys falling at the hands of the foreigners. No matter how many people like or dislike this, what I want to say is:\n\nJust because a story sounds good doesn't mean it's true, and this time, public opinion is wrong!\n\n26 comments\n\n • Kai\n\n And the plot thickens…\n\n This is one of those situations where one doesn’t know who to believe as there is sufficient precedent to believe either side: The government cover-up and the public rumor mill.\n\n I’m curious what some of GVO’s resident anti-West China-defenders think of this domestic situation. Are they inclined to be on the side of the authorities or the public? Especially when the facts of the matter are so difficult to be sure of due to issues of credibility.\n\n • ali baba\n\n 选录天涯社区 天涯杂谈 网友呼吁给杨佳寡母捐款的帖子,我谨照录如下:\n\n On http://www.tianya.cn,bbs named 天涯杂谈 ,there are many netizens support Yang Jia,calling for donation for Yang Jia mother.Below are a few of them:\n\n “号召给英雄杨佳的母亲捐款吧!”\n\n Lets give some money to hero Yang Jia’s mother !\n\n “杨佳杀了警察客观上是为我们每一个人杀的!他的愤怒,他的恶其实是我们每一个人身上都有的!”\n\n The fact is,Yang Jia did kill some cops,but he KILLED for US,everyone of us! His rage,fury,and indignation actually are all very common to us!\n\n “计划生育让每个家庭里都只有独苗!他需要多大的勇气!他需要被逼到多惨的境地才做出这么极端的事情!”\n\n Under birth planning and control,every family can only have one child! A solitude seedling ! What enormous courage he needed to command !What absolute hopeless situation he was forced into,in order for him to execute such an extreme deeds !\n\n “在现在这么腐败的社会,每个人都有可能是杨佳,我们不爆发也许是还未被逼到绝路!”\n\n In this terriblely corrupted society,every person can possiblely become a Yang Jia, we have not exploded yet,may be it is because we have not being forced into the road of no return !\n\n “希望杨佳案件能让政府重新尊重老百姓!小人物其实是可以改变历史的。”\n\n Lets hope this Yang Jia case would let the government start fresh to show some respect for ordinay folks ! Insignificant folks can infact change history.\n\n “杨佳走好,你代替了我们去为恶,就像孙志刚代替我们去死一样。”\n\n Yang Jia you have a good journey to heaven, you did the wicked thing for us,just like Soon Tse-gan who die for all of us.\n\n “当年贺龙、彭德怀两把菜刀杀恶吏被称英雄,是闹革命。小民用牺牲来唤醒民众,抗议不公正,可敬。不是每个人都有这勇气的。向杨佳致敬!”\n\n Years ago He Long and Pang De-why (note: this 2 revolutionaries were Mao’s comrades) were praised as heros,and was revolution when they killed bad officials using 2 chopping knifes .Ordinary folk sacrifice oneself in order to wake up others,to protest against injustice, is to be respected. Not everyone has this kind of courage.Lets salute to Yang Jia!\n\n Kungfu Panda says: There are thousands and thousands of netizens showing support towards Yang Jia,even on http://www.people.com.cn ,the official CCP web site,its bbs 强国论坛 ,translate strong nation forum.\n\n • ali baba\n\n 作者:遥远的净土 回复日期:2008-7-21 3:44:37 \n     刀客之歌(原《游击队之歌》改编)\n This post is one that I copy n paste from http://www.kdnet.com.cn\n\n  游击队之歌 ,The Song of the guerrilla, is a very famous mainland chinese song in the 60s,it was a theme song in one of those revolutionary movie,millions of older mainland Chinese grew up with this song during their childhood.\n\n The following is an adaptation of The Song of the guerrilla.I cannot imagine someone with musical talent might turn this new adaptation into a MTV and put it on youtube. It might become an overnight heat.\n      \n       我们都是快刀手\n Our knifes are faster than lightning\n\n       每一个刀光点燃一个希望\n Every shining blade sparks one more desire\n\n       我们都是热血儿呀\n Our blood is hot and boiling\n\n       哪怕那楼高防卫森\n Spit at the high security n tall building\n\n       在这无理的社会里\n In this ruthless lawless society\n\n       无门申诉只好自己动手\n Take law into our hand because nowhere to plead\n\n       在这辽阔的大地上\n On this vast n broad motherland\n\n       有我们无数的杨刀客\n Yang knifemen are millions n millions indeed\n       \n       虽有吃虽有穿\n We all have food we all have clothes\n\n       尊严怎能任践踏呀\n But no one is to step on our dignity\n\n       没有枪没有炮\n No gun or no cannon\n\n       家家有菜刀\n Choppin knife can still be user to chop meat\n\n       和谐社会还遥远呀\n Harmonious society too far away\n\n       还需要无数悲歌来唤醒\n Millions of us will sing millions songs of tragdies\n\n       自古燕赵多壮士呀\n Heroic warriorrs abundant in these countries\n\n       血染淞江唤不归\n Lets blood stain Sung River is our destiny\n   \n\n • Thanks, ali baba. Seems that song has already been harmonized..\n\n • ali baba\n\n To JK,\n Have you ever listen to the original Song of the guerrilla?It was quite a song,with marching tempo,and male only choir.I think it showed a lot of soviet influence.It does make the blood boil a bit,especially with the new lyric.\n\n You mention it’s being harmonized,that is not all.The national anthem,Le International,plus heaps of others.\n That really makes one wonder,a nation that ban its own national anthem on internet forum,wouldn’t it score a first in the guinness book of record ?\n But then,nothing from mainland China surprise me any more.\n\n • ali baba\n\n 奥运和杀警案 挑动京沪瑜亮情节\n Olympic and police-being-slayed,stir up uneasy feelings between Beijing and Shanghai \n\n 2008-07-14 中国时报 徐尚礼/上海报导\n\n China Times Su Shang Le reports from Shanghai\n\n  北京举行奥运及北京人杨佳在上海杀警案再次挑起京沪瑜亮情节。昨两地网民相互叫骂到了口不择言地步。\n\n The fact that Beijing stage olympic,and Yang Jia,being Beijing local,stabbed a numbers of Shanghai policemen to death,has again stired up uneasy feelings between Beijing and Shanghai.The swearing and cursing between netizens from these two rivaling cities has gone a bit out of hand.\n\n  上海闸北分局本月一日遭来自北京的杨佳闯入并杀死六名警察后,许多北京人对上海警方竟然称中国首都百姓为「外地人」很不爽。近日,北京报纸还反驳上海警方指称杨佳「个性孤癖」,说杨佳「乘巴士会主动让座」。\n\n On 1-July,Yang Jia,a Beijing local,went into Shanghai Jah-bei police building and stabbed six policemen to death; Shanghai police not only called Yang Jia a “outsider”,also claimed that Yang is a “queer kind of guy”.Beijing newspaper retorte that Yang “would offer his seat to others in a bus”,and many Beijing citizens are not happy that Shanghai police calling national capital’s citizen an “outsider”\n\n  昨天大陆一知名网路论坛有一被认为是来自上海网民,在网上质疑北京空气污浊不适合办奥运,立即引发激烈论战。\n\n Yesterday,on one mainland famous internet forum,a supposed to be from Shanghai netizen,made the accusation that Beijing’s polluted air is not suitable for olympic events.It immediately sparks a fierce volley of verbal exchange.\n\n  一北京网民说,「北京的奥运会跟你们有关系吗?不就是没在你家办吗?一群SB就欠猛人捅,多捅你们几个就好了,黄埔江的水都给你们喝成脑残了」。\n\n One Beijing netizen said:”What has Beijing Olympic got to do with you guys ? Just because it is not being staged in your home town ? A bunch of SB,you need to be stabbed by real macho men,should have stabbed a few more,the water from Huang Pu Jiang has turned you lots into brain-deaths.”\n\n  另一「最近我们北京男人真是威啊」帖子说「出了个杨大侠,单刀赴会杀了六个上海警察。我们北京男人狠狠出了口恶气。这几年被上海小男人姚明、刘翔等压得喘不过气来了,建议大赦杨大侠,选他为北京政协委员」。\n\n Another netizen:”Recently us Beijing men really are very proud of ourself.Hero Yang,one of us,killed six Shanghai policemen with a single blade.What a beautiful and sweet feeling of revenge.This few years,we are sick of petty and sissy Shanghai men the like of Yao Ming and Liu Xiang. I suggest full pardon for Hero Yang,and vote him into the central government.”\n\n To JK,\n The above post was on your another thread “Citizen journalists prepare for the Olympic” but score no response.\n I put it up on here again hopefully someone might bother to send in a few comments,for or against it,whatever.\n\n • alibaba\n\n @alibaba:\n This natonal anthem written for this Yan Zhao area hero, represent what most chinese think, not just people from Yang Jia’s hometown.\n These comments you posted as dialogs between shanghai and beijing netizens, what are the purpose of that? The best will be painting a picture of beijingers rude rivary discredit Yang Jia case in legal sense.\n We all know, Beijing has many rivals, shanghai is not one of them. To stur a scene like a fight between Beijing and Shanghai hoping for Beijing’s international rivals (by acting like a rival of Beijing)helping win sympathy for cops is something new this time.\n\n • purpose\n\n I can’t believe how low this is yet to go to turn this case into a seemingly regional conflict to discredit the legal sense of it.\n\n • ali baba\n\n To alibaba:\n Are you going to continue using this name “alibaba” ?\n If you are,I can change to another name,otherwise is a bit of confusion.\n\n I am glad you like the new song of the guerrilla.I will post more of them because it shows that people do have talents.\n\n • purpose\n\n If you are one of those 50-cents party who rely earnings through clicks, thanks, I still can donate though.\n\n I didn’t commnent on song of the guerrilla, you seem to call the writers of this song guerrillas. Regardless how much you want to prove the “talents” of guerrillas you disagree with, it is still a legal case that has been handled very poorly.\n\nCancel this reply\n\nJoin the conversation -> alibaba\n\nAuthors, please log in »\n\nGuidelines\n\n • All comments are reviewed by a moderator. Do not submit your comment more than once or it may be identified as spam.\n • Please treat others with respect. Comments containing hate speech, obscenity, and personal attacks will not be approved."},"metadata":{"kind":"string","value":"{\n \"url\": \"https://globalvoices.org/2008/07/25/china-can-a-cop-killer-be-a-hero/?replytocom=1492202\",\n \"source_domain\": \"globalvoices.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"199961\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:N7EH6Q7CR64S7FI2VBYFHJB2L4OYMD2X\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-21T23:00:39Z\",\n \"WARC-IP-Address\": \"213.108.110.5\",\n \"WARC-Identified-Payload-Type\": \"application/xhtml+xml\",\n \"WARC-Payload-Digest\": \"sha1:UZ32XCGBRH67VIZAOXE75WY7KZJZIFBC\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://globalvoices.org/2008/07/25/china-can-a-cop-killer-be-a-hero/?replytocom=1492202\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-166.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 6,\n 7,\n 29,\n 30,\n 136,\n 137,\n 150,\n 151,\n 277,\n 278,\n 317,\n 318,\n 353,\n 354,\n 767,\n 768,\n 1029,\n 1030,\n 1588,\n 1589,\n 2118,\n 2119,\n 2224,\n 2225,\n 2232,\n 2233,\n 2373,\n 2374,\n 2437,\n 2438,\n 2587,\n 2588,\n 2614,\n 2615,\n 2630,\n 2631,\n 2649,\n 2650,\n 3190,\n 3191,\n 3384,\n 3385,\n 3977,\n 3978,\n 4095,\n 4096,\n 4141,\n 4142,\n 4149,\n 4150,\n 4316,\n 4317,\n 4339,\n 4340,\n 5094,\n 5095,\n 5102,\n 5103,\n 5409,\n 5410,\n 5434,\n 5435,\n 6723,\n 6724,\n 6735,\n 6913,\n 6914,\n 7110,\n 7111,\n 7147,\n 7148,\n 7224,\n 7225,\n 7246,\n 7247,\n 7274,\n 7275,\n 8047,\n 8048,\n 9034,\n 9035,\n 9188,\n 9189,\n 9534,\n 9535,\n 9632,\n 9633,\n 9645,\n 9646,\n 9654,\n 9655,\n 9682,\n 9683,\n 9865,\n 9866,\n 10141,\n 10142,\n 10155,\n 10156,\n 10195,\n 10196,\n 10347,\n 10348,\n 10369,\n 10370,\n 10423,\n 10424,\n 10474,\n 10475,\n 10622,\n 10623,\n 10677,\n 10678,\n 10923,\n 10924,\n 10969,\n 10970,\n 11158,\n 11159,\n 11198,\n 11199,\n 11357,\n 11358,\n 11394,\n 11395,\n 11521,\n 11522,\n 11592,\n 11593,\n 11951,\n 11952,\n 12159,\n 12160,\n 12173,\n 12174,\n 12211,\n 12236,\n 12306,\n 12307,\n 12534,\n 12535,\n 12744,\n 12754,\n 12772,\n 12813,\n 12814,\n 12836,\n 12883,\n 12884,\n 12903,\n 12936,\n 12937,\n 12956,\n 13002,\n 13003,\n 13022,\n 13059,\n 13060,\n 13081,\n 13133,\n 13134,\n 13153,\n 13189,\n 13190,\n 13210,\n 13259,\n 13270,\n 13287,\n 13328,\n 13329,\n 13348,\n 13389,\n 13390,\n 13407,\n 13431,\n 13432,\n 13448,\n 13497,\n 13498,\n 13517,\n 13553,\n 13554,\n 13575,\n 13631,\n 13632,\n 13651,\n 13700,\n 13701,\n 13719,\n 13766,\n 13773,\n 13774,\n 13842,\n 13843,\n 13856,\n 13857,\n 13868,\n 14100,\n 14101,\n 14214,\n 14366,\n 14429,\n 14430,\n 14443,\n 14444,\n 14464,\n 14554,\n 14555,\n 14584,\n 14585,\n 14635,\n 14636,\n 14689,\n 14690,\n 14978,\n 14979,\n 15082,\n 15083,\n 15491,\n 15492,\n 15549,\n 15550,\n 15782,\n 15783,\n 15857,\n 15858,\n 16151,\n 16152,\n 16255,\n 16256,\n 16624,\n 16625,\n 16636,\n 16751,\n 16866,\n 16867,\n 16879,\n 16880,\n 16894,\n 17032,\n 17244,\n 17508,\n 17509,\n 17521,\n 17522,\n 17657,\n 17658,\n 17671,\n 17672,\n 17688,\n 17746,\n 17823,\n 17824,\n 17948,\n 17949,\n 17961,\n 17962,\n 18074,\n 18075,\n 18322,\n 18323,\n 18341,\n 18342,\n 18375,\n 18376,\n 18401,\n 18402,\n 18413,\n 18414,\n 18535\n ],\n \"line_end_idx\": [\n 6,\n 7,\n 29,\n 30,\n 136,\n 137,\n 150,\n 151,\n 277,\n 278,\n 317,\n 318,\n 353,\n 354,\n 767,\n 768,\n 1029,\n 1030,\n 1588,\n 1589,\n 2118,\n 2119,\n 2224,\n 2225,\n 2232,\n 2233,\n 2373,\n 2374,\n 2437,\n 2438,\n 2587,\n 2588,\n 2614,\n 2615,\n 2630,\n 2631,\n 2649,\n 2650,\n 3190,\n 3191,\n 3384,\n 3385,\n 3977,\n 3978,\n 4095,\n 4096,\n 4141,\n 4142,\n 4149,\n 4150,\n 4316,\n 4317,\n 4339,\n 4340,\n 5094,\n 5095,\n 5102,\n 5103,\n 5409,\n 5410,\n 5434,\n 5435,\n 6723,\n 6724,\n 6735,\n 6913,\n 6914,\n 7110,\n 7111,\n 7147,\n 7148,\n 7224,\n 7225,\n 7246,\n 7247,\n 7274,\n 7275,\n 8047,\n 8048,\n 9034,\n 9035,\n 9188,\n 9189,\n 9534,\n 9535,\n 9632,\n 9633,\n 9645,\n 9646,\n 9654,\n 9655,\n 9682,\n 9683,\n 9865,\n 9866,\n 10141,\n 10142,\n 10155,\n 10156,\n 10195,\n 10196,\n 10347,\n 10348,\n 10369,\n 10370,\n 10423,\n 10424,\n 10474,\n 10475,\n 10622,\n 10623,\n 10677,\n 10678,\n 10923,\n 10924,\n 10969,\n 10970,\n 11158,\n 11159,\n 11198,\n 11199,\n 11357,\n 11358,\n 11394,\n 11395,\n 11521,\n 11522,\n 11592,\n 11593,\n 11951,\n 11952,\n 12159,\n 12160,\n 12173,\n 12174,\n 12211,\n 12236,\n 12306,\n 12307,\n 12534,\n 12535,\n 12744,\n 12754,\n 12772,\n 12813,\n 12814,\n 12836,\n 12883,\n 12884,\n 12903,\n 12936,\n 12937,\n 12956,\n 13002,\n 13003,\n 13022,\n 13059,\n 13060,\n 13081,\n 13133,\n 13134,\n 13153,\n 13189,\n 13190,\n 13210,\n 13259,\n 13270,\n 13287,\n 13328,\n 13329,\n 13348,\n 13389,\n 13390,\n 13407,\n 13431,\n 13432,\n 13448,\n 13497,\n 13498,\n 13517,\n 13553,\n 13554,\n 13575,\n 13631,\n 13632,\n 13651,\n 13700,\n 13701,\n 13719,\n 13766,\n 13773,\n 13774,\n 13842,\n 13843,\n 13856,\n 13857,\n 13868,\n 14100,\n 14101,\n 14214,\n 14366,\n 14429,\n 14430,\n 14443,\n 14444,\n 14464,\n 14554,\n 14555,\n 14584,\n 14585,\n 14635,\n 14636,\n 14689,\n 14690,\n 14978,\n 14979,\n 15082,\n 15083,\n 15491,\n 15492,\n 15549,\n 15550,\n 15782,\n 15783,\n 15857,\n 15858,\n 16151,\n 16152,\n 16255,\n 16256,\n 16624,\n 16625,\n 16636,\n 16751,\n 16866,\n 16867,\n 16879,\n 16880,\n 16894,\n 17032,\n 17244,\n 17508,\n 17509,\n 17521,\n 17522,\n 17657,\n 17658,\n 17671,\n 17672,\n 17688,\n 17746,\n 17823,\n 17824,\n 17948,\n 17949,\n 17961,\n 17962,\n 18074,\n 18075,\n 18322,\n 18323,\n 18341,\n 18342,\n 18375,\n 18376,\n 18401,\n 18402,\n 18413,\n 18414,\n 18535,\n 18659\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 18659,\n \"ccnet_original_nlines\": 270,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.39816564321517944,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.010520639829337597,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.003690039971843362,\n \"rps_doc_frac_no_alph_words\": 0.24008631706237793,\n \"rps_doc_frac_unique_words\": 0.3981145918369293,\n \"rps_doc_mean_word_length\": 5.3861494064331055,\n \"rps_doc_num_sentences\": 133,\n \"rps_doc_symbol_to_word_ratio\": 0.0016185600543394685,\n \"rps_doc_unigram_entropy\": 6.137024402618408,\n \"rps_doc_word_count\": 2758,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.004442949779331684,\n \"rps_doc_frac_chars_dupe_6grams\": 0.004442949779331684,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.007068329956382513,\n \"rps_doc_frac_chars_top_3gram\": 0.002692699898034334,\n \"rps_doc_frac_chars_top_4gram\": 0.0014809799613431096,\n \"rps_doc_books_importance\": -1543.364501953125,\n \"rps_doc_books_importance_length_correction\": -1543.364501953125,\n \"rps_doc_openwebtext_importance\": -877.6134033203125,\n \"rps_doc_openwebtext_importance_length_correction\": -877.6134033203125,\n \"rps_doc_wikipedia_importance\": -676.0958251953125,\n \"rps_doc_wikipedia_importance_length_correction\": -676.0958251953125\n },\n \"fasttext\": {\n \"dclm\": 0.08204442262649536,\n \"english\": 0.9070076942443848,\n \"fineweb_edu_approx\": 1.5098519325256348,\n \"eai_general_math\": 0.0408022403717041,\n \"eai_open_web_math\": 0.207375168800354,\n \"eai_web_code\": 0.005987230222672224\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"303.48\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Social sciences — Dictionaries\"\n }\n },\n \"secondary\": {\n \"code\": \"320.951\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Political science\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Analyze\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Comment Section\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Partially Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":175,"cells":{"id":{"kind":"number","value":-1106573841979895000,"string":"-1,106,573,841,979,895,000"},"text":{"kind":"string","value":"Football\n\nFootball games inspire us in many ways, from the joy of watching our team win to the inspiration of players who live by values we admire.\nFaith the dog with her family\nDogs\n\nFaith in Action\n\nHow a puppy taught my family to take that great leap of faith.\n\nContinue Reading"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.guideposts.org/football-0?page=5\",\n \"source_domain\": \"www.guideposts.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"51733\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:IC2NZVEWHJ5DDNWABQYWZ5OUUULBIN5S\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-23T23:50:05Z\",\n \"WARC-IP-Address\": \"104.20.190.9\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:URSJ4IGQ5QEHKUAOSX2Z3D7SEL3IWCYH\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.guideposts.org/football-0?page=5\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-68.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 9,\n 10,\n 148,\n 178,\n 183,\n 184,\n 200,\n 201,\n 264,\n 265\n ],\n \"line_end_idx\": [\n 9,\n 10,\n 148,\n 178,\n 183,\n 184,\n 200,\n 201,\n 264,\n 265,\n 281\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 281,\n \"ccnet_original_nlines\": 10,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.41818180680274963,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.05454545095562935,\n \"rps_doc_frac_unique_words\": 0.807692289352417,\n \"rps_doc_mean_word_length\": 4.288461685180664,\n \"rps_doc_num_sentences\": 3,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.654461145401001,\n \"rps_doc_word_count\": 52,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -12.763444900512695,\n \"rps_doc_books_importance_length_correction\": -12.763444900512695,\n \"rps_doc_openwebtext_importance\": -10.525005340576172,\n \"rps_doc_openwebtext_importance_length_correction\": -10.525005340576172,\n \"rps_doc_wikipedia_importance\": -5.934459686279297,\n \"rps_doc_wikipedia_importance_length_correction\": -5.934459686279297\n },\n \"fasttext\": {\n \"dclm\": 0.000034690001484705135,\n \"english\": 0.9563771486282349,\n \"fineweb_edu_approx\": 0.9863089919090271,\n \"eai_general_math\": -0.000009780000254977494,\n \"eai_open_web_math\": 0.0290756206959486,\n \"eai_web_code\": -0.000009890000001178123\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"248.4\",\n \"labels\": {\n \"level_1\": \"Religion\",\n \"level_2\": \"Devotional literature and Theology, Practical\",\n \"level_3\": \"Christian life\"\n }\n },\n \"secondary\": {\n \"code\": \"796.33\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":176,"cells":{"id":{"kind":"number","value":1292433228094392000,"string":"1,292,433,228,094,392,000"},"text":{"kind":"string","value":"Recombinant Human MIF (carrier-free)\n\nPricing & Availability\nOther Names\nMacrophage migration inhibitory factor, GIF, GLIF, MMIF\nAve. Rating\nSubmit a Review\nProduct Citations\npublications\nCat # Size Price Quantity Avail. Save\n599404 25 µg $185\nCheck Availability\n\n\nNeed larger quantities of this item?\nRequest Bulk Quote\n599406 100 µg $585\nCheck Availability\n\n\nNeed larger quantities of this item?\nRequest Bulk Quote\n599408 500 µg $1,695\nCheck Availability\n\n\nNeed larger quantities of this item?\nRequest Bulk Quote\nDescription\n\nMIF was discovered in the 1960’s as a T-lymphocyte product that inhibits the random migration of macrophages during delayed-type hypersensitivity responses. This cytokine is a single, non-glycosylated, 115 amino acids polypeptide that has a β-α-β motif. It is known that MIF induces inflammatory cytokines, nitric oxide and superoxide anions, and regulates macrophage and lymphocyte proliferation. The immunoregulatory activities of MIF are based upon transcriptional regulation of inflammatory gene products, modulation of cell proliferation and cell cycle inhibition of p53-mediated apoptosis, and a number of metabolic effects. MIF also demonstrates broad regulatory properties and is considered as a critical mediator of multiple disorders, including inflammatory and autoimmune diseases such as rheumatoid arthritis, glomerulonephritis, diabetes, atherosclerosis, sepsis, asthma, and acute respiratory distress syndrome. Furthermore, studies have highlighted the role of MIF in tumorigenesis. Human cancer tissues, including skin, brain, breast, colon, prostate, and lung-derived tumors overexpress MIF; MIF levels correlated with tumor aggressiveness and metastatic potential. Therefore, MIF is considered a viable therapeutic target for treating inflammatory diseases and neoplasia. In addition to its physiologic and pathophysiologic activities, MIF is known to act as a tautomerase and has a catalytically active N-terminal proline that is invariant in structurally homologous bacterial isomerases. Although the relationship between the catalytic activity and biological function of MIF is not yet fully understood, targeting MIF tautomerase activity using small-molecule inhibitors has emerged as an attractive strategy for inhibiting MIF proinflammatory activity and attenuating its biological activity in vitro and in vivo. Human and mouse MIF share a 90% homology.\n\nProduct Details\nTechnical data sheet\n\nProduct Details\n\nReactivity\nHuman\nSource\nHuman MIF, amino acids (Pro2-Ala115) (Accession# NP_002406.1), was expressed in E. coli with an additional N-terminal Met.\nMolecular Mass\nThe 115 amino acid recombinant protein has a predicted molecular mass of approximately 12.5 kD. The protein migrates above 14 kD by SDS-PAGE in DTT-reducing conditions and above 12.5 kD in non-reducing conditions. The predicted N-terminal amino acid is Met.\nPurity\n>95%, as determined by Coomassie stained SDS-PAGE.\nFormulation\n0.22 µm filtered protein solution is in PBS.\nEndotoxin Level\nLess than 0.1 EU per µg of protein as determine by the LAL method.\nConcentration\n10 and 25 µg sizes are bottled at 200 µg/mL. 100 µg size and larger sizes are lot-specific and bottled at the concentration indicated on the vial (please contact technical support for concentration, or use our Lookup tool if you have a lot number.)\nPlease note, new lots of the 100 µg size will be lot-specific and may differ from previous lots that had a fixed concentration.\nStorage & Handling\nUnopened vial can be stored between 2°C and 8°C for three months, at -20°C for six months, or at -70°C for one year. For maximum results, quick spin vial prior to opening. Stock solutions should be prepared at no less than 10 µg/mL in sterile buffer (PBS, HPBS, DPBS, and EBSS) containing carrier protein such as 1% BSA or HSA. After dilution, the cytokine can be stored between 2°C and 8°C for one month or from -20°C to -70°C for up to 3 months. Avoid repeated freeze/thaw cycles.\nApplication\n\nBioassay\n\nApplication Notes\n\nWe currently check the quality of this recombinant protein by purity, endotoxin level and molecular weight. At this time, we do not have bioassay system established yet for testing this protein. However, we are continuing to seek out options to test its activity.\n\nBioLegend carrier-free recombinant proteins provided in liquid format are shipped on blue-ice. Our comparison testing data indicates that when handled and stored as recommended, the liquid format has equal or better stability and shelf-life compared to commercially available lyophilized proteins after reconstitution. Our liquid proteins are validated in-house to maintain activity after shipping on blue ice and are backed by our 100% satisfaction guarantee. If you have any concerns, contact us at tech@biolegend.com.\n\nAntigen Details\n\nStructure\nMonomer\nDistribution\n\nMacrophages, eosinophils, T cells, pituitary gland.\n\nFunction\nMIF stimulates IL-1, IL-8, and MMP expression on fibroblasts. It also stimulates NO and TNF-alpha production on macrophages. MIF regulates the migration of macrophages. The secretion of MIF is regulated by steroids.\nInteraction\nMacrophages, fibroblasts\nLigand/Receptor\nCD74\nBioactivity\nHuman MIF inhibits the migration of THP-1 cells in the presence of human MCP-1\nBiology Area\nCell Biology, Cell Motility/Cytoskeleton/Structure, Immunology, Innate Immunity\nMolecular Family\nCytokines/Chemokines\nAntigen References\n\n1. David JR. 1966. Proc. Natl. Acad. Sci. 56:72.\n2. Hare AA, et al. 2010. Bioorg. Med. Chem. Lett. 20:5811.\n3. Calandra T, et al. 2003. J. Infect. Dis. 187:s385.\n4. Senter PD, et al. 2002. Proc. Natl. Acad. Sci. 99:144.\n5. Calandra T, et al. 1995. Nature. 377:68.\n6. Ouertatani-Sakouhi H, et al. 2010. Biol. Chem. 285:26581.\n\nGene ID\n4282 View all products for this Gene ID\nUniProt\nView information about MIF on UniProt.org\n\nRelated FAQs\n\nDoes specific activity of a recombinant protein vary between lots?\n\nSpecific activity will vary for each lot and for the type of experiment that is done to validate it, but all passed lots will have activity within the established ED50 range for the product and we guarantee that our products will have lot-to-lot consistency. Please conduct an experiment-specific validation to find the optimal ED50 for your system.\n\nHave your recombinants been tested for stability?\n\nOur testing shows that the recombinant proteins are able to withstand room temperature for a week without losing activity. In addition the recombinant proteins were also found to withstand four cycles of freeze and thaw without losing activity.\n\nHow do you convert activity as an ED50 in ng/ml to a specific activity in Units/mg?\nUse formula Specific activity (Units/mg) = 10e6/ ED50 (ng/mL)\nHow does the activity of your recombinant proteins compare to competitors?\n\nWe quality control each and every lot of recombinant protein. Not only do we check its bioactivity, but we also compare it against other commercially available recombinant proteins. We make sure each recombinant protein’s activity is at least as good as or better than the competition’s. In order to provide you with the best possible product, we ensure that our testing process is rigorous and thorough. If you’re curious and eager to make the switch to BioLegend recombinants, contact your sales representative today!\n\nWhat is the specific activity or ED50 of my recombinant protein?\n\nThe specific activity range of the protein is indicated on the product datasheets. Because the exact activity values on a per unit basis can largely fluctuate depending on a number of factors, including the nature of the assay, cell density, age of cells/passage number, culture media used, and end user technique, the specific activity is best defined as a range and we guarantee the specific activity of all our lots will be within the range indicated on the datasheet. Please note this only applies to recombinants labeled for use in bioassays. ELISA standard recombinant proteins are not recommended for bioassay usage as they are not tested for these applications.\n\nGo To Top Version: 3    Revision Date: 04/13/2018\n\nFor research use only. Not for diagnostic use. Not for resale. BioLegend will not be held responsible for patent infringement or other violations that may occur with the use of our products.\n\n \n\n*These products may be covered by one or more Limited Use Label Licenses (see the BioLegend Catalog or our website, www.biolegend.com/ordering#license). BioLegend products may not be transferred to third parties, resold, modified for resale, or used to manufacture commercial products, reverse engineer functionally similar materials, or to provide a service to third parties without written approval of BioLegend. By use of these products you accept the terms and conditions of all applicable Limited Use Label Licenses. Unless otherwise indicated, these products are for research use only and are not intended for human or animal diagnostic, therapeutic or commercial use.\n\n \n\n8999 BioLegend Way, San Diego, CA 92121 www.biolegend.com\nToll-Free Phone: 1-877-Bio-Legend (246-5343) Phone: (858) 768-5800 Fax: (877) 455-9587\n\nLogin/Register\nForgot your password? Reset Password\nRequest an Account"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.biolegend.com/en-us/products/recombinant-human-mif-carrier-free-9602\",\n \"source_domain\": \"www.biolegend.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"79444\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:VLXAJFFXJ3XT464BZSCHMSCCLDLPS5MB\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-16T05:35:40Z\",\n \"WARC-IP-Address\": \"173.46.145.40\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:NSY2CAJGH4NZIEIH6WNBXIA4YCZJTZMA\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.biolegend.com/en-us/products/recombinant-human-mif-carrier-free-9602\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-214.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 37,\n 38,\n 61,\n 73,\n 129,\n 141,\n 157,\n 175,\n 188,\n 226,\n 244,\n 263,\n 264,\n 265,\n 302,\n 321,\n 340,\n 359,\n 360,\n 361,\n 398,\n 417,\n 438,\n 457,\n 458,\n 459,\n 496,\n 515,\n 527,\n 528,\n 2406,\n 2407,\n 2423,\n 2444,\n 2445,\n 2461,\n 2462,\n 2473,\n 2479,\n 2486,\n 2609,\n 2624,\n 2882,\n 2889,\n 2940,\n 2952,\n 2997,\n 3013,\n 3080,\n 3094,\n 3343,\n 3471,\n 3490,\n 3973,\n 3985,\n 3986,\n 3995,\n 3996,\n 4014,\n 4015,\n 4279,\n 4280,\n 4801,\n 4802,\n 4818,\n 4819,\n 4829,\n 4837,\n 4850,\n 4851,\n 4903,\n 4904,\n 4913,\n 5129,\n 5141,\n 5166,\n 5182,\n 5187,\n 5199,\n 5278,\n 5291,\n 5371,\n 5388,\n 5409,\n 5428,\n 5429,\n 5478,\n 5537,\n 5591,\n 5649,\n 5693,\n 5754,\n 5755,\n 5763,\n 5803,\n 5811,\n 5853,\n 5854,\n 5867,\n 5868,\n 5935,\n 5936,\n 6286,\n 6287,\n 6337,\n 6338,\n 6583,\n 6584,\n 6668,\n 6730,\n 6805,\n 6806,\n 7326,\n 7327,\n 7392,\n 7393,\n 8063,\n 8064,\n 8114,\n 8115,\n 8306,\n 8307,\n 8309,\n 8310,\n 8985,\n 8986,\n 8988,\n 8989,\n 9047,\n 9134,\n 9135,\n 9150,\n 9187\n ],\n \"line_end_idx\": [\n 37,\n 38,\n 61,\n 73,\n 129,\n 141,\n 157,\n 175,\n 188,\n 226,\n 244,\n 263,\n 264,\n 265,\n 302,\n 321,\n 340,\n 359,\n 360,\n 361,\n 398,\n 417,\n 438,\n 457,\n 458,\n 459,\n 496,\n 515,\n 527,\n 528,\n 2406,\n 2407,\n 2423,\n 2444,\n 2445,\n 2461,\n 2462,\n 2473,\n 2479,\n 2486,\n 2609,\n 2624,\n 2882,\n 2889,\n 2940,\n 2952,\n 2997,\n 3013,\n 3080,\n 3094,\n 3343,\n 3471,\n 3490,\n 3973,\n 3985,\n 3986,\n 3995,\n 3996,\n 4014,\n 4015,\n 4279,\n 4280,\n 4801,\n 4802,\n 4818,\n 4819,\n 4829,\n 4837,\n 4850,\n 4851,\n 4903,\n 4904,\n 4913,\n 5129,\n 5141,\n 5166,\n 5182,\n 5187,\n 5199,\n 5278,\n 5291,\n 5371,\n 5388,\n 5409,\n 5428,\n 5429,\n 5478,\n 5537,\n 5591,\n 5649,\n 5693,\n 5754,\n 5755,\n 5763,\n 5803,\n 5811,\n 5853,\n 5854,\n 5867,\n 5868,\n 5935,\n 5936,\n 6286,\n 6287,\n 6337,\n 6338,\n 6583,\n 6584,\n 6668,\n 6730,\n 6805,\n 6806,\n 7326,\n 7327,\n 7392,\n 7393,\n 8063,\n 8064,\n 8114,\n 8115,\n 8306,\n 8307,\n 8309,\n 8310,\n 8985,\n 8986,\n 8988,\n 8989,\n 9047,\n 9134,\n 9135,\n 9150,\n 9187,\n 9205\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 9205,\n \"ccnet_original_nlines\": 133,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.2840335965156555,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.04257702827453613,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.22913165390491486,\n \"rps_doc_frac_unique_words\": 0.4651668965816498,\n \"rps_doc_mean_word_length\": 5.418722629547119,\n \"rps_doc_num_sentences\": 125,\n \"rps_doc_symbol_to_word_ratio\": 0.0016806699568405747,\n \"rps_doc_unigram_entropy\": 5.875392436981201,\n \"rps_doc_word_count\": 1378,\n \"rps_doc_frac_chars_dupe_10grams\": 0.025311369448900223,\n \"rps_doc_frac_chars_dupe_5grams\": 0.03334673121571541,\n \"rps_doc_frac_chars_dupe_6grams\": 0.03334673121571541,\n \"rps_doc_frac_chars_dupe_7grams\": 0.03334673121571541,\n \"rps_doc_frac_chars_dupe_8grams\": 0.03334673121571541,\n \"rps_doc_frac_chars_dupe_9grams\": 0.025311369448900223,\n \"rps_doc_frac_chars_top_2gram\": 0.01714208908379078,\n \"rps_doc_frac_chars_top_3gram\": 0.010178119875490665,\n \"rps_doc_frac_chars_top_4gram\": 0.010847729630768299,\n \"rps_doc_books_importance\": -848.2930297851562,\n \"rps_doc_books_importance_length_correction\": -848.2930297851562,\n \"rps_doc_openwebtext_importance\": -405.1677551269531,\n \"rps_doc_openwebtext_importance_length_correction\": -405.1677551269531,\n \"rps_doc_wikipedia_importance\": -282.4317626953125,\n \"rps_doc_wikipedia_importance_length_correction\": -282.4317626953125\n },\n \"fasttext\": {\n \"dclm\": 0.010402919724583626,\n \"english\": 0.8878149390220642,\n \"fineweb_edu_approx\": 1.5474985837936401,\n \"eai_general_math\": 0.01660930924117565,\n \"eai_open_web_math\": 0.2236647605895996,\n \"eai_web_code\": 0.00199132994748652\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"572.6\",\n \"labels\": {\n \"level_1\": \"Science and Natural history\",\n \"level_2\": \"Biology and Anthropology\",\n \"level_3\": \"Anthropology\"\n }\n },\n \"secondary\": {\n \"code\": \"615.5\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Medicine\",\n \"level_3\": \"Materia medica, Drugs, and Pharmacy\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Graduate/Expert Level\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":177,"cells":{"id":{"kind":"number","value":8013290869553405000,"string":"8,013,290,869,553,405,000"},"text":{"kind":"string","value":"Donald Trump sent a top ally to sleep with the 'low energy' and 'boring' tone of his speech to the UN General Assembly.\n\nThe President of the United States addressed the UN during its congress in New York just after 3pm GMT.\n\nWhile the speech hit a number of key talking points, it was the tone of Mr Trump's delivery that caught the most attention.\n\nAnd one critic took to social media to say the 73-year-old sounded 'medicated'.\n\nAt points the US leader seemed to slur his words in a lengthy speech that rarely got out of first gear.\n\nAs well as seemingly sending most of social media into a sleepy daze, Mr Trump's address appeared to be too much for the US's Secretary of Commerce Wilbur Ross.\n\nThe American investor was filmed in the crowd with his eyes closed.\n\nAs Mr Ross snoozed, people took to Twitter to register their waning interest with his delivery.\n\n\"He is a terrible speaker,\" one Twitter user wrote.\n\nMr Trump's speech failed to get out of first gear\n \n\n\"So boring. So monotone. I’m also having a very hard time believing anything he says.\" \n\nAnother Twitter user suggested the President's speech stuck too closely to the script.\n\n\"Trump sounds medicated as he drones on through his boring teleprompter UN speech,\" they said.\n\n\"There has never been a more boring delivery of a speech on the world stage as you gave today at the UN,\" a third said.\n\n\"Why do you even bother? It does nothing except embarrass yourself and our country.\"\n\nWhile the high energy, raucous delivery associated with Mr Trump's appearances at campaign rallies clearly wasn't visible, the President did touch on many of his favourite talking points.\n\nThe energy associated with Mr Trump's campaign rallies was not there\n \n\nAt the head of the address he took the time to advance his America First world view.\n\n\"Wise leaders put the good of their own people and their own country first,\" he said.\n\n\"The future does not belong to globalists. The future belongs to patriots.\n\n\"The future belongs to sovereign and independent nations, who protect their citizens, respect their neighbors and honor the differences that make each country special and unique.\"\n\nMr Trump also promoted his domestic record, calling the US \"the world's most powerful nation\" at the beginning of the speech.\n\nHe went on to highlight the $2.5 trillion his administration had spent on the US military since he took office, before accusing the Iranian government of 'squandering' its wealth in its pursuit of nuclear weapons.\n\n\"America will never tolerate such anti-semitic hate,\" the President said of the Middle Eastern country.\n\n\"Fanatics have long used hatred of Israel to distract form their failures.\"\n\nMr Trump accused Iran of anti-semitism\n \n\nThe Republican leader did say that his country was \"ready to embrace friendship with all who genuinely embrace peace and respect\", ramping down previously fiery rhetoric aimed at Iran.\n\nThe government of China was also in the firing line of the President.\n\n\"Not only has China declined to adopt promised reforms, it has embraced an economic model, dependent on massive market barriers, heavy state subsidies, currency manipulation, product dumping, forced technology transfers and the theft of intellectual property and also trade secrets on a grand scale,\" he said.\n\nBoris Johnson received a much needed boost from Mr Trump\n\nIn a much needed boost for Boris Johnson, who is in New York at the UN Assembly, Mr Trump said he was working closely with UK prime minister on a trade deal.\n\nHe said: \"I have made clear that we stand ready to enter an exceptional new trade agreement with the UK which will bring tremendous trade benefits to both of our countries.\n\n\"I have been working closely with Boris Johnson for a terrific new trade deal.\""},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.mirror.co.uk/news/us-news/donald-trump-sounds-medicated-low-20166872\",\n \"source_domain\": \"www.mirror.co.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"301661\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:L2S2AK67XCFGUL2375AALG2236OS72FR\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-19T07:29:49Z\",\n \"WARC-IP-Address\": \"99.84.181.97\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:5N3R2Q72EISVZ7SKE3VR6OKNXZKBHCBR\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.mirror.co.uk/news/us-news/donald-trump-sounds-medicated-low-20166872\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-166.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 120,\n 121,\n 225,\n 226,\n 350,\n 351,\n 431,\n 432,\n 536,\n 537,\n 698,\n 699,\n 767,\n 768,\n 864,\n 865,\n 917,\n 918,\n 968,\n 970,\n 971,\n 1059,\n 1060,\n 1147,\n 1148,\n 1243,\n 1244,\n 1364,\n 1365,\n 1450,\n 1451,\n 1639,\n 1640,\n 1709,\n 1711,\n 1712,\n 1797,\n 1798,\n 1884,\n 1885,\n 1960,\n 1961,\n 2141,\n 2142,\n 2268,\n 2269,\n 2483,\n 2484,\n 2588,\n 2589,\n 2665,\n 2666,\n 2705,\n 2707,\n 2708,\n 2893,\n 2894,\n 2964,\n 2965,\n 3275,\n 3276,\n 3333,\n 3334,\n 3492,\n 3493,\n 3666,\n 3667\n ],\n \"line_end_idx\": [\n 120,\n 121,\n 225,\n 226,\n 350,\n 351,\n 431,\n 432,\n 536,\n 537,\n 698,\n 699,\n 767,\n 768,\n 864,\n 865,\n 917,\n 918,\n 968,\n 970,\n 971,\n 1059,\n 1060,\n 1147,\n 1148,\n 1243,\n 1244,\n 1364,\n 1365,\n 1450,\n 1451,\n 1639,\n 1640,\n 1709,\n 1711,\n 1712,\n 1797,\n 1798,\n 1884,\n 1885,\n 1960,\n 1961,\n 2141,\n 2142,\n 2268,\n 2269,\n 2483,\n 2484,\n 2588,\n 2589,\n 2665,\n 2666,\n 2705,\n 2707,\n 2708,\n 2893,\n 2894,\n 2964,\n 2965,\n 3275,\n 3276,\n 3333,\n 3334,\n 3492,\n 3493,\n 3666,\n 3667,\n 3746\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 3746,\n \"ccnet_original_nlines\": 67,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.39300134778022766,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.020188430324196815,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.13458949327468872,\n \"rps_doc_frac_unique_words\": 0.500792384147644,\n \"rps_doc_mean_word_length\": 4.7036452293396,\n \"rps_doc_num_sentences\": 34,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.2417731285095215,\n \"rps_doc_word_count\": 631,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.00842318031936884,\n \"rps_doc_frac_chars_top_3gram\": 0.006064690183848143,\n \"rps_doc_frac_chars_top_4gram\": 0.009433959610760212,\n \"rps_doc_books_importance\": -344.0247802734375,\n \"rps_doc_books_importance_length_correction\": -344.0247802734375,\n \"rps_doc_openwebtext_importance\": -190.7366180419922,\n \"rps_doc_openwebtext_importance_length_correction\": -190.7366180419922,\n \"rps_doc_wikipedia_importance\": -134.357421875,\n \"rps_doc_wikipedia_importance_length_correction\": -134.357421875\n },\n \"fasttext\": {\n \"dclm\": 0.06860482692718506,\n \"english\": 0.9839543700218201,\n \"fineweb_edu_approx\": 1.2776778936386108,\n \"eai_general_math\": 0.0019949700217694044,\n \"eai_open_web_math\": 0.1471700668334961,\n \"eai_web_code\": 0.0002666100044734776\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"327.73\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Political science\",\n \"level_3\": \"International relations and World politics\"\n }\n },\n \"secondary\": {\n \"code\": \"973.932\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"America and North America\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Comment Section\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":178,"cells":{"id":{"kind":"number","value":6806659362051358000,"string":"6,806,659,362,051,358,000"},"text":{"kind":"string","value":"Announcement\n\nCollapse\nNo announcement yet.\n\nMesa 19.0.7 Now Available As The Last Of The Series\n\nCollapse\nX\n • Filter\n • Time\n • Show\nClear All\nnew posts\n\n • Mesa 19.0.7 Now Available As The Last Of The Series\n\n Phoronix: Mesa 19.0.7 Now Available As The Last Of The Series\n\n Mesa 19.0.7 was released on Monday as the last Mesa 19.0 stable release, ending this quarterly update series from Q1...\n\n http://www.phoronix.com/scan.php?pag...9.0.7-Released\nWorking...\nX"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.phoronix.com/forums/forum/linux-graphics-x-org-drivers/opengl-vulkan-mesa-gallium3d/1109190-mesa-19-0-7-now-available-as-the-last-of-the-series\",\n \"source_domain\": \"www.phoronix.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"57741\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:O5TQKKTPAROZ5U62GYMWAMENUXQSYUYZ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-17T15:54:11Z\",\n \"WARC-IP-Address\": \"104.18.61.250\",\n \"WARC-Identified-Payload-Type\": \"application/xhtml+xml\",\n \"WARC-Payload-Digest\": \"sha1:Q7QFLNQOK5CP453MT2OY4B33M3553FKB\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.phoronix.com/forums/forum/linux-graphics-x-org-drivers/opengl-vulkan-mesa-gallium3d/1109190-mesa-19-0-7-now-available-as-the-last-of-the-series\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-24.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 13,\n 14,\n 23,\n 44,\n 45,\n 97,\n 98,\n 107,\n 109,\n 120,\n 129,\n 138,\n 148,\n 158,\n 159,\n 215,\n 216,\n 282,\n 283,\n 407,\n 408,\n 466,\n 477\n ],\n \"line_end_idx\": [\n 13,\n 14,\n 23,\n 44,\n 45,\n 97,\n 98,\n 107,\n 109,\n 120,\n 129,\n 138,\n 148,\n 158,\n 159,\n 215,\n 216,\n 282,\n 283,\n 407,\n 408,\n 466,\n 477,\n 478\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 478,\n \"ccnet_original_nlines\": 23,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.08695652335882187,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.0260869599878788,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.0833333283662796,\n \"rps_doc_frac_no_alph_words\": 0.3913043439388275,\n \"rps_doc_frac_unique_words\": 0.5277777910232544,\n \"rps_doc_mean_word_length\": 4.833333492279053,\n \"rps_doc_num_sentences\": 20,\n \"rps_doc_symbol_to_word_ratio\": 0.0260869599878788,\n \"rps_doc_unigram_entropy\": 3.395543336868286,\n \"rps_doc_word_count\": 72,\n \"rps_doc_frac_chars_dupe_10grams\": 0.3448275923728943,\n \"rps_doc_frac_chars_dupe_5grams\": 0.3448275923728943,\n \"rps_doc_frac_chars_dupe_6grams\": 0.3448275923728943,\n \"rps_doc_frac_chars_dupe_7grams\": 0.3448275923728943,\n \"rps_doc_frac_chars_dupe_8grams\": 0.3448275923728943,\n \"rps_doc_frac_chars_dupe_9grams\": 0.3448275923728943,\n \"rps_doc_frac_chars_top_2gram\": 0.09195402264595032,\n \"rps_doc_frac_chars_top_3gram\": 0.1034482792019844,\n \"rps_doc_frac_chars_top_4gram\": 0.17241379618644714,\n \"rps_doc_books_importance\": -44.37995147705078,\n \"rps_doc_books_importance_length_correction\": -50.1337890625,\n \"rps_doc_openwebtext_importance\": -17.56709098815918,\n \"rps_doc_openwebtext_importance_length_correction\": -23.3209285736084,\n \"rps_doc_wikipedia_importance\": -0.503885805606842,\n \"rps_doc_wikipedia_importance_length_correction\": -6.257722854614258\n },\n \"fasttext\": {\n \"dclm\": -0.000010009999641624745,\n \"english\": 0.8052539825439453,\n \"fineweb_edu_approx\": 0.8144555687904358,\n \"eai_general_math\": -0.000008820000402920414,\n \"eai_open_web_math\": 0.04063593968749046,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"005.4\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n },\n \"secondary\": {\n \"code\": \"781.2\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Music\",\n \"level_3\": \"Music theory\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"13\",\n \"label\": \"News (Org.)\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":179,"cells":{"id":{"kind":"number","value":-4659470370726606000,"string":"-4,659,470,370,726,606,000"},"text":{"kind":"string","value":"\nElliptic Curve Cryptography Explained – Fang-Pen's coding note\n\n\n30 bookmarks. First posted by romac 16 days ago.\n\n\nA primer and tutorial on Elliptical Curve Cryptography. More of an intuitive approach than mathematical. Good to get started and develop intuitions. Good visualizations as well.\necc  ellipticalcurves  cryptography  mathematics  visualization \nyesterday by drmeme\nRecently, I am learning how Elliptic Curve Cryptography works. I searched around the internet, found so many articles and videos explaining it. Most of them are…\nfrom instapaper\n11 days ago by johnrclark\nFang-Pen Lin's blog about programming\nsecurity  math  cryptography  encryption  elliptic \n14 days ago by geetarista\nFang-Pen Lin's blog about programming\ntype:article  cryptography  elliptic  curve \n14 days ago by endorama\nFang-Pen Lin's blog about programming\n15 days ago by parsoj\nElliptic Curve Cryptography Explained ()\nfrom twitter_favs\n16 days ago by fkbarrett\nElliptic Curve Cryptography\nElliptic  Curve  Cryptography \n16 days ago by guiambros\nElliptic Curve Cryptography Explained\nfrom twitter_favs\n16 days ago by demon386\nMy new article: Elliptic Curve Cryptography Explained\n👩🏻‍💻🔑✉️🔒👨‍💻\nsecurity  Cryptography  from twitter_favs\n16 days ago by romac"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://pinboard.in/url:99053faea154c1befb29213ffc79092d14df59e6\",\n \"source_domain\": \"pinboard.in\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"20091\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:7SY6NEYEQUBXCXWGTOLOLAEF7G7LWBGA\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-24T04:49:05Z\",\n \"WARC-IP-Address\": \"64.62.134.190\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:6DOHV5D5YXM7PRVSCN7DWNZYYMTVCLLG\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://pinboard.in/url:99053faea154c1befb29213ffc79092d14df59e6\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-173.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 1,\n 64,\n 65,\n 66,\n 115,\n 116,\n 117,\n 295,\n 360,\n 380,\n 542,\n 558,\n 584,\n 622,\n 674,\n 700,\n 738,\n 783,\n 807,\n 845,\n 867,\n 908,\n 926,\n 951,\n 979,\n 1010,\n 1035,\n 1073,\n 1091,\n 1115,\n 1169,\n 1181,\n 1223\n ],\n \"line_end_idx\": [\n 1,\n 64,\n 65,\n 66,\n 115,\n 116,\n 117,\n 295,\n 360,\n 380,\n 542,\n 558,\n 584,\n 622,\n 674,\n 700,\n 738,\n 783,\n 807,\n 845,\n 867,\n 908,\n 926,\n 951,\n 979,\n 1010,\n 1035,\n 1073,\n 1091,\n 1115,\n 1169,\n 1181,\n 1223,\n 1243\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1243,\n \"ccnet_original_nlines\": 33,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.21078431606292725,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.014705879613757133,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.029411759227514267,\n \"rps_doc_frac_no_alph_words\": 0.1666666716337204,\n \"rps_doc_frac_unique_words\": 0.52601158618927,\n \"rps_doc_mean_word_length\": 5.901733875274658,\n \"rps_doc_num_sentences\": 9,\n \"rps_doc_symbol_to_word_ratio\": 0.004901960026472807,\n \"rps_doc_unigram_entropy\": 4.098546028137207,\n \"rps_doc_word_count\": 173,\n \"rps_doc_frac_chars_dupe_10grams\": 0.11753182858228683,\n \"rps_doc_frac_chars_dupe_5grams\": 0.23408423364162445,\n \"rps_doc_frac_chars_dupe_6grams\": 0.14299705624580383,\n \"rps_doc_frac_chars_dupe_7grams\": 0.11753182858228683,\n \"rps_doc_frac_chars_dupe_8grams\": 0.11753182858228683,\n \"rps_doc_frac_chars_dupe_9grams\": 0.11753182858228683,\n \"rps_doc_frac_chars_top_2gram\": 0.06170421093702316,\n \"rps_doc_frac_chars_top_3gram\": 0.0705190971493721,\n \"rps_doc_frac_chars_top_4gram\": 0.13320274651050568,\n \"rps_doc_books_importance\": -100.6894760131836,\n \"rps_doc_books_importance_length_correction\": -100.6894760131836,\n \"rps_doc_openwebtext_importance\": -50.4499397277832,\n \"rps_doc_openwebtext_importance_length_correction\": -50.44993591308594,\n \"rps_doc_wikipedia_importance\": -56.19242477416992,\n \"rps_doc_wikipedia_importance_length_correction\": -56.19242477416992\n },\n \"fasttext\": {\n \"dclm\": 0.00002384000072197523,\n \"english\": 0.7787185311317444,\n \"fineweb_edu_approx\": 1.7650375366210938,\n \"eai_general_math\": 0.2303275465965271,\n \"eai_open_web_math\": 0.02295595034956932,\n \"eai_web_code\": 0.00001728999995975755\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"005.82\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computer programming\"\n }\n },\n \"secondary\": {\n \"code\": \"516.35\",\n \"labels\": {\n \"level_1\": \"Science and Natural history\",\n \"level_2\": \"Mathematics\",\n \"level_3\": \"Geometry, Algebraic\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":180,"cells":{"id":{"kind":"number","value":-8867990973809442000,"string":"-8,867,990,973,809,442,000"},"text":{"kind":"string","value":"Privacy Policy for Students\n\nPrivacy Notice for Students\n\nWhat is the purpose of this document?\nThis privacy notice outlines how we, My Future Choice Ltd (hereafter “MyFutureChoice), a limited company registered in England under company number 02049351, collects, stores and uses the personal data that you or your school, provide to us in relation to the careers assessment programmes that we offer to students. The purpose of our assessment programmes is to give you feedback and guidance to help you make informed choices about your future educational choices and careers.\n\nMyFutureChoice is committed to safeguarding your personal information. Whenever you provide personal information to us, including any information provided via your school, we are legally obliged to use it in accordance with all laws concerning the protection of personal information (we refer to these laws collectively in this privacy notice as the “data protection laws”).\n\nThis privacy notice applies to students participating in our careers assessment programmes and/or using our website or attending our events. We are required under data protection laws to notify you of the information contained in this privacy notice.\n\nIt is important that you read this notice, together with any other privacy notice or policy we may provide on specific occasions when we are collecting or processing personal information.\n\nWhat information will MyFutureChoice collect about you?\nPersonal data, or personal information, means any information about an individual from which that individual can be identified. It does not include data where the identity has been removed (anonymous data).\n\nWe may collect, store, and use the following categories of personal information about you:\n\n • Identity details such as your name, gender and age / date of birth.\n • Contact details such as your postal address and email address.\n • Educational details such as your educational achievements (including past and predicted grades) and other related details which we may analyse in conjunction with any interest inventories and tests that you complete as part of our assessment programmes.\n • Usage and technical data about to how you use our website and software services.\n\nWe may use the personal information that you or your school provide to us for both research purposes and improving our services although in these circumstances we will only use your information in an anonymised form.\n\nWe may, in limited circumstances, collect and use some information about your health such as your dietary requirements (if you are attending an event) or any medical condition or disability that you have (if you are participating in our assessment programmes). These are “special categories” of more sensitive personal information, which we explain in further detail in the next sections. Unless we tell you otherwise, we will not collect and process any other “special categories” of more sensitive personal information (such as information about your race, ethnicity or nationality, religious beliefs and sexual orientation).\n\nHow will MyFutureChoice collect and use your personal information?\n\nWe typically collect your personal information in the following ways:\n\n • We will often obtain your personal details from you directly when you participate in our careers assessment programmes (including the interviews you attend and the interest inventories and tests that you complete using our software).\n • We may be provided with your personal details via your school in the course of their administering the careers programme with you.\n • In limited circumstances, your school may give us sensitive personal information about you (known as “special categories” of data), namely: (i) information about your dietary requirements if we are holding events at your school; and (ii) any relevant medical condition or disability that may be relevant to the advice and guidance we will provide to you as part of our careers assessment programmes.\n • We may also collect technical data about your browsing actions and patterns as you interact with our website and assessment software. We collect this personal data using cookies, server logs and other similar automated technologies.\n\nWe will only use your personal data when the law allows us to. Most commonly, we will use your personal data in the following circumstances:\n\n • where it is necessary for our legitimate interests (or those of a third party) and our interests and fundamental rights do not override those interests; and/or\n • where we need to comply with a legal or regulatory obligation.\n\nWe explain how we use your personal information in more detail below.\n\nPurposes for which MyFutureChoice uses your personal information\n\nProviding our careers services:\nWe will use your personal information primarily for the purpose of providing our assessment services to you. This will involve giving you feedback and guidance to help you make informed choices about your future educational choices and careers. We use the information that we collect about you to tailor our feedback and guidance to you and your specific educational background, interests and career preferences. We do not use the results of the assessments to make decisions for or about you.\n\nMyFutureChoice’s legal basis for processing your personal information in this way is through your consent in agreeing to participate in the careers programme, and we ask the school or independent careers advisor to obtain your consent to share that data with us. The processing is also necessary for our legitimate interests, which are to hold our careers events and provide our assessment programmes to you as explained above. You are not obliged to provide your personal information to us but, without it, we are unlikely to be able to provide you with feedback and specific guidance on your future educational choices and careers.\n\nIn cases where your school gives us any “special categories” of personal data about you (in the limited circumstances explained above), we ask the school to obtain your consent to share that data with us. You are not obliged to give your consent for these “special categories” of data to be shared with us.\n\nHowever, if we do not know about your dietary requirements, we will not be able to accommodate your dietary needs at our events. Similarly, if we are not told about any relevant medical conditions or disabilities that you have, then the careers advice and guidance that we give to you may not be appropriately tailored to your situation.\n\nProtecting and developing our business:\nWhere we collect usage and technical data relating to your use of our website and software, we use that data to administer and protect our business and our website (including troubleshooting, data analysis, testing, system maintenance, support, hosting) and to improve our website, products, customer relationships and experiences. This is necessary for our legitimate interests (for running our business, provision of administration and IT services, network security, and to prevent fraud as well as to keep our website updated and relevant and to develop our business).\n\nHow will MyFutureChoice share and disclose your personal information?\nWe may share your personal information with third parties where required by law, where it is necessary to administer our working relationship with you or where we have another lawful basis for doing so. We ensure that access to your personal information is subject to restrictions on use and confidentiality commitments. Your personal data will be treated as confidential and will only be accessible by and/or disclosed as follows:\n\n • to our data processing staff and careers analysts/interviewers (who may be MyFutureChoice staff, consultants and/or sub-contractors);\n • to our IT service providers for the provision of IT services including support, hosting and data analytics;\n • to appropriate staff at your school (such as your careers teacher);\n • to your parent or guardian;\n • at your request or with your consent; or\n • for the purpose of investigating or preventing fraud or if the law otherwise permits it.\n\nWe will not disclose the results of your careers assessment to your parent or guardian if you write to us and ask us not to (in which case, any such disclosure will be a matter for you to decide with your school). Our staff, careers analysts/interviewers and third-party service providers are required to take appropriate security measures to protect your personal information in line with our policies. We do not allow our staff, careers analysts/interviewers and third-party service providers to use your personal data for their own purposes. We only permit them to process your personal data for specified purposes and in accordance with our instructions.\n\nInternational transfers\nWe do not transfer (or permit our third party service providers to transfer) your personal information outside of the European Economic Area.\n\nData security\nWe have put in place appropriate security measures to prevent your personal information from being accidentally lost, used or accessed in an unauthorised way, altered or disclosed. In addition, we limit access to your personal information to those employees, agents, contractors and other third parties who have a business need to know. They will only process your personal information on our instructions and they are subject to a duty of confidentiality. Details of these measures may be\nobtained from us using the details in the “Contacting us” section below.\n\nWe have also put in place procedures to deal with any suspected data security breach and will notify you and any applicable regulator of a suspected breach where we are legally required to do so.\n\nHow long will MyFutureChoice keep your personal information?\nWe will not retain your personal information for longer than necessary but, in case you want us to provide follow-up services to you at a later date, we will keep your personal information for a certain number of years after you have completed the programme. The number of years that we will keep this information will depend on the programme you completed:\n\nProgramme Period data is kept after testing is completed\n\n • MyUniChoices (Centigrade) 4 years\n • MyCareerChoices (Preview, including all variations) 6 years\n • MyAptitude (The Cambridge Profile) 6 years\n • MyFirstChoices (Probe) 4 years\n\nIf you would prefer that we didn’t retain your personal information over this period of time, please write to us to let us know (using the details specified in the “Contacting us” section below) and we will remove it from our systems. We may, however, anonymise the results of your careers assessment and keep that information indefinitely for the purpose of researching and analysing educational and careers trends from time to time and for the purpose of improving our services.\n\nYour data protection rights\nUnder certain circumstances, you have rights under data protection laws in relation to your personal information. This may include the following rights:\n\n • Request access to your personal information (commonly known as a “data subject access request”). This enables you to receive a copy of the personal information we hold about you and to check that we are lawfully processing it.\n • Request correction of the personal information that we hold about you. This enables you to have any incomplete or inaccurate information we hold about you corrected.\n • Request erasure of your personal information. This enables you to ask us to delete or remove personal information where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal information where you have exercised your right to object to processing (see below).\n • Object to processing of your personal information. This right applies where we are relying on our legitimate interests (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground. You also have the right to object where we are processing your personal information for direct marketing purposes.\n • Request the restriction of processing of your personal information. This enables you to ask us to suspend the processing of personal information about you, for example if you want us to establish its accuracy or the reason for processing it.\n • Request the transfer of your personal information to another party (known as the “right to data portability”).\n • Right to withdraw consent. In any circumstances where we have relied on your consent to the collection, processing and transfer of your personal information for a specific purpose, you have the right to withdraw your consent for that specific processing at any time. Once we have received notification that you have withdrawn your consent, we will no longer process your information for the purpose or purposes you originally agreed to, unless we have another legitimate basis for doing so in law. This will not affect the lawfulness of any processing carried out before you withdrew your consent.\n\nIf you wish to exercise any of the rights set out above, please contact us using the details in our “Contacting us” section below.\n\nYou will not have to pay a fee to access your personal information (or to exercise any of the other rights). However, we may charge a reasonable fee if your request is clearly unfounded, repetitive or excessive. Alternatively, we may refuse to comply with your request in these circumstances.\n\nWe may need to request specific information from you to help us confirm your identity and ensure your right to access your personal information (or to exercise any of your other rights). This is a security measure to ensure that personal information is not disclosed to any person who has no right to receive it. We may also contact you to ask you for further information in relation to your request to speed up our response.\n\nWe try to respond to all legitimate requests within one month. Occasionally it may take us longer than a month if your request is particularly complex or you have made a number of requests. In this case, we will notify you and keep you updated.\n\nData Protection Authority\nYou have the right to make a complaint at any time to the UK supervisory authority for data protection issues. This is the Information Commissioner’s Office (ICO) whose details can be accessed via the ICO website at https://ico.org.uk/global/contact-us/\n\nWe would, however, appreciate the chance to deal with your concerns before you approach the ICO so please do get in touch using the details in our “Contacting us” section below.\n\nChanges to this privacy notice\nWe reserve the right to update this privacy notice at any time, and we will provide you with a new privacy notice when we make any substantial updates. We may also notify you in other ways from time to time about the processing of your personal information.\n\nIf you have any questions about this privacy notice, please let us know using the “Contacting us” details below.\n\nContacting us\nOur details are as follows:\nMy Future Choice Ltd\nJoseph King House\nAbbey Farm Commercial Park\nHorsham St Faith\nNorwich\nNR10 3JU\nUK\nTel: +44 (0)1362 688395\nEmail: [email protected]"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.myfuturechoice.com/privacy-policy-for-students/\",\n \"source_domain\": \"www.myfuturechoice.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"94355\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:HUHNXFW3XYEFXRYHDW6DANYYSMQ5SY3N\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-18T00:36:29Z\",\n \"WARC-IP-Address\": \"104.28.5.196\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:6MJIFPF73DICNN5SMQ2O2RHTHDLBGN6E\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.myfuturechoice.com/privacy-policy-for-students/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-201.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 28,\n 29,\n 57,\n 58,\n 96,\n 576,\n 577,\n 952,\n 953,\n 1204,\n 1205,\n 1393,\n 1394,\n 1450,\n 1657,\n 1658,\n 1749,\n 1750,\n 1822,\n 1889,\n 2147,\n 2232,\n 2233,\n 2450,\n 2451,\n 3079,\n 3080,\n 3147,\n 3148,\n 3218,\n 3219,\n 3457,\n 3592,\n 3996,\n 4233,\n 4234,\n 4375,\n 4376,\n 4540,\n 4607,\n 4608,\n 4678,\n 4679,\n 4744,\n 4745,\n 4777,\n 5271,\n 5272,\n 5906,\n 5907,\n 6214,\n 6215,\n 6553,\n 6554,\n 6594,\n 7166,\n 7167,\n 7237,\n 7669,\n 7670,\n 7808,\n 7920,\n 7992,\n 8024,\n 8069,\n 8162,\n 8163,\n 8822,\n 8823,\n 8847,\n 8989,\n 8990,\n 9004,\n 9494,\n 9567,\n 9568,\n 9764,\n 9765,\n 9826,\n 10184,\n 10185,\n 10242,\n 10243,\n 10281,\n 10345,\n 10392,\n 10427,\n 10428,\n 10909,\n 10910,\n 10938,\n 11091,\n 11092,\n 11323,\n 11493,\n 11827,\n 12209,\n 12455,\n 12570,\n 13172,\n 13173,\n 13304,\n 13305,\n 13598,\n 13599,\n 14025,\n 14026,\n 14271,\n 14272,\n 14298,\n 14552,\n 14553,\n 14731,\n 14732,\n 14763,\n 15021,\n 15022,\n 15135,\n 15136,\n 15150,\n 15178,\n 15199,\n 15217,\n 15244,\n 15261,\n 15269,\n 15278,\n 15281,\n 15305\n ],\n \"line_end_idx\": [\n 28,\n 29,\n 57,\n 58,\n 96,\n 576,\n 577,\n 952,\n 953,\n 1204,\n 1205,\n 1393,\n 1394,\n 1450,\n 1657,\n 1658,\n 1749,\n 1750,\n 1822,\n 1889,\n 2147,\n 2232,\n 2233,\n 2450,\n 2451,\n 3079,\n 3080,\n 3147,\n 3148,\n 3218,\n 3219,\n 3457,\n 3592,\n 3996,\n 4233,\n 4234,\n 4375,\n 4376,\n 4540,\n 4607,\n 4608,\n 4678,\n 4679,\n 4744,\n 4745,\n 4777,\n 5271,\n 5272,\n 5906,\n 5907,\n 6214,\n 6215,\n 6553,\n 6554,\n 6594,\n 7166,\n 7167,\n 7237,\n 7669,\n 7670,\n 7808,\n 7920,\n 7992,\n 8024,\n 8069,\n 8162,\n 8163,\n 8822,\n 8823,\n 8847,\n 8989,\n 8990,\n 9004,\n 9494,\n 9567,\n 9568,\n 9764,\n 9765,\n 9826,\n 10184,\n 10185,\n 10242,\n 10243,\n 10281,\n 10345,\n 10392,\n 10427,\n 10428,\n 10909,\n 10910,\n 10938,\n 11091,\n 11092,\n 11323,\n 11493,\n 11827,\n 12209,\n 12455,\n 12570,\n 13172,\n 13173,\n 13304,\n 13305,\n 13598,\n 13599,\n 14025,\n 14026,\n 14271,\n 14272,\n 14298,\n 14552,\n 14553,\n 14731,\n 14732,\n 14763,\n 15021,\n 15022,\n 15135,\n 15136,\n 15150,\n 15178,\n 15199,\n 15217,\n 15244,\n 15261,\n 15269,\n 15278,\n 15281,\n 15305,\n 15329\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 15329,\n \"ccnet_original_nlines\": 129,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 1,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.48189717531204224,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.003620560048148036,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.11549601703882217,\n \"rps_doc_frac_unique_words\": 0.22986167669296265,\n \"rps_doc_mean_word_length\": 5.085028648376465,\n \"rps_doc_num_sentences\": 95,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.27032995223999,\n \"rps_doc_word_count\": 2458,\n \"rps_doc_frac_chars_dupe_10grams\": 0.04384351149201393,\n \"rps_doc_frac_chars_dupe_5grams\": 0.16953356564044952,\n \"rps_doc_frac_chars_dupe_6grams\": 0.10880870372056961,\n \"rps_doc_frac_chars_dupe_7grams\": 0.08440674841403961,\n \"rps_doc_frac_chars_dupe_8grams\": 0.06624530255794525,\n \"rps_doc_frac_chars_dupe_9grams\": 0.051204100251197815,\n \"rps_doc_frac_chars_top_2gram\": 0.06992559134960175,\n \"rps_doc_frac_chars_top_3gram\": 0.05888471007347107,\n \"rps_doc_frac_chars_top_4gram\": 0.012000960297882557,\n \"rps_doc_books_importance\": -1399.0223388671875,\n \"rps_doc_books_importance_length_correction\": -1399.0223388671875,\n \"rps_doc_openwebtext_importance\": -723.119140625,\n \"rps_doc_openwebtext_importance_length_correction\": -723.119140625,\n \"rps_doc_wikipedia_importance\": -613.7164916992188,\n \"rps_doc_wikipedia_importance_length_correction\": -613.7164916992188\n },\n \"fasttext\": {\n \"dclm\": 0.004637119825929403,\n \"english\": 0.9332590103149414,\n \"fineweb_edu_approx\": 0.9330303072929382,\n \"eai_general_math\": 0.0017301399493589997,\n \"eai_open_web_math\": 0.029043259099125862,\n \"eai_web_code\": 0.1495305299758911\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"344.7\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Law\",\n \"level_3\": \"Martial law\"\n }\n },\n \"secondary\": {\n \"code\": \"344\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Law\",\n \"level_3\": \"Martial law\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"11\",\n \"label\": \"Legal/Regulatory\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"11\",\n \"label\": \"Legal Notices\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":181,"cells":{"id":{"kind":"number","value":-1849904887435140000,"string":"-1,849,904,887,435,140,000"},"text":{"kind":"string","value":"Spieler aus DE flag Deutschland Accepted!\n\nJackpot City\n\nJackpotCity Casino Review\n\nLooking for a safe, secure and reputable place to play online casino games? Look no further than JackpotCity Casino. This virtual players’ paradise is packed to the brim with feature-packed slots and real live table games, endless member rewards, multiple sign-up bonuses, prize-packed promotions, daily offers and so much more. In short, JackpotCity’s got it all. And considering that it’s been around since 1998, it’s also stood the test of time, proving its popularity with continuously growing player numbers and new-made jackpot-winning millionaires. Best of all, players can switch between their PCs, laptops, tablets and smartphones to enjoy first-class gaming on the go, at the office or from the comfort of their homes.\n\nFour Welcome Bonuses\n\nNothing says ‘welcome to the casino’ quite as well as four sign-up bonus offers. And that’s exactly what you’ll get when you kick off your play at JackpotCity Casino. To get started, simply register your new player account and log in to play. Your welcome bonuses will kick in the moment you make your first four deposits – each time, you’ll receive a 100% match bonus up to 400 bonus credits in your selected currency. That’s double your money up to 400 on each of your first four deposits, giving you a total of an incredible 1600 free bonus credits to boost your play.\n\nMore Player Rewards\n\nAside from a lucrative welcome offer, existing JackpotCity Casino players also have daily bonus offers to look forward to in the form of Deal-A-Day rewards. How it works is simple. If you’re a regular player, you’ll get comped with a new tailor-made match bonus once a day. All you need to do to enjoy this benefit, is log in and make a deposit – that’s it. If you keep playing during the day, you could unlock even more bonus offers. Another programme JackpotCity uses to incentivise wagering, is Loyalty rewards. When you place cash bets, you earn loyalty points. And once you’ve got enough, you get to exchange it for cash credits, which you can play with or cash out. It’s a win-win all around. Also make sure to check out the casino’s Promotions section in the software, it’s packed with fun-themed promos all bursting at the seams with sought-after prizes. Previous winners have walked away with cash, gadgets, luxury items, tickets to events, weekends away and even cruise holidays.\n\nOver 500 Casino Games\n\nJackpotCity players have the pick of the crop when it comes to its games selection. By using award-winning Microgaming software for all their games, players are guaranteed of simply the best quality graphics, audio effects, animation, navigation and features. They also have more than 500 world-class gaming options to choose from, suitable for every level of play and every size bankroll. These include realistic table games, instant win scratch cards, various video poker options and visually enticing video slots packed with interactive features, soundtracks, movie clips and 3D effects. Players can even enjoy Live Dealer table games like blackjack, baccarat and roulette, where they get to interact with live dealers, made possible via video streaming. Some of the top title games at JackpotCity include the blockbuster-themed Tomb Raider™, Terminator 2™ and Jurassic Park™ Online Slots.\n\nMillions in Payouts\n\nIf players are dreaming about that one big life-changing win, there really is only one type of game to play – progressive jackpot slots. These include games like Treasure Nile, King Cashalot, Major Millions and the most popular of them all, Mega Moolah, which has a mega jackpot that promises to never dip below 1 million. As a result, this very game has turned many ordinary players into overnight millionaires – often in only a matter of spins.\n\nLicensed, Safe & Secure\n\nJackpotCity players can rest assured that the casino is as safe, private and secure as it gets. Not only does it carry a sought-after Maltese gaming licence, but it’s also received the industry watchdog, eCOGRA’s, seal of approval for fast payouts, fair gaming and top player service. With the most reputable banking options per region available, safe depositing and withdrawals also go without saying. Players are free to choose their favourites from a list of web wallets, prepaid cards, echeques, debit cards and of course, credit cards.\n\nProfessional Support\n\nSince JackpotCity provides gaming to players from all corners of the globe, it not only accepts a number of currencies, but also provides support in multiple languages. The customer support centre is fully trained to address any possible player issues and can be reached around the clock via either email, phone or an instant online live chat facility."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.slotspill.com/de/online-casino/jackpot-city/\",\n \"source_domain\": \"www.slotspill.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"32407\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:CEZVEYBCFR5I3MRFOMOULGJABU272AM6\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-23T08:07:02Z\",\n \"WARC-IP-Address\": \"87.98.245.133\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:5V4XGWV64X6XMIUEMRNQXPABBORYYGWA\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.slotspill.com/de/online-casino/jackpot-city/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-28.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 42,\n 43,\n 56,\n 57,\n 83,\n 84,\n 813,\n 814,\n 835,\n 836,\n 1408,\n 1409,\n 1429,\n 1430,\n 2420,\n 2421,\n 2443,\n 2444,\n 3337,\n 3338,\n 3358,\n 3359,\n 3806,\n 3807,\n 3831,\n 3832,\n 4373,\n 4374,\n 4395,\n 4396\n ],\n \"line_end_idx\": [\n 42,\n 43,\n 56,\n 57,\n 83,\n 84,\n 813,\n 814,\n 835,\n 836,\n 1408,\n 1409,\n 1429,\n 1430,\n 2420,\n 2421,\n 2443,\n 2444,\n 3337,\n 3338,\n 3358,\n 3359,\n 3806,\n 3807,\n 3831,\n 3832,\n 4373,\n 4374,\n 4395,\n 4396,\n 4748\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 4748,\n \"ccnet_original_nlines\": 30,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.37763711810112,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.003164560068398714,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.16139240562915802,\n \"rps_doc_frac_unique_words\": 0.5012919902801514,\n \"rps_doc_mean_word_length\": 4.961240291595459,\n \"rps_doc_num_sentences\": 38,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.515873908996582,\n \"rps_doc_word_count\": 774,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.01770832948386669,\n \"rps_doc_frac_chars_top_3gram\": 0.006770830135792494,\n \"rps_doc_frac_chars_top_4gram\": 0.010937499813735485,\n \"rps_doc_books_importance\": -471.1047668457031,\n \"rps_doc_books_importance_length_correction\": -471.1047668457031,\n \"rps_doc_openwebtext_importance\": -191.48876953125,\n \"rps_doc_openwebtext_importance_length_correction\": -191.48876953125,\n \"rps_doc_wikipedia_importance\": -128.48037719726562,\n \"rps_doc_wikipedia_importance_length_correction\": -128.48037719726562\n },\n \"fasttext\": {\n \"dclm\": 0.0008115199743770063,\n \"english\": 0.9472896456718445,\n \"fineweb_edu_approx\": 0.6418247222900391,\n \"eai_general_math\": 0.0032667499035596848,\n \"eai_open_web_math\": 0.05398846045136452,\n \"eai_web_code\": 0.0029802299104630947\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"338.4\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n },\n \"secondary\": {\n \"code\": \"004.67\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Computers and Computer science\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"14\",\n \"label\": \"Reviews/Critiques\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":182,"cells":{"id":{"kind":"number","value":3559576516058474000,"string":"3,559,576,516,058,474,000"},"text":{"kind":"string","value":"(048) 434-2022 | +63917-562-8887 | +63949-996-7491 info@trioqueentourspalawan.com.ph\n\nLogin\n\nSign Up\n\nAfter creating an account, you'll be able to track your payment status, track the confirmation and you can also rate the tour after you finished the tour.\nUsername*\nPassword*\nConfirm Password*\nFirst Name*\nLast Name*\nBirth Date*\nEmail*\nPhone*\nCountry*\n* Creating an account means you're okay with our Terms of Service and Privacy Statement.\nPlease agree to all the terms and conditions before proceeding to the next step\n\nAlready a member?\n\nLogin\n(048) 434-2022 | +63917-562-8887 | +63949-996-7491 info@trioqueentourspalawan.com.ph\n\nLogin\n\nSign Up\n\nAfter creating an account, you'll be able to track your payment status, track the confirmation and you can also rate the tour after you finished the tour.\nUsername*\nPassword*\nConfirm Password*\nFirst Name*\nLast Name*\nBirth Date*\nEmail*\nPhone*\nCountry*\n* Creating an account means you're okay with our Terms of Service and Privacy Statement.\nPlease agree to all the terms and conditions before proceeding to the next step\n\nAlready a member?\n\nLogin\n\nSICSICAN FIREFLY WATCHING WITH BUFFET DINNER (PPC-UCSC4-03.1)\n\n0\nPrice\nFrom₱1,300\nPrice\nFrom₱1,300\nBooking Form\nEnquiry Form\nFull Name*\nEmail Address*\nYour Enquiry*\n* Creating an account means you're okay with our Terms of Service and Privacy Statement.\nPlease agree to all the terms and conditions before proceeding to the next step\nAvailable: 100 seats\n* Please select all required fields to proceed to the next step.\n\nProceed Booking\n\nSave To Wish List\n\nAdding item to wishlist requires an account\n\n146\n\nWant Another Tour?\n\nSOUTHERN & NORTHERN PALAWAN LAND TRANSFER\n\nWhy Book With Us?\n\n • No-hassle best price guarantee\n • Customer care available 24/7\n • Hand-picked tours and activities\n • Free Travel Insurance\n\nGot a Question?\n\nDo not hesitate to give us a call. We are an expert team and we are happy to talk to you.\n\nLandline: (048) 434-2022 | Globe: +63917-562-8887 | Smart: +63949-996-7491\n\ninfo@trioqueentourspalawan.com.ph\n\nCurrency Converter\n\nCurrency Converter: PHP/USD\n\n5-6 Hours\nAvailability : All Year Round\nAnywhere\nPuerto Princesa City\nMin Age : All ages\nMax People : 100\nTour Details\n\nBe enthralled by the fascinating sight of myriad colonies of fireflies illuminating the riverbanks! Wonder\nat the unpredictability of scenes that unfold – will it be a burst of light or a subtle display?\n\nDeparture & Return Location\n\nStart time/place: 1700 H  |Accommodation in Puerto Princesa City\n\nEnd time/place: 2300 H  |  Return to original departure point\n\nPrice Includes\n\n • Services of Community Guide\n • Air-conditioned land transfer\n • Buffet Dinner\n • Entrance Fees/Paddle Boat Fees\n\nPrice Excludes\n\n • Any kind of personal expenses or optional tours/meals ordered.\n • Gratuities (optional: Tips for guides and drivers)\n\nComplimentary Items:\n\n • Travel Insurance (65 years old and under)\n • Welcome Lei & Tarp\nWhat to Expect\n\nA light show that will never be equaled. Never take your eyes off at the magic as it can instantly change.\n\n • Dreamlike tour de force\n • Magnificent light show directed by nature\n • Peace, surprise, harmony with nature\nWhat To Wear\nWhat To Bring\nNotes\nTerms & Conditions\nWhat To Wear\n\n✓ Sunglasses, Sun hat\n✓ Preferred clothes [Pants/Polo, T-shirt, or any comfortable clothing]\n\nWhat To Bring\n\n✓ Sun block\n✓ Camera\n\nNotes\n 1. Prices quoted requires minimum of ten (10) persons per booking.\n\n 2. Private tour arrangement and applicable to all markets.\n\n 3. Pick up & Drop off to & from Accommodation is Free of Charge within the City of Puerto Princesa only.\n\n 4. Discount by age bracket:         \n -2 years old & below children are free of charge.\n -3-6 years old children are charge of 50% of the adult rate.\n -7 years old & above are considered/charged of Adult rate.\n\n 5. Prices may change without Prior Notice until Finalized.\n\nTerms & Conditions\n\nConfirmation\n\n 1. You will receive a confirmation email and voucher instantly after booking.\n\n 2. Bank transfer payment will be on hold within 24 hours from the time of booking. You will receive a confirmation via email once payment required is completed and verified. Failure to complete the bank transfer on the given date will automatically open the booking to others.\n\n 3. Full payment settlement should be done at least 5 working days upon arrival.\n\nNo show\n\n 1. Failure of the guests to show up on the date and time of booking shall result to the automatic CANCELLATION as well as forfeiture of all payments made.\n\nCancellation\n\n 1. Full refundswill be issued for cancelations made at least 5 days prior to the activity. However, this voucher is transferrable. You may choose to transfer the date of the tour or transfer the booking to another person but the date of tour should only be within 1 month from cancellation. Once the transfer has been completed, the trip should be undertaken. No second cancellation or transfer will be accepted.\n\n 2. Any unutilized services of the tour package is non-refundable.\n\n Force Majeure\n\n 1. In case of force majeure, alternative tours and services shall be offered (if applicable) within the unused budget; other requested services will be subject to additional charges and approval.\n\n 2. In case of acts of God, fortuitous events, or any condition beyond our control, Trio Queen Travel & tours or our carriers shall not be held responsible for failure to deliver services, nor be obligated to provide additional services. Delays and/or cancellations of flights and/or boat transfer resulting from or related to weather disturbances or as mandated by the government authorities are beyond the control of Trio Queen Travel & Tours.\n\n \n\nItinerary\n\nDAY TRIPCITY HERITAGE WITH LIGHT SNACK & LUNCH\n\n0800 H – Pick up at accommodation\nVisit to the following historical places:\n1. Palawan Special Battalion (WW-II) Memorial Museum\n2. Palawan Heritage Center\n3. Palawan Museum\n4. Binuatan Creation Weaving Center\n5. Eco Butterfly Garden & Tribal Village\n\n1200H LUNCH AT BAKER'S HILL RESTAURANT\n\n\nVisit to the following natural and man-made tourist attractions:\n6. Mitra’s Ranch\n7. Iwahig Penal Colony Farm\n8. Crocodile Farm & Nature Park\n9. Puerto Princesa Baywalk\n10. Immaculate Conception Cathedral\n11. Plaza Cuartel\n12. Pasalubong Center\n1700 H – Drop off at accommodation | End of tour\n\nTrip Time and Duration\n\nDuration: 5-6 hrs.\nStart: 5:00-6:00pm\nEnd: 10:00-11:00pm\n\nMap\n\nPhotos\n20 travellers are considering this tour right now!\nCertifications & Registrations Terms & Condition Privacy Policy Plan A Tour? Follow Us Twit With Us IG with Us"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.trioqueentourspalawan.com.ph/tour/sicsican-firefly-watching-with-buffet-dinner-ppc-ucsc4-03-1/\",\n \"source_domain\": \"www.trioqueentourspalawan.com.ph\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"195243\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:6RCSRBYDJGSYZHTTM6XII3NORVA4WXPJ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-23T06:29:23Z\",\n \"WARC-IP-Address\": \"148.66.136.153\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:2VX6AK2WUV6WLMPUE75EGIZO2EK5WFLG\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.trioqueentourspalawan.com.ph/tour/sicsican-firefly-watching-with-buffet-dinner-ppc-ucsc4-03-1/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-81.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 85,\n 86,\n 92,\n 93,\n 101,\n 102,\n 257,\n 267,\n 277,\n 295,\n 307,\n 318,\n 330,\n 337,\n 344,\n 353,\n 442,\n 522,\n 523,\n 541,\n 542,\n 548,\n 633,\n 634,\n 640,\n 641,\n 649,\n 650,\n 805,\n 815,\n 825,\n 843,\n 855,\n 866,\n 878,\n 885,\n 892,\n 901,\n 990,\n 1070,\n 1071,\n 1089,\n 1090,\n 1096,\n 1097,\n 1159,\n 1160,\n 1162,\n 1168,\n 1179,\n 1185,\n 1196,\n 1209,\n 1222,\n 1233,\n 1248,\n 1262,\n 1351,\n 1431,\n 1452,\n 1517,\n 1518,\n 1534,\n 1535,\n 1553,\n 1554,\n 1598,\n 1599,\n 1603,\n 1604,\n 1623,\n 1624,\n 1666,\n 1667,\n 1685,\n 1686,\n 1721,\n 1754,\n 1791,\n 1817,\n 1818,\n 1834,\n 1835,\n 1925,\n 1926,\n 2001,\n 2002,\n 2036,\n 2037,\n 2056,\n 2057,\n 2085,\n 2086,\n 2096,\n 2126,\n 2135,\n 2156,\n 2175,\n 2192,\n 2205,\n 2206,\n 2313,\n 2410,\n 2411,\n 2439,\n 2440,\n 2505,\n 2506,\n 2568,\n 2569,\n 2584,\n 2585,\n 2617,\n 2651,\n 2669,\n 2704,\n 2705,\n 2720,\n 2721,\n 2788,\n 2843,\n 2844,\n 2865,\n 2866,\n 2912,\n 2935,\n 2950,\n 2951,\n 3058,\n 3059,\n 3087,\n 3133,\n 3174,\n 3187,\n 3201,\n 3207,\n 3226,\n 3239,\n 3240,\n 3262,\n 3333,\n 3334,\n 3348,\n 3349,\n 3361,\n 3370,\n 3371,\n 3377,\n 3446,\n 3447,\n 3508,\n 3509,\n 3616,\n 3617,\n 3656,\n 3710,\n 3775,\n 3838,\n 3839,\n 3900,\n 3901,\n 3920,\n 3921,\n 3934,\n 3935,\n 4015,\n 4016,\n 4295,\n 4296,\n 4378,\n 4379,\n 4387,\n 4388,\n 4545,\n 4546,\n 4559,\n 4560,\n 4975,\n 4976,\n 5044,\n 5045,\n 5060,\n 5061,\n 5259,\n 5260,\n 5707,\n 5708,\n 5710,\n 5711,\n 5721,\n 5722,\n 5769,\n 5770,\n 5804,\n 5846,\n 5899,\n 5926,\n 5944,\n 5980,\n 6021,\n 6022,\n 6061,\n 6062,\n 6063,\n 6128,\n 6145,\n 6173,\n 6205,\n 6232,\n 6268,\n 6286,\n 6308,\n 6357,\n 6358,\n 6381,\n 6382,\n 6401,\n 6420,\n 6439,\n 6440,\n 6444,\n 6445,\n 6452,\n 6503\n ],\n \"line_end_idx\": [\n 85,\n 86,\n 92,\n 93,\n 101,\n 102,\n 257,\n 267,\n 277,\n 295,\n 307,\n 318,\n 330,\n 337,\n 344,\n 353,\n 442,\n 522,\n 523,\n 541,\n 542,\n 548,\n 633,\n 634,\n 640,\n 641,\n 649,\n 650,\n 805,\n 815,\n 825,\n 843,\n 855,\n 866,\n 878,\n 885,\n 892,\n 901,\n 990,\n 1070,\n 1071,\n 1089,\n 1090,\n 1096,\n 1097,\n 1159,\n 1160,\n 1162,\n 1168,\n 1179,\n 1185,\n 1196,\n 1209,\n 1222,\n 1233,\n 1248,\n 1262,\n 1351,\n 1431,\n 1452,\n 1517,\n 1518,\n 1534,\n 1535,\n 1553,\n 1554,\n 1598,\n 1599,\n 1603,\n 1604,\n 1623,\n 1624,\n 1666,\n 1667,\n 1685,\n 1686,\n 1721,\n 1754,\n 1791,\n 1817,\n 1818,\n 1834,\n 1835,\n 1925,\n 1926,\n 2001,\n 2002,\n 2036,\n 2037,\n 2056,\n 2057,\n 2085,\n 2086,\n 2096,\n 2126,\n 2135,\n 2156,\n 2175,\n 2192,\n 2205,\n 2206,\n 2313,\n 2410,\n 2411,\n 2439,\n 2440,\n 2505,\n 2506,\n 2568,\n 2569,\n 2584,\n 2585,\n 2617,\n 2651,\n 2669,\n 2704,\n 2705,\n 2720,\n 2721,\n 2788,\n 2843,\n 2844,\n 2865,\n 2866,\n 2912,\n 2935,\n 2950,\n 2951,\n 3058,\n 3059,\n 3087,\n 3133,\n 3174,\n 3187,\n 3201,\n 3207,\n 3226,\n 3239,\n 3240,\n 3262,\n 3333,\n 3334,\n 3348,\n 3349,\n 3361,\n 3370,\n 3371,\n 3377,\n 3446,\n 3447,\n 3508,\n 3509,\n 3616,\n 3617,\n 3656,\n 3710,\n 3775,\n 3838,\n 3839,\n 3900,\n 3901,\n 3920,\n 3921,\n 3934,\n 3935,\n 4015,\n 4016,\n 4295,\n 4296,\n 4378,\n 4379,\n 4387,\n 4388,\n 4545,\n 4546,\n 4559,\n 4560,\n 4975,\n 4976,\n 5044,\n 5045,\n 5060,\n 5061,\n 5259,\n 5260,\n 5707,\n 5708,\n 5710,\n 5711,\n 5721,\n 5722,\n 5769,\n 5770,\n 5804,\n 5846,\n 5899,\n 5926,\n 5944,\n 5980,\n 6021,\n 6022,\n 6061,\n 6062,\n 6063,\n 6128,\n 6145,\n 6173,\n 6205,\n 6232,\n 6268,\n 6286,\n 6308,\n 6357,\n 6358,\n 6381,\n 6382,\n 6401,\n 6420,\n 6439,\n 6440,\n 6444,\n 6445,\n 6452,\n 6503,\n 6613\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 6613,\n \"ccnet_original_nlines\": 224,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.24981188774108887,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.03009781986474991,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.27012792229652405,\n \"rps_doc_frac_unique_words\": 0.4469548165798187,\n \"rps_doc_mean_word_length\": 5.075638294219971,\n \"rps_doc_num_sentences\": 76,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.647200584411621,\n \"rps_doc_word_count\": 1018,\n \"rps_doc_frac_chars_dupe_10grams\": 0.19256821274757385,\n \"rps_doc_frac_chars_dupe_5grams\": 0.2030191570520401,\n \"rps_doc_frac_chars_dupe_6grams\": 0.19256821274757385,\n \"rps_doc_frac_chars_dupe_7grams\": 0.19256821274757385,\n \"rps_doc_frac_chars_dupe_8grams\": 0.19256821274757385,\n \"rps_doc_frac_chars_dupe_9grams\": 0.19256821274757385,\n \"rps_doc_frac_chars_top_2gram\": 0.007741440087556839,\n \"rps_doc_frac_chars_top_3gram\": 0.01645055040717125,\n \"rps_doc_frac_chars_top_4gram\": 0.010063869878649712,\n \"rps_doc_books_importance\": -568.7667846679688,\n \"rps_doc_books_importance_length_correction\": -568.7667846679688,\n \"rps_doc_openwebtext_importance\": -350.060546875,\n \"rps_doc_openwebtext_importance_length_correction\": -350.060546875,\n \"rps_doc_wikipedia_importance\": -289.62890625,\n \"rps_doc_wikipedia_importance_length_correction\": -289.62890625\n },\n \"fasttext\": {\n \"dclm\": 0.00026338998577557504,\n \"english\": 0.8245627284049988,\n \"fineweb_edu_approx\": 0.7597707509994507,\n \"eai_general_math\": 0.00012170999980298802,\n \"eai_open_web_math\": 0.0705685019493103,\n \"eai_web_code\": 0.00004958999852533452\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"910.41\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Geography and Voyages and travels\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"595.789\",\n \"labels\": {\n \"level_1\": \"Science and Natural history\",\n \"level_2\": \"Zoology\",\n \"level_3\": \"Arthropoda and Worms\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":183,"cells":{"id":{"kind":"number","value":-1408898317747935000,"string":"-1,408,898,317,747,935,000"},"text":{"kind":"string","value":"kingsnake.com - reptile and amphibian classifieds, breeders, forums, photos, videos and more\n\nreturn to main index\n\n  mobile - desktop\nfollow us on facebook follow us on twitter follow us on YouTube link to us on LinkedIn\n \nClick here for LLL Reptile & Supply\nMealworms, Crickets, Dubia, More...\nAvailable Now at New York Worms!\nLocate a business by name: click to list your business\nsearch the classifieds. buy an account\nevents by zip code list an event\nSearch the forums             Search in:\nNews & Events: Herp Photo of the Day: Lizard . . . . . . . . . .  Herp Photo of the Day: Axolotl . . . . . . . . . .  MAHS Fox Valley Meeting - Oct. 18, 2019 . . . . . . . . . .  ReptiCon West Palm Beach - Oct. 19-20, 2019 . . . . . . . . . .  ReptiCon Denver - Oct. 19-20, 2019 . . . . . . . . . .  ReptiCon Charlotte - Oct. 19-20, 2019 . . . . . . . . . .  DFW Herpetolocial Society Meeting - Oct. 19, 2019 . . . . . . . . . .  Long Island Reptile Expo - Oct. 20, 2019 . . . . . . . . . .  Bay Area Amph. and Reptile Society Meeti - Oct. 25, 2019 . . . . . . . . . .  Suncoast Herp Society Meeting - Oct. 26, 2019 . . . . . . . . . .  Richmond Reptile Expo - Oct. 26, 2019 . . . . . . . . . .  ReptiDay Gainesville - Oct. 26, 2019 . . . . . . . . . . \n\nRick (and others), wetland filter question\n\n\n[ Follow Ups ] [ Post Followup ] [ The Water Dragon and Basilisk Forum ]\n\nPosted by rick gordon on April 29, 2003 at 12:01:01:\n\nIn Reply to: Rick (and others), wetland filter question posted by dsgnGrl on April 29, 2003 at 09:03:31:\n\n:thats algae, it needs plenty of light to grow.\nRick:: Live moss is not a necessary part of the filter and is hard to grow, however a wetland filter does provide an ideal environment in which to grow it. You will have to seed it with moss spores or patches of collected moss to get it started. And as mentioned above good lighting is essential. I have some moss growing on mine and reindeer moss which is pretty cool. Carolina biological supply is a good source for moss and moss growing products, see the link below. As far as the solids are concerned, I have a couple small rosy red minnows in the pond area. They pick at the solids and break them up. You could also try crayfish, fiddler crabs,ghost shrimp and aquatic frogs. No guarantee that they won't end up as feeders though. The watercolor will look like tea at first because of the sphagnum moss, it will clear in time.\n\n\n\n\nFollow Ups:\n\n\n\n\n[ Follow Ups ] [ The Water Dragon and Basilisk Forum ]"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://forum.kingsnake.com/dragon/messages/17068.html\",\n \"source_domain\": \"forum.kingsnake.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"39729\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:LMF5LYIU7RIOC4BIPZ64ERNUTJ37PVEP\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-18T01:24:16Z\",\n \"WARC-IP-Address\": \"209.198.140.182\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:XNBLGNJVDPPNPQ7C36O5MVXVXGZOMLF7\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://forum.kingsnake.com/dragon/messages/17068.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-144.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 93,\n 94,\n 115,\n 116,\n 135,\n 222,\n 224,\n 260,\n 296,\n 329,\n 384,\n 423,\n 456,\n 497,\n 1251,\n 1252,\n 1295,\n 1296,\n 1297,\n 1370,\n 1371,\n 1424,\n 1425,\n 1530,\n 1531,\n 1579,\n 2411,\n 2412,\n 2413,\n 2414,\n 2415,\n 2427,\n 2428,\n 2429,\n 2430,\n 2431\n ],\n \"line_end_idx\": [\n 93,\n 94,\n 115,\n 116,\n 135,\n 222,\n 224,\n 260,\n 296,\n 329,\n 384,\n 423,\n 456,\n 497,\n 1251,\n 1252,\n 1295,\n 1296,\n 1297,\n 1370,\n 1371,\n 1424,\n 1425,\n 1530,\n 1531,\n 1579,\n 2411,\n 2412,\n 2413,\n 2414,\n 2415,\n 2427,\n 2428,\n 2429,\n 2430,\n 2431,\n 2485\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 2485,\n \"ccnet_original_nlines\": 36,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.21192052960395813,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.008278150111436844,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.027027029544115067,\n \"rps_doc_frac_no_alph_words\": 0.41721853613853455,\n \"rps_doc_frac_unique_words\": 0.54666668176651,\n \"rps_doc_mean_word_length\": 4.530666828155518,\n \"rps_doc_num_sentences\": 39,\n \"rps_doc_symbol_to_word_ratio\": 0.0016556299524381757,\n \"rps_doc_unigram_entropy\": 5.00028657913208,\n \"rps_doc_word_count\": 375,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.11300764977931976,\n \"rps_doc_frac_chars_dupe_6grams\": 0.07533843070268631,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.00941730011254549,\n \"rps_doc_frac_chars_top_3gram\": 0.0176574494689703,\n \"rps_doc_frac_chars_top_4gram\": 0.016480280086398125,\n \"rps_doc_books_importance\": -217.75738525390625,\n \"rps_doc_books_importance_length_correction\": -217.75738525390625,\n \"rps_doc_openwebtext_importance\": -95.64453125,\n \"rps_doc_openwebtext_importance_length_correction\": -95.64453125,\n \"rps_doc_wikipedia_importance\": -40.35582733154297,\n \"rps_doc_wikipedia_importance_length_correction\": -40.35582733154297\n },\n \"fasttext\": {\n \"dclm\": -9.500000146545062e-7,\n \"english\": 0.6061475872993469,\n \"fineweb_edu_approx\": 1.2499959468841553,\n \"eai_general_math\": 0.0002480100083630532,\n \"eai_open_web_math\": 0.11417561769485474,\n \"eai_web_code\": 0.00010132999886991456\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"639.16\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Agriculture\",\n \"level_3\": \"Hunting, Fishing, Trapping, and Fish culture\"\n }\n },\n \"secondary\": {\n \"code\": \"635.93\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Agriculture\",\n \"level_3\": \"Gardening\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"18\",\n \"label\": \"Q&A Forum\"\n },\n \"secondary\": {\n \"code\": \"23\",\n \"label\": \"Tutorial\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":184,"cells":{"id":{"kind":"number","value":-233511777366548580,"string":"-233,511,777,366,548,580"},"text":{"kind":"string","value":"Wings And Wheels by Emirates Airlines\n\n \n\nWhether you are transporting a classic, luxury or super car, our specialized Emirates Wheels service is designed to offer you maximum flexibility and reliability.\n\nWe have a team of automobile transportation experts, committed to delivering your cars to your stated destination safely and securely.\n\nManagement of all mandatory documentation for permits and insurance on your behalf is also available.\n\nFly your car to any of our destinations worldwide or choose our exclusive package to five European countries* and the USA.\n\n*UK, France, Germany, Switzerland and Italy\n\n \n\nEmirates Wheels Air Cargo - Door To Door Service\n\n \nexotic-car-transport-bugatti.jpg\n\nTRADE TO TRADE\n\nSamuri motor company LIMITED"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.samurimotorcompany.com/world-wide-car-sourcing\",\n \"source_domain\": \"www.samurimotorcompany.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"60670\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:LJNULZ22XJE7TOJAKJGQBYEL73GBHVGD\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-16T02:08:23Z\",\n \"WARC-IP-Address\": \"198.185.159.144\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:IW65INZJICCGFALPE73OPEDGLTMW7XQ5\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.samurimotorcompany.com/world-wide-car-sourcing\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-214.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 38,\n 39,\n 41,\n 42,\n 205,\n 206,\n 341,\n 342,\n 444,\n 445,\n 568,\n 569,\n 613,\n 614,\n 616,\n 617,\n 666,\n 667,\n 669,\n 702,\n 703,\n 718,\n 719\n ],\n \"line_end_idx\": [\n 38,\n 39,\n 41,\n 42,\n 205,\n 206,\n 341,\n 342,\n 444,\n 445,\n 568,\n 569,\n 613,\n 614,\n 616,\n 617,\n 666,\n 667,\n 669,\n 702,\n 703,\n 718,\n 719,\n 747\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 747,\n \"ccnet_original_nlines\": 23,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.302325576543808,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.046511631458997726,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.13178294897079468,\n \"rps_doc_frac_unique_words\": 0.7222222089767456,\n \"rps_doc_mean_word_length\": 5.601851940155029,\n \"rps_doc_num_sentences\": 6,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.180364608764648,\n \"rps_doc_word_count\": 108,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.04628099128603935,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -59.44764709472656,\n \"rps_doc_books_importance_length_correction\": -59.44773483276367,\n \"rps_doc_openwebtext_importance\": -27.642925262451172,\n \"rps_doc_openwebtext_importance_length_correction\": -27.64301300048828,\n \"rps_doc_wikipedia_importance\": -22.009248733520508,\n \"rps_doc_wikipedia_importance_length_correction\": -22.009336471557617\n },\n \"fasttext\": {\n \"dclm\": 0.0017201900482177734,\n \"english\": 0.8778459429740906,\n \"fineweb_edu_approx\": 0.8184854388237,\n \"eai_general_math\": -0.000005129999863129342,\n \"eai_open_web_math\": 0.008202970027923584,\n \"eai_web_code\": -0.000008340000022144523\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"658.7\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n },\n \"secondary\": {\n \"code\": \"629.2\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":185,"cells":{"id":{"kind":"number","value":8930986895271995000,"string":"8,930,986,895,271,995,000"},"text":{"kind":"string","value":"Black basketball shorts with orange and white side stripes and matching calf sleeves. Download this item for your avatar exclusively from Ultrafresh by Konsole Kingz.\n\nCopy and paste this link into an e-mail or instant message:\nhttp://marketplace.xbox.com/EN-US/Product/Team-Basketball-Shorts-Black-Orange/00000010-d579-f2d1-c587-c8b24d3107d1?cid=SLink\n\nClick to create and send a link using your email application\n\nLike Team Basketball Shorts Black Orange on Facebook $1.99 Purchase"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://marketplace.xbox.com/EN-US/Product/Team-Basketball-Shorts-Black-Orange/00000010-d579-f2d1-c587-c8b24d3107d1\",\n \"source_domain\": \"marketplace.xbox.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"89271\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:N4GKOUKDQXEYOBHOX6N4XGF3EUFJLS5Q\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-21T03:28:30Z\",\n \"WARC-IP-Address\": \"104.89.0.217\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:Y2MTBANYZSKH2PQ4LS3557WHDL6FQXQC\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://marketplace.xbox.com/EN-US/Product/Team-Basketball-Shorts-Black-Orange/00000010-d579-f2d1-c587-c8b24d3107d1\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-214.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 167,\n 168,\n 228,\n 353,\n 354,\n 415,\n 416\n ],\n \"line_end_idx\": [\n 167,\n 168,\n 228,\n 353,\n 354,\n 415,\n 416,\n 483\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 483,\n \"ccnet_original_nlines\": 7,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.20588235557079315,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.019607840105891228,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2647058665752411,\n \"rps_doc_frac_unique_words\": 0.8103448152542114,\n \"rps_doc_mean_word_length\": 6.844827651977539,\n \"rps_doc_num_sentences\": 7,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.773623466491699,\n \"rps_doc_word_count\": 58,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.08060453087091446,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -53.931190490722656,\n \"rps_doc_books_importance_length_correction\": -60.574710845947266,\n \"rps_doc_openwebtext_importance\": -31.37070655822754,\n \"rps_doc_openwebtext_importance_length_correction\": -38.01422882080078,\n \"rps_doc_wikipedia_importance\": -18.378732681274414,\n \"rps_doc_wikipedia_importance_length_correction\": -25.022254943847656\n },\n \"fasttext\": {\n \"dclm\": -0.000010009999641624745,\n \"english\": 0.6669720411300659,\n \"fineweb_edu_approx\": 0.41536271572113037,\n \"eai_general_math\": -0.000010009999641624745,\n \"eai_open_web_math\": 0.007062490098178387,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"794.8\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"658.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Business\",\n \"level_3\": \"Management\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"15\",\n \"label\": \"E-Commerce/Marketplace\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"19\",\n \"label\": \"Spam / Ads\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Indeterminate\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Indeterminate\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":186,"cells":{"id":{"kind":"number","value":-8711451165088764000,"string":"-8,711,451,165,088,764,000"},"text":{"kind":"string","value":"Find a Business Near: Woodstock Valley, CT\n\nBelow is a list of the types of businesses in the City of Woodstock Valley in which we have business listings. If you do not see your city within the list below. You can add a business for just $49.95 per year. To add a business submit your info here.\n\n\nFind a Business Near: Woodstock Valley, CT\n\nPopulation: No data available\n\nSeems like we could not load the Census Data for Woodstock Valley, CT (What should have appeared here). Sometimes this happens when we can not properly match a city or hamlet with 2010 census data. For complete census data for the Connecticut region click here The error has been logged and we will look into the issue.\n\nBusiness Industries in Woodstock Valley\n \nOther cities in connecticut\nBrief Information About Woodstock Valley\n\nThe community of Woodstock Valley is located in the county of Windham. Businesses related to contracting in building, financial advisory services, home building, publishing, printing services and contracting in remodeling and repairing, contribute to the local economy in a positive way.\n \n\nEPA Statement"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.yellowpagesdirectory.com/Woodstock+Valley-CT\",\n \"source_domain\": \"www.yellowpagesdirectory.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"98044\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:JGCIOYB4MXFWLLOIMIN62K3NS7RRU6WX\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-19T19:29:49Z\",\n \"WARC-IP-Address\": \"72.32.104.226\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:5ICOQNPMVG52GDSHODR2SMMG2QKV4QL5\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.yellowpagesdirectory.com/Woodstock+Valley-CT\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-65.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 43,\n 44,\n 296,\n 297,\n 298,\n 341,\n 342,\n 372,\n 373,\n 693,\n 694,\n 734,\n 736,\n 764,\n 805,\n 806,\n 1094,\n 1096,\n 1097\n ],\n \"line_end_idx\": [\n 43,\n 44,\n 296,\n 297,\n 298,\n 341,\n 342,\n 372,\n 373,\n 693,\n 694,\n 734,\n 736,\n 764,\n 805,\n 806,\n 1094,\n 1096,\n 1097,\n 1110\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1110,\n \"ccnet_original_nlines\": 19,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.37378641963005066,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.019417479634284973,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.12621359527111053,\n \"rps_doc_frac_unique_words\": 0.5549450516700745,\n \"rps_doc_mean_word_length\": 4.906593322753906,\n \"rps_doc_num_sentences\": 11,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.325852394104004,\n \"rps_doc_word_count\": 182,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.07614781707525253,\n \"rps_doc_frac_chars_dupe_6grams\": 0.07614781707525253,\n \"rps_doc_frac_chars_dupe_7grams\": 0.07614781707525253,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.11758118867874146,\n \"rps_doc_frac_chars_top_3gram\": 0.05711086094379425,\n \"rps_doc_frac_chars_top_4gram\": 0.038073908537626266,\n \"rps_doc_books_importance\": -94.74109649658203,\n \"rps_doc_books_importance_length_correction\": -94.74109649658203,\n \"rps_doc_openwebtext_importance\": -64.53585815429688,\n \"rps_doc_openwebtext_importance_length_correction\": -56.74449920654297,\n \"rps_doc_wikipedia_importance\": -49.920536041259766,\n \"rps_doc_wikipedia_importance_length_correction\": -49.920536041259766\n },\n \"fasttext\": {\n \"dclm\": 0.00011015000200131908,\n \"english\": 0.914211630821228,\n \"fineweb_edu_approx\": 1.4184519052505493,\n \"eai_general_math\": 0.0004387499939184636,\n \"eai_open_web_math\": 0.016280649229884148,\n \"eai_web_code\": 0.00013184999988880008\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"338.09746\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n },\n \"secondary\": {\n \"code\": \"307.76\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Social sciences — Research, Social sciences — Study and teaching, and Cities and towns\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"7\",\n \"label\": \"Search/Directory/Bibliography\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"1\",\n \"label\": \"About (Org.)\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":187,"cells":{"id":{"kind":"number","value":4829836750586522000,"string":"4,829,836,750,586,522,000"},"text":{"kind":"string","value":"The Stack Overflow podcast is back! Listen to an interview with our new CEO.\n\nReputation (412)\n\nThis user has no recent positive reputation changes\n21\n× 9\n2\n× 2\n14\n× 2\n2\n× 2\n12\n2\n7\n× 6\n1\n× 2\n2\n× 2\n1\n× 2\nStack Overflow 1,734 rep 11 silver badges16 bronze badges\nServer Fault 412 rep 3 silver badges8 bronze badges\nWriting 143 rep 3 bronze badges\nTeX - LaTeX 101 rep\nAsk Ubuntu 101 rep 1 bronze badge\n\nVotes cast (32)\n\nall time   by type  \n32 up 11 question\n0 down 21 answer"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://serverfault.com/users/23961/goran-juri%C4%87?tab=topactivity\",\n \"source_domain\": \"serverfault.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"118862\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:3JO3R2J2GV2OG4I434HDTBCRHL3IF3WQ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-20T11:27:00Z\",\n \"WARC-IP-Address\": \"151.101.129.69\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:S37KPPMA4VPSAKVETUUREVRABINSRWCY\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://serverfault.com/users/23961/goran-juri%C4%87?tab=topactivity\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-180.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 77,\n 78,\n 95,\n 96,\n 148,\n 151,\n 155,\n 157,\n 161,\n 164,\n 168,\n 170,\n 174,\n 177,\n 179,\n 181,\n 185,\n 187,\n 191,\n 193,\n 197,\n 199,\n 203,\n 261,\n 313,\n 345,\n 365,\n 399,\n 400,\n 416,\n 417,\n 438,\n 456\n ],\n \"line_end_idx\": [\n 77,\n 78,\n 95,\n 96,\n 148,\n 151,\n 155,\n 157,\n 161,\n 164,\n 168,\n 170,\n 174,\n 177,\n 179,\n 181,\n 185,\n 187,\n 191,\n 193,\n 197,\n 199,\n 203,\n 261,\n 313,\n 345,\n 365,\n 399,\n 400,\n 416,\n 417,\n 438,\n 456,\n 472\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 472,\n \"ccnet_original_nlines\": 33,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.11926606297492981,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.00917430967092514,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.4587155878543854,\n \"rps_doc_frac_unique_words\": 0.6299999952316284,\n \"rps_doc_mean_word_length\": 3.559999942779541,\n \"rps_doc_num_sentences\": 3,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.868086576461792,\n \"rps_doc_word_count\": 100,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.028089890256524086,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.0337078683078289,\n \"rps_doc_frac_chars_top_3gram\": 0.025280900299549103,\n \"rps_doc_frac_chars_top_4gram\": 0.02247191034257412,\n \"rps_doc_books_importance\": -40.63176727294922,\n \"rps_doc_books_importance_length_correction\": -45.2534294128418,\n \"rps_doc_openwebtext_importance\": -23.6942195892334,\n \"rps_doc_openwebtext_importance_length_correction\": -28.315879821777344,\n \"rps_doc_wikipedia_importance\": -26.451101303100586,\n \"rps_doc_wikipedia_importance_length_correction\": -31.072763442993164\n },\n \"fasttext\": {\n \"dclm\": 0.00024061999283730984,\n \"english\": 0.7862111330032349,\n \"fineweb_edu_approx\": 0.8246674537658691,\n \"eai_general_math\": 0.010468070395290852,\n \"eai_open_web_math\": 0.013055800460278988,\n \"eai_web_code\": 0.03848785161972046\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"025.042\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"Library science\",\n \"level_3\": \"Library administration\"\n }\n },\n \"secondary\": {\n \"code\": \"303.483\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Social sciences — Dictionaries\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n },\n \"secondary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"About (Personal)\"\n },\n \"secondary\": {\n \"code\": \"18\",\n \"label\": \"Q&A Forum\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":188,"cells":{"id":{"kind":"number","value":1341932904309489700,"string":"1,341,932,904,309,489,700"},"text":{"kind":"string","value":"4D Imaging of Protein Aggregation in Live Cells\n\n* These authors contributed equally\nBiology\n \n\nSummary\n\nCellular viability depends on timely and efficient management of protein misfolding. Here we describe a method for visualizing the different potential fates of a misfolded protein: refolding, degradation, or sequestration in inclusions. We demonstrate the use of a folding sensor, Ubc9ts, for monitoring proteostasis and aggregation quality control in live cells using 4D microscopy.\n\nCite this Article\n\nCopy Citation | Download Citations | Reprints and Permissions\n\nSpokoini, R., Shamir, M., Keness, A., Kaganovich, D. 4D Imaging of Protein Aggregation in Live Cells. J. Vis. Exp. (74), e50083, doi:10.3791/50083 (2013).\n\nAbstract\n\nOne of the key tasks of any living cell is maintaining the proper folding of newly synthesized proteins in the face of ever-changing environmental conditions and an intracellular environment that is tightly packed, sticky, and hazardous to protein stability1. The ability to dynamically balance protein production, folding and degradation demands highly-specialized quality control machinery, whose absolute necessity is observed best when it malfunctions. Diseases such as ALS, Alzheimer's, Parkinson's, and certain forms of Cystic Fibrosis have a direct link to protein folding quality control components2, and therefore future therapeutic development requires a basic understanding of underlying processes. Our experimental challenge is to understand how cells integrate damage signals and mount responses that are tailored to diverse circumstances.\n\nThe primary reason why protein misfolding represents an existential threat to the cell is the propensity of incorrectly folded proteins to aggregate, thus causing a global perturbation of the crowded and delicate intracellular folding environment1. The folding health, or \"proteostasis,\" of the cellular proteome is maintained, even under the duress of aging, stress and oxidative damage, by the coordinated action of different mechanistic units in an elaborate quality control system3,4. A specialized machinery of molecular chaperones can bind non-native polypeptides and promote their folding into the native state1, target them for degradation by the ubiquitin-proteasome system5, or direct them to protective aggregation inclusions6-9.\n\nIn eukaryotes, the cytosolic aggregation quality control load is partitioned between two compartments8-10: the juxtanuclear quality control compartment (JUNQ) and the insoluble protein deposit (IPOD) (Figure 1 - model). Proteins that are ubiquitinated by the protein folding quality control machinery are delivered to the JUNQ, where they are processed for degradation by the proteasome. Misfolded proteins that are not ubiquitinated are diverted to the IPOD, where they are actively aggregated in a protective compartment.\n\nUp until this point, the methodological paradigm of live-cell fluorescence microscopy has largely been to label proteins and track their locations in the cell at specific time-points and usually in two dimensions. As new technologies have begun to grant experimenters unprecedented access to the submicron scale in living cells, the dynamic architecture of the cytosol has come into view as a challenging new frontier for experimental characterization. We present a method for rapidly monitoring the 3D spatial distributions of multiple fluorescently labeled proteins in the yeast cytosol over time. 3D timelapse (4D imaging) is not merely a technical challenge; rather, it also facilitates a dramatic shift in the conceptual framework used to analyze cellular structure.\n\nWe utilize a cytosolic folding sensor protein in live yeast to visualize distinct fates for misfolded proteins in cellular aggregation quality control, using rapid 4D fluorescent imaging. The temperature sensitive mutant of the Ubc9 protein10-12 (Ubc9ts) is extremely effective both as a sensor of cellular proteostasis, and a physiological model for tracking aggregation quality control. As with most ts proteins, Ubc9ts is fully folded and functional at permissive temperatures due to active cellular chaperones. Above 30 °C, or when the cell faces misfolding stress, Ubc9ts misfolds and follows the fate of a native globular protein that has been misfolded due to mutation, heat denaturation, or oxidative damage. By fusing it to GFP or other fluorophores, it can be tracked in 3D as it forms Stress Foci, or is directed to JUNQ or IPOD.\n\nProtocol\n\n1. Yeast Preparations\n\n 1. Transform yeast strains with a plasmid carrying a GAL1-GFP-Y68L (UBC9ts) cassette.\n 2. Grow yeast in synthetic media containing 2% raffinose for 24 hr and back diluted to 2% galactose containing media for 16 hr or O/N. Incubate cells at 30 °C while shaking at 200 rpm.\n 3. The following morning, dilute the query strain to OD600= 0.2. Shake for 4-6 hr at 30 °C (200 rpm) until the culture reaches OD600= 0.8-1.0.\n 4. To repress expression (so as to monitor only the already-translated and folded pool of GFP-Ubc9ts), change media to synthetic media supplemented with 2% glucose (SD) 30 min prior to imaging.\n 5. Treatment - Heat shock the cells for 20 min at 37 °C to induce misfolding, or continuously in microscope incubator to follow protein aggregation in heat-shock conditions. Note - if you are using the microscope at any temperature above RT, pre-heat for about 2 hr to equilibrate the temperature along the body of the microscope and the objectives (see below).\n\n2. Plate\\Slide Preparations\n\n 1. Choose appropriate plate. The main consideration is the ability to maintain focus during imaging acquisition. The following points are critical for 4D imaging and not for 2D time lapses or 3D imaging.\n 1. Multiple wells plate- the bottom of the different wells may not be homogenous (i.e. the wells will be at different heights relative to the objective). This will make it difficult to maintain focus across x y points and time points, regardless of the autofocusing technique being used.\n 2. Slide material: glass vs. plastic. Glass bottomed slides are more z-homogenous between wells, but are more expensive.\n 3. Thickness of the plate's bottom: we usually use coverslip-bottom plates index 1.5, but index 1 is also acceptable depending on the objective.\n 2. Cover bottom of the plate\\slide with ConA (0.25 mg/ml) for 10 min. ConA is used to adhere cells to the slide, which enables following a single cell over time.\n 3. Remove ConA and incubate the slide in a chemical hood so that excess ConA will evaporate.\n 4. Plate 200 μl of yeast sample (OD600= 0.5) into the ConAed well.\n 5. Incubate for 15 min, as to enable cells stick to the surface of the plate.\n 6. Extract the medium, and wash three times with new medium to get one layer of cells. Note: if a long time lapse is planned, seed the cells sparsely so that new buds won't fill and interrupt the region of interest.\n\n3. Microscope Preparations\n\n 1. We use a Nikon A1Rsi confocal microscope with a few non-standard modifications. For yeast imaging we use up to 4 lasers (405 nm, 50 mW CUBE laser; 457-514 nm, 65 mW Argon Ion laser; 561 nm, 50 mW Sapphire laser; and 640 nm, 40 mW CUBE laser), and up to 4 PMTs equipped with filters. Most of our imaging is done with a green filter set for EGFP and a red filter set for mCherry and tdTomato. With GFP and mCherry there is almost no bleedthrough, therefore we often use simultaneous scanning. However, line-scanning can also be used to prevent bleedthrough when it does occur. Our confocal is also equipped with a PInano Piezo stage (MCL), which can make 3 msec steps in z, enabling 2-3 z-stacks (30-50 sections) per second. The systems also has a spectral detector, Perfect Focus (laser offset), and two scanners - a galvano scanner and a resonant scanner.\n 2. Choose appropriate objective. Main considerations:\n 1. Water/Oil/Air objective: the main consideration is the refractive index of the imaging medium vs the medium of the sample.\n 1. Oil objective advantages:\n 1. Oil objectives can have higher numerical apertures (oil breaks light more than water, and therefore more photons go back to the objective). Oil objectives can have up to NA 1.49, compared to 1.27 for water. (However, this is not actually a huge difference in resolution).\n 2. The refractive index of oil matches the refractive index of glass, therefore no photons are lost going from the sample, through the glass, to the objective. (Note - chose an immersion oil that has a refractive index that is appropriate for your objective and your coverslip).\n 3. Oil enables hassle-free long time-lapses since it does not evaporate.\n Oil Objective disadvantages:\n 1. The higher resolution enabled by the higher NA of oil objectives degrades rapidly if the light has to travel through an aqueous medium (such as a cell).\n 2. Images typically have more spherical aberrations and a \"stretched out\" effect in 3D.\n 3. Oil is sticky, messy, and a hazard to objectives.\n 2. Water objective advantages\n 1. The cell itself is aqueous, therefore there are fewer distortions in z, and the resolution remains high deep into an aqueous sample.\n 2. Clean and user friendly. Water objective disadvantages: evaporates quickly, therefore not suitable for long movies without special arrangements being made to pump water continuously to the objective.\n 3. Air objective advantages: 1. No material is lost/evaporates during multiple point acquisition or a long movie. 2. Clean and user friendly. Disadvantage: low resolution and low signal sensitivity.\n 2. Room and incubator temperature: changing temperature affects matter properties, and in delicate systems changes the focus. The temperature should be adjusted before choosing points for acquisition. Changing the temperature during acquisition will disrupt imaging and will result in loss of focus. We let our microscope system equilibrate for 2 hr at the desired temperature before imaging.\n 3. Correction collars: Many objectives come with a correction ring enabling the objective to be adjusted for a given cover-slip thickness. We recommend adjusting the correction collar while using fluorescent beads to visualize the point spread function. This will ensure correct settings for every sample.\n 4. Stable sample holders: we find that most commercially available sample holders are the weakest part of the microscope. They are often wobbly and not straight. This is a disaster for high-resolution, multi-point 4D imaging. We design our own sample holders that are straight and fit tightly onto the stage. They can also be bolted down when needed.\n 5. Multi-point acquisition: our imaging system is equipped with the Nikon \"Perfect focus\" system, which is basically a laser-based auto-focus mechanism. However, autofocusing is not necessarily necessary with 4D imaging, especially if the system does not drift a lot.\n\n4. Imaging\n\n 1. Turn on the system: lasers, stage, controller, camera and computer software.\n 2. Place plate on stage holder, properly secured and stabilized.\n 3. Use eye port to determine location and orientation of yeast.\n 4. Using brightfield, assess cell health and viability according to shape and texture.\n 5. Turn on epifluorescent light according to the relevant fluorophore (e.g. FITC filter for GFP), and focus on cells displaying the phenotype which is subject to your research. Cells which are highly fluorescent in more than one wavelength may be dead and therefore autofluorescent. We visualize the nucleus with a tdTomato fluorophore fused to an SV40 NLS signal (NLS-TFP). TFP is twice the size of GFP, and is therefore above the diffusion limit of the nucleus, therefore it works very well as a nuclear marker. We can also excite TFP with a green (488 nm) laser simultaneously as GFP, but collect the green and red emissions into two separate PMTs for spectral resolution.\n 6. Adjust the following settings to minimize noise and oversaturation:\n 1. Laser power - photobleaching and phototoxicity vs. brightness of image should be considered.\n 2. Gain: affects camera sensitivity, thus Signal to Noise ratio.\n 3. Pinhole diameter - should be adjusted according to the laser with the shorter wavelength. The pinhole diameter determines the thickness (height) of the optical section imaged. Thus, opening the pinhole will collect more light (let more photons in), but will decrease resolution in z (less confocality).\n 7. Useful tips:\n 1. If different fluorophores emit congruent wavelength, use the Spectral Detector feature which enables the choice of virtual filters. Keep in mind that spectral detectors are less sensitive than regular PMTs.\n 2. If different fluorophores are excited by the same laser, use the line scanning feature.\n 3. A Galvano scanner enables more sensitivity, but has a higher risk for photobleaching. A Resonant scanner enables faster acquisition, thus lowering the risk for photobleaching, but is less sensitive.\n 4. Averaging between 2 and 16 images, it enhances signal to noise ratio, but makes acquisition slower and, of course, involves more exposure of the sample to the laser.\n 5. Duration of acquisition- depends on the biological question (e.g JUNQ and IPOD formation takes ~2 hr). We have imaged yeast with the resonant scanner for up to 30 hr in 3D time-lapse.\n 6. Time lapse intervals- Smaller intervals will create a more coherent movie but might cause photo bleaching and therefore loss of signal.\n\nRepresentative Results\n\nFigure 1\nFigure 1. Model: Sub-cellular compartmentalization of misfolded proteins. Quality control machinery directs misfolded proteins into distinct compartments with distinct functions: Soluble proteins, targeted for degradation, undergo poly-ubiquitination and are sent to the Juxta-NuclearQuality control compartment (JUNQ). Insoluble proteins that can't be ubiquitinated are sent for protective sequestration to the InsolubleProteinDeposit (IPOD), adjacent to the vacuole, where they undergo active aggregation.\n\nFigure 2\nFigure 2. Modeling protein misfolding with GFP-Ubc9ts. Under normal conditions, GFP-Ubc9ts (green) is natively folded, and is localized diffusely in the nucleus and the cytosol. The nucleus is labeled by NLS-TFP (red). Expression of Ubc9ts was shut off by addition of 2% glucose before imaging in all experiments. Click here to view larger figure.\n\n 1. Upon temperature shift to 37 °C, GFP-Ubc9ts (green) is misfolded and forms cytosolic Stress Foci. The nucleus is labeled by NLS-TFP (red).\n 2. Upon recovery from heat shock at 23 °C, the thermally denaturated GFP-Ubc9ts is degraded, as indicated by decreased fluorescence level.\n 3. Upon temperature shift to 37 °C and proteasome inhibition with 80 Mm MG132, GFP-Ubc9ts is misfolded and processed into JUNQ and IPOD inclusions. The nucleus is labeled by NLS-TFP (red).\n 4. Upon temperature shift to 37 °C and ubiquitination inhibition, GFP-Ubc9ts is misfolded and processed into the IPOD inclusion. The nucleus is labeled by NLS-TFP (red). The Ubiquitin Protease 4 (Ubp4) is overexpressed to block Ubc9ts ubiquitination.\n\nFigure 3\nFigure 3. Time lapse of JUNQ and IPOD formation. Upon temperature shift to 37 °C and proteasome inhibition with 80 Mm MG132, GFP-Ubc9ts Stress Foci are processed into JUNQ and IPOD inclusions. The nucleus is labeled by NLS-TFP (red). 3D images were acquired at 4 min intervals. (also see Movie 1). Click here to view larger figure.\n\nDiscussion\n\nOur intuitions about biochemical processes derive from bench top experiments in which a well-mixed solution of reactants and products is allowed to reach equilibrium in a beaker. In such a setting, the concentration of a given chemical species may be expressed as a single number, which is the ratio of a molar quantity of molecules to a macroscopic volume. Much of what we know about protein structure and function derives from using methods that reflect the classic, bulk reaction picture: western blots, centrifugations, and spectrophotometric measurements carried out on extracts from homogenates of whole populations of cells.\n\nAs the technology we use to look at cells under magnification improves by leaps and bounds, it becomes ever clearer that the conditions in which most biochemical reactions take place in vivo bear only the slightest resemblance to those of the classic bench top scenario. Not only is the interior of the cell a densely packed environment, in which crowding effects substantially alter the activities of various reactants, it is also quite the opposite of well-mixed. This accounts for the frequent disparity between in vitro and in vivo efficiencies of a wide range of complex macromolecular reactions.\n\nNowhere are intuitions stemming from classical in vitro biochemical experiments more prone to mislead as in questions pertaining to the in vivo folding, misfolding, and aggregation of proteins. Whereas studies of protein chemistry in bulk reactions can treat the issue of folding for a given protein as a simple yes or no question, any attempt to track the dynamics of whole populations of macromolecules in a live cell must be sensitive to the whole distribution of possible conformational outcomes available to a polypeptide chain, and in particular to the risk of misfolding and aggregation. For example, we might examine a bulk cell lysate of an aggregating protein by western blotting, and determine that the protein is mostly insoluble and not ubiquitinated. However, in the living cell a discrete sub-population of the protein, difficult to detect when averaging over many cells, may be soluble and ubiquitinated in a particular compartment where the local concentration of the species is extremely high. The latter scenario may have more important consequences for the viability of the cell than the larger bulk sub-population. Furthermore, whereas chaperones display a variety of pleiotropic behaviors and functions in vitro, it is becoming evident that in the cell their discrete functions are spatially and temporally confined.\n\nIn the newly emerging paradigm for understanding biochemistry, concentration becomes a variable property of each specific nano-environment in the cell, and the molecular events that underlie biological processes must be assayed not only in time, but also in space. The 4D imaging approach presented here enables sensitive modeling of protein misfolding in live cells, though it can be used to study any number of other biological processes and how they are regulated in space, time, and following changes in environmental conditions. In this paper we use the Ubc9ts folding sensor, which effectively demonstrates the stages and options for dealing with the onset of protein aggregation in the cytosol. In addition to illustrating the cell biology of aggregation quality control, this approach can serve as a powerful tool for deciphering the effect of specific perturbations or genetic mutations on proteostasis (for example Ubc9ts can be used to measure protein folding stress in response to oxidation, the expression of a toxic aggregate, or mutations in the quality control pathway).\n\n4D imaging is also essential for accurately determining protein localization or colocalization between two different proteins, and for detecting phenomena which maybe be transient but important. For example, especially in a small spherical organism such as yeast, it may appear to be the case that a structure or aggregate has juxtanuclear localization, whereas 4D imaging may reveal that this is simply an artifact of the angle of inspection.\n\nIn the example experiment we present here, we demonstrate the use of a model misfolded protein, Ubc9ts, to follow aggregation quality control over time and space in the cytosol. At the permissive temperature, Ubc9ts is folded and diffused in the nucleus and cytosol. Upon heat-induced misfolding, it initially forms rapidly diffusing small aggregate Stress Foci that are processed for proteasomal degradation. When the proteasome is partially inhibited, these Stress Foci are converted into JUNQ and IPOD inclusions over the course of about 2 hr. If ubiquitin-mediated degradation is not available as a quality control option, Ubc9ts is immediately re-routed to the IPOD inclusion for protective aggregation. These tools offer incredible opportunities to discover novel genetic factors involved in aggregation quality control, and to explore their spatial and temporal regulation in the cell.\n\nDisclosures\n\nNo conflicts of interest declared.\n\nMaterials\n\nName Company Catalog Number Comments\nMG132 Mercury mbs474790\ncon A Sigma C2010\nGlass bottom plates ibidi ibd81158\n4D Fluorescence Imaging of Protein Aggregation\nConfocal 3D movies were acquired using a Nikon A1R-si microscope equipped with a PInano Piezo stage (MCL), using a 60x water objective NA 1.27, 0.3 micron slices, 0.5% laser power (from 65 mW 488 laser and 50 mW 561 laser). z-stacks were acquired every 5 min for 90 min. Each z-series was acquired with 0.5 micron step size and 30 total steps. Image processing was performed using NIS-Elements software.\n\nDOWNLOAD MATERIALS LIST\n\nReferences\n\n 1. Gershenson, A., Gierasch, L. M. Protein folding in the cell: challenges and progress. Current opinion in structural biology. 21, 32-41 (2011).\n 2. Aguzzi, A., Calella, A. M. Prions: protein aggregation and infectious diseases. Physiological reviews. 89, 1105-1152 (2009).\n 3. Morimoto, R. I. Proteotoxic stress and inducible chaperone networks in neurodegenerative disease and aging. Genes & development. 22, 1427-14 (2008).\n 4. Cohen, E., Dillin, A. The insulin paradox: aging, proteotoxicity and neurodegeneration. Nature reviews. Neuroscience. (2008).\n 5. Hershko, A., Ciechanover, A. The ubiquitin system. Annual review of biochemistry. 67, (1998).\n 6. Tyedmers, J., Mogk, A., Bukau, B. Cellular strategies for controlling protein aggregation. Nature reviews. Molecular cell biology. 11, 777-788 (2010).\n 7. Treusch, S., Cyr, D. M., Lindquist, S. Amyloid deposits: Protection against toxic protein species? Cell cycle (Georgetown, Tex.). 8, 1668-1674 (2009).\n 8. Spokoini, R., et al. Confinement to Organelle-Associated Inclusion Structures Mediates Asymmetric Inheritance of Aggregated Protein in Budding Yeast. Cell Rep. (2012).\n 9. Weisberg, S. J., et al. Compartmentalization of superoxide dismutase 1 (SOD1G93A) aggregates determines their toxicity. Proc Natl Acad Sci U S A. 109, 15811-15816 (2012).\n 10. Kaganovich, D., Kopito, R., Frydman, J. Misfolded proteins partition between two distinct quality control compartments. Nature. 454, 1088 (2008).\n 11. Betting, J., Seufert, W. A yeast Ubc9 mutant protein with temperature-sensitive in vivo function is subject to conditional proteolysis by a ubiquitin- and proteasome-dependent pathway. The Journal of biological chemistry. 271, 25790 (1996).\n 12. Tongaonkar, P., Beck, K., Shinde, U. P., Madura, K. Characterization of a temperature-sensitive mutant of a ubiquitin-conjugating enzyme and its use as a heat-inducible degradation signal. Analytical biochemistry. 272, 263 (1999).\n\nComments\n\n0 Comments\n\n\n Post a Question / Comment / Request\n\n You must be signed in to post a comment. Please or create an account.\n\n Usage Statistics"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.jove.com/video/50083/4d-imaging-of-protein-aggregation-in-live-cells\",\n \"source_domain\": \"www.jove.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"198400\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:5H7IYAIIB37SNQP53R6VSYTH3JI66TJA\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-14T04:16:47Z\",\n \"WARC-IP-Address\": \"52.203.249.181\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:YNMU75PJOP3DFMFPFAUNNB6RF2WO5PSQ\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.jove.com/video/50083/4d-imaging-of-protein-aggregation-in-live-cells\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-10.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 48,\n 49,\n 85,\n 93,\n 95,\n 96,\n 104,\n 105,\n 489,\n 490,\n 508,\n 509,\n 571,\n 572,\n 727,\n 728,\n 737,\n 738,\n 1591,\n 1592,\n 2333,\n 2334,\n 2858,\n 2859,\n 3631,\n 3632,\n 4473,\n 4474,\n 4483,\n 4484,\n 4506,\n 4507,\n 4595,\n 4782,\n 4927,\n 5123,\n 5487,\n 5488,\n 5516,\n 5517,\n 5723,\n 6015,\n 6140,\n 6289,\n 6453,\n 6548,\n 6617,\n 6697,\n 6915,\n 6916,\n 6943,\n 6944,\n 7805,\n 7861,\n 7991,\n 8026,\n 8309,\n 8596,\n 8677,\n 8714,\n 8878,\n 8974,\n 9035,\n 9071,\n 9215,\n 9426,\n 9631,\n 10028,\n 10338,\n 10693,\n 10965,\n 10966,\n 10977,\n 10978,\n 11060,\n 11127,\n 11193,\n 11282,\n 11960,\n 12033,\n 12133,\n 12202,\n 12512,\n 12530,\n 12744,\n 12839,\n 13045,\n 13218,\n 13409,\n 13552,\n 13553,\n 13576,\n 13577,\n 13586,\n 14094,\n 14095,\n 14104,\n 14452,\n 14453,\n 14597,\n 14738,\n 14929,\n 15182,\n 15183,\n 15192,\n 15524,\n 15525,\n 15536,\n 15537,\n 16169,\n 16170,\n 16772,\n 16773,\n 18112,\n 18113,\n 19200,\n 19201,\n 19645,\n 19646,\n 20539,\n 20540,\n 20552,\n 20553,\n 20588,\n 20589,\n 20599,\n 20600,\n 20637,\n 20661,\n 20679,\n 20714,\n 20761,\n 21165,\n 21166,\n 21190,\n 21191,\n 21202,\n 21203,\n 21351,\n 21481,\n 21635,\n 21766,\n 21865,\n 22021,\n 22177,\n 22350,\n 22526,\n 22678,\n 22925,\n 23162,\n 23163,\n 23172,\n 23173,\n 23184,\n 23185,\n 23186,\n 23226,\n 23227,\n 23301,\n 23302\n ],\n \"line_end_idx\": [\n 48,\n 49,\n 85,\n 93,\n 95,\n 96,\n 104,\n 105,\n 489,\n 490,\n 508,\n 509,\n 571,\n 572,\n 727,\n 728,\n 737,\n 738,\n 1591,\n 1592,\n 2333,\n 2334,\n 2858,\n 2859,\n 3631,\n 3632,\n 4473,\n 4474,\n 4483,\n 4484,\n 4506,\n 4507,\n 4595,\n 4782,\n 4927,\n 5123,\n 5487,\n 5488,\n 5516,\n 5517,\n 5723,\n 6015,\n 6140,\n 6289,\n 6453,\n 6548,\n 6617,\n 6697,\n 6915,\n 6916,\n 6943,\n 6944,\n 7805,\n 7861,\n 7991,\n 8026,\n 8309,\n 8596,\n 8677,\n 8714,\n 8878,\n 8974,\n 9035,\n 9071,\n 9215,\n 9426,\n 9631,\n 10028,\n 10338,\n 10693,\n 10965,\n 10966,\n 10977,\n 10978,\n 11060,\n 11127,\n 11193,\n 11282,\n 11960,\n 12033,\n 12133,\n 12202,\n 12512,\n 12530,\n 12744,\n 12839,\n 13045,\n 13218,\n 13409,\n 13552,\n 13553,\n 13576,\n 13577,\n 13586,\n 14094,\n 14095,\n 14104,\n 14452,\n 14453,\n 14597,\n 14738,\n 14929,\n 15182,\n 15183,\n 15192,\n 15524,\n 15525,\n 15536,\n 15537,\n 16169,\n 16170,\n 16772,\n 16773,\n 18112,\n 18113,\n 19200,\n 19201,\n 19645,\n 19646,\n 20539,\n 20540,\n 20552,\n 20553,\n 20588,\n 20589,\n 20599,\n 20600,\n 20637,\n 20661,\n 20679,\n 20714,\n 20761,\n 21165,\n 21166,\n 21190,\n 21191,\n 21202,\n 21203,\n 21351,\n 21481,\n 21635,\n 21766,\n 21865,\n 22021,\n 22177,\n 22350,\n 22526,\n 22678,\n 22925,\n 23162,\n 23163,\n 23172,\n 23173,\n 23184,\n 23185,\n 23186,\n 23226,\n 23227,\n 23301,\n 23302,\n 23322\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 23322,\n \"ccnet_original_nlines\": 160,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3108384609222412,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.034992050379514694,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.2206316739320755,\n \"rps_doc_frac_unique_words\": 0.3479490876197815,\n \"rps_doc_mean_word_length\": 5.281470775604248,\n \"rps_doc_num_sentences\": 334,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 6.150871753692627,\n \"rps_doc_word_count\": 3535,\n \"rps_doc_frac_chars_dupe_10grams\": 0.014461699873209,\n \"rps_doc_frac_chars_dupe_5grams\": 0.04413497820496559,\n \"rps_doc_frac_chars_dupe_6grams\": 0.03786823898553848,\n \"rps_doc_frac_chars_dupe_7grams\": 0.02854846976697445,\n \"rps_doc_frac_chars_dupe_8grams\": 0.018746649846434593,\n \"rps_doc_frac_chars_dupe_9grams\": 0.014461699873209,\n \"rps_doc_frac_chars_top_2gram\": 0.006159610114991665,\n \"rps_doc_frac_chars_top_3gram\": 0.00937332957983017,\n \"rps_doc_frac_chars_top_4gram\": 0.005088380072265863,\n \"rps_doc_books_importance\": -1976.320556640625,\n \"rps_doc_books_importance_length_correction\": -1976.320556640625,\n \"rps_doc_openwebtext_importance\": -1142.7591552734375,\n \"rps_doc_openwebtext_importance_length_correction\": -1142.7591552734375,\n \"rps_doc_wikipedia_importance\": -883.7042846679688,\n \"rps_doc_wikipedia_importance_length_correction\": -883.7042846679688\n },\n \"fasttext\": {\n \"dclm\": 0.21384620666503906,\n \"english\": 0.9005634188652039,\n \"fineweb_edu_approx\": 2.3083431720733643,\n \"eai_general_math\": 0.25018203258514404,\n \"eai_open_web_math\": 0.3136712312698364,\n \"eai_web_code\": 0.008258519694209099\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"572.62\",\n \"labels\": {\n \"level_1\": \"Science and Natural history\",\n \"level_2\": \"Biology and Anthropology\",\n \"level_3\": \"Anthropology\"\n }\n },\n \"secondary\": {\n \"code\": \"621.368\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"Mechanical engineering and Machinery\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Academic/Research\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Academic Writing\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Advanced Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Graduate/Expert Level\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":189,"cells":{"id":{"kind":"number","value":927213967426373500,"string":"927,213,967,426,373,500"},"text":{"kind":"string","value":"2018\n\nPumpkins (2018)\n0\n\nPumpkins (2018)\n\nWatch Pumpkins Movie Online on Bmovies, Fmovies, BmoviesFree, A teen Horror Movie set in the 80’s in the North of England.\nThe 11th Patient (2018)\n0\n\nThe 11th Patient (2018)\n\nWatch The 11th Patient Movie Online on Bmovies, Fmovies, BmoviesFree, Steven, A young teenage boy, is found in a comatose state deep in the woods ...\nSlime (2018)\n0\n\nSlime (2018)\n\nWatch Slime Movie Online on Bmovies, Fmovies, BmoviesFree, In Atlanta Yo Money name is gaining respek in the streets when it comes to his music, ...\nRobbery (2018)\n0\n\nRobbery (2018)\n\nWatch Robbery Movie Online on Bmovies, Fmovies, BmoviesFree, When his criminal father is diagnosed with dementia, a young thief plans a series of ...\nFronteras (2018)\n0\n\nFronteras (2018)\n\nWatch Fronteras Movie Online on Bmovies, Fmovies, BmoviesFree, A Hispanic Border Patrol Agent has his morals challenged when a life-threatening ...\nGundermann (2018)\n0\n\nGundermann (2018)\n\nWatch Gundermann Movie Online on Bmovies, Fmovies, BmoviesFree, The real life story of East German singer and writer Gerhard Gundermann and his ...\nWake (2018)\n0\n\nWake (2018)\n\nWatch Wake Movie Online on Bmovies, Fmovies, BmoviesFree, A widowed mortician, struggling with agoraphobia, is given a birthday gift from her ...\n30 Nights (2018)\n0\n\n30 Nights (2018)\n\nWatch 30 Nights Movie Online on Bmovies, Fmovies, BmoviesFree, In a last ditch effort to save their marriage, Nick and Willa visit a renowned, ...\nDraug (2018)\n0\n\nDraug (2018)\n\nWatch Draug Movie Online on Bmovies, Fmovies, BmoviesFree, In the 11th century a missionary goes missing somewhere in the huge forests bordering ..."},"metadata":{"kind":"string","value":"{\n \"url\": \"https://ww2.bmovies32.net/release/2018/\",\n \"source_domain\": \"ww2.bmovies32.net\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"78934\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:7JVPPWKH3A4FNTMYPBLNPJKLNGSCTMSJ\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-18T07:02:38Z\",\n \"WARC-IP-Address\": \"104.31.91.35\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:V573EGGNWSVCDBJNYNQIBUVAMZAUXCKL\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://ww2.bmovies32.net/release/2018/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-173.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 5,\n 6,\n 22,\n 24,\n 25,\n 41,\n 42,\n 165,\n 189,\n 191,\n 192,\n 216,\n 217,\n 367,\n 380,\n 382,\n 383,\n 396,\n 397,\n 546,\n 561,\n 563,\n 564,\n 579,\n 580,\n 730,\n 747,\n 749,\n 750,\n 767,\n 768,\n 916,\n 934,\n 936,\n 937,\n 955,\n 956,\n 1104,\n 1116,\n 1118,\n 1119,\n 1131,\n 1132,\n 1278,\n 1295,\n 1297,\n 1298,\n 1315,\n 1316,\n 1463,\n 1476,\n 1478,\n 1479,\n 1492,\n 1493\n ],\n \"line_end_idx\": [\n 5,\n 6,\n 22,\n 24,\n 25,\n 41,\n 42,\n 165,\n 189,\n 191,\n 192,\n 216,\n 217,\n 367,\n 380,\n 382,\n 383,\n 396,\n 397,\n 546,\n 561,\n 563,\n 564,\n 579,\n 580,\n 730,\n 747,\n 749,\n 750,\n 767,\n 768,\n 916,\n 934,\n 936,\n 937,\n 955,\n 956,\n 1104,\n 1116,\n 1118,\n 1119,\n 1131,\n 1132,\n 1278,\n 1295,\n 1297,\n 1298,\n 1315,\n 1316,\n 1463,\n 1476,\n 1478,\n 1479,\n 1492,\n 1493,\n 1641\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1641,\n \"ccnet_original_nlines\": 55,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.17994099855422974,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.011799409985542297,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.1428571343421936,\n \"rps_doc_frac_no_alph_words\": 0.3362831771373749,\n \"rps_doc_frac_unique_words\": 0.4117647111415863,\n \"rps_doc_mean_word_length\": 4.952941417694092,\n \"rps_doc_num_sentences\": 9,\n \"rps_doc_symbol_to_word_ratio\": 0.023598819971084595,\n \"rps_doc_unigram_entropy\": 4.145558834075928,\n \"rps_doc_word_count\": 255,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.2779097259044647,\n \"rps_doc_frac_chars_dupe_6grams\": 0.2779097259044647,\n \"rps_doc_frac_chars_dupe_7grams\": 0.1876484602689743,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.035629451274871826,\n \"rps_doc_frac_chars_top_3gram\": 0.0926365777850151,\n \"rps_doc_frac_chars_top_4gram\": 0.1425178050994873,\n \"rps_doc_books_importance\": -196.5574188232422,\n \"rps_doc_books_importance_length_correction\": -182.83975219726562,\n \"rps_doc_openwebtext_importance\": -89.48617553710938,\n \"rps_doc_openwebtext_importance_length_correction\": -89.48617553710938,\n \"rps_doc_wikipedia_importance\": -54.02558135986328,\n \"rps_doc_wikipedia_importance_length_correction\": -41.44826126098633\n },\n \"fasttext\": {\n \"dclm\": 0.00013328000204637647,\n \"english\": 0.8975686430931091,\n \"fineweb_edu_approx\": 1.2469562292099,\n \"eai_general_math\": 0.0005285100196488202,\n \"eai_open_web_math\": 0.0736951231956482,\n \"eai_web_code\": 0.00003517000004649162\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"791.4372\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"025.2\",\n \"labels\": {\n \"level_1\": \"General works, books and libraries, information sciences\",\n \"level_2\": \"Library science\",\n \"level_3\": \"Library administration\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":190,"cells":{"id":{"kind":"number","value":-9149541498562086000,"string":"-9,149,541,498,562,086,000"},"text":{"kind":"string","value":"South Africa whip Trinidad & Tobago 12-0New Delhi: Coetzee Pietie marked her return from retirement by slamming four goals as South Africa pounded Trinidad and Tobago 12-0 in a pool A match of the women's hockey competition in the 19th Commonwealth Games here Monday.\n\nPietie, the 32-year-old forward and penalty corner specialist, came out of a self-imposed five-year absence from competitive hockey and showed she was none the worse for it by slotting home the goals as the South Africans ran riot at the Major Dhyan Chand National Stadium.\n\n\"Everything went to plan today (Monday) and it is a privilege to score a hat-trick in an international match,\" said Pietie, who showcased her versatility with two penalty corner conversions and as many field goals.\n\n\"I took a five-year break because I was exhausted, but I was playing in local matches. Then, my coach convinced me to return and this is my third month,\" she added.\n\nPietie began the flood of goals with two conversions in the first 10 minutes and thereafter, the Trinidadians were helpless against the South African onslaughts that were magnified by the tottering defence.\n\n\"We need to remain focused on our next match. We made too many mistakes in the defence, but we can bounce back,\" said a brave Trinidad and Tobago skipper Patricia Wright-Alexis.\n\nThe other goal-scorers for South Africa, who led 3-0 at the break, were: Dirkie Chamberlain (3), Jennifer Wilson (2), Kathleen Taylor, Lesle Anne George and Farah Fredericks.\n\nSource: IANS\n\n\nContinue Reading..."},"metadata":{"kind":"string","value":"{\n \"url\": \"https://ttolympic.org/index.php/international-games/commonwealth-games/905-cwg-womens-hockey-south-africa-whip-trinidad-a-tobago-12-0\",\n \"source_domain\": \"ttolympic.org\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"62922\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:RYFV6UEZO7AYNE2ZF5WYKOZG7CBSEZZC\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-21T08:35:50Z\",\n \"WARC-IP-Address\": \"216.194.165.162\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:KJGXFCGR4SATVTMD26QFD7KHQ34W7RXF\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://ttolympic.org/index.php/international-games/commonwealth-games/905-cwg-womens-hockey-south-africa-whip-trinidad-a-tobago-12-0\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-129.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 268,\n 269,\n 543,\n 544,\n 759,\n 760,\n 925,\n 926,\n 1133,\n 1134,\n 1312,\n 1313,\n 1488,\n 1489,\n 1502,\n 1503,\n 1504\n ],\n \"line_end_idx\": [\n 268,\n 269,\n 543,\n 544,\n 759,\n 760,\n 925,\n 926,\n 1133,\n 1134,\n 1312,\n 1313,\n 1488,\n 1489,\n 1502,\n 1503,\n 1504,\n 1523\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1523,\n \"ccnet_original_nlines\": 17,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3603896200656891,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.016233770176768303,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.055555559694767,\n \"rps_doc_frac_no_alph_words\": 0.18506494164466858,\n \"rps_doc_frac_unique_words\": 0.6330645084381104,\n \"rps_doc_mean_word_length\": 4.8830647468566895,\n \"rps_doc_num_sentences\": 10,\n \"rps_doc_symbol_to_word_ratio\": 0.003246749984100461,\n \"rps_doc_unigram_entropy\": 4.797342300415039,\n \"rps_doc_word_count\": 248,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.02725020982325077,\n \"rps_doc_frac_chars_top_3gram\": 0.028075970709323883,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -139.7994842529297,\n \"rps_doc_books_importance_length_correction\": -129.2073974609375,\n \"rps_doc_openwebtext_importance\": -63.49825668334961,\n \"rps_doc_openwebtext_importance_length_correction\": -63.49825668334961,\n \"rps_doc_wikipedia_importance\": -50.101436614990234,\n \"rps_doc_wikipedia_importance_length_correction\": -37.249935150146484\n },\n \"fasttext\": {\n \"dclm\": 0.0062218899838626385,\n \"english\": 0.9783276319503784,\n \"fineweb_edu_approx\": 1.3612380027770996,\n \"eai_general_math\": 0.007981779985129833,\n \"eai_open_web_math\": 0.21118873357772827,\n \"eai_web_code\": 0.0017965399893000722\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.9601\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"796.9602\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"10\",\n \"label\": \"Knowledge Article\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":191,"cells":{"id":{"kind":"number","value":7138541377418071000,"string":"7,138,541,377,418,071,000"},"text":{"kind":"string","value":"Vintage Rose Gold Engagement Rings Art Deco\n\nVintage Rose Gold Engagement Rings Art Deco\n\nPhoto Detail\n\nRose gold vintage engagement rings wedding, promise. Solid 10k rose gold 6mm round morganite engagement wedding. Vintage rose gold engagement rings art deco. Vintage antique solid 10k rose gold 45m round morganite.\n\nDate\nDecember 13, 2018\nColor Palettes\n     \nCopyrights © 2013 & All Rights Reserved by CoWorker Inc."},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.bluecollarcorner.com/vintage-rose-gold-engagement-rings-art-deco-f96dc8f0c8f10b8d.html\",\n \"source_domain\": \"www.bluecollarcorner.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"34713\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:HDFPBCHK32ZGD7TOO4PPUEX4B7IJB52X\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-23T20:41:06Z\",\n \"WARC-IP-Address\": \"104.31.84.244\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:CGZLCVXUYEY6DOBP526CYEJE5PJ4SC3D\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.bluecollarcorner.com/vintage-rose-gold-engagement-rings-art-deco-f96dc8f0c8f10b8d.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-201.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 44,\n 45,\n 89,\n 90,\n 103,\n 104,\n 319,\n 320,\n 325,\n 343,\n 358,\n 364\n ],\n \"line_end_idx\": [\n 44,\n 45,\n 89,\n 90,\n 103,\n 104,\n 319,\n 320,\n 325,\n 343,\n 358,\n 364,\n 420\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 420,\n \"ccnet_original_nlines\": 12,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.014084509573876858,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.1690140813589096,\n \"rps_doc_frac_unique_words\": 0.5238094925880432,\n \"rps_doc_mean_word_length\": 5.38095235824585,\n \"rps_doc_num_sentences\": 5,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 3.243709087371826,\n \"rps_doc_word_count\": 63,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.34808260202407837,\n \"rps_doc_frac_chars_dupe_6grams\": 0.34808260202407837,\n \"rps_doc_frac_chars_dupe_7grams\": 0.34808260202407837,\n \"rps_doc_frac_chars_dupe_8grams\": 0.25958701968193054,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.14159291982650757,\n \"rps_doc_frac_chars_top_3gram\": 0.13274335861206055,\n \"rps_doc_frac_chars_top_4gram\": 0.22123894095420837,\n \"rps_doc_books_importance\": -15.694754600524902,\n \"rps_doc_books_importance_length_correction\": -15.6949462890625,\n \"rps_doc_openwebtext_importance\": -13.230642318725586,\n \"rps_doc_openwebtext_importance_length_correction\": -13.230834007263184,\n \"rps_doc_wikipedia_importance\": -17.936643600463867,\n \"rps_doc_wikipedia_importance_length_correction\": -17.93683433532715\n },\n \"fasttext\": {\n \"dclm\": -0.000010009999641624745,\n \"english\": 0.6509923338890076,\n \"fineweb_edu_approx\": 0.7150575518608093,\n \"eai_general_math\": -0.000010009999641624745,\n \"eai_open_web_math\": -0.0000066799998421629425,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"745.6\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Drawing, Decoration and ornament, and Design\",\n \"level_3\": \"Decorative arts\"\n }\n },\n \"secondary\": {\n \"code\": \"684.2\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Handicraft and Occupations\",\n \"level_3\": \"Woodwork and Furniture\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Remember\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":192,"cells":{"id":{"kind":"number","value":8961498300675656000,"string":"8,961,498,300,675,656,000"},"text":{"kind":"string","value":"NETWORKING TOOLS\n • Register\nProduct Code: 6101-05002\n\nDINTEK UTP/STP Cable Strippers\n\nYou Can Request Pricing By Building Up An RFP:\n- +\nGo To RFP\n\n\nDINTEK UTP/STP Cable Strippers\n\nThe DINTEK UTP/STP strippers to add to its current line of quality tools.\nTwisted pair cable prep has never been made easier. DINTEK's professional twisted pair cable strippers are small enough to fit into your pocket and provide quality cable preparation.\n\n\nWith an adjustable cable cutter and stripper for round cables, UTP/STP telephone and data cables, and other flexible cables. DINTEK's cable stripper provides effortless, finger-loop cutting and stripping of flexible cables. It features easily adjustable blade depth to \"score\" without damaging shielding and conductors. Use it to easily cut and strip round cables, UTP/STP telephone and data cables plus other flexible cables.\n\n\n\nApplications\n\n • Premise wiring\n • Cable assemblies\n • Cable repair\n\n\n\n\n\n\n\n\nPhysical Structure\n\n • Professional all-in-one cutter/stripper for twisted pair and coaxial cables\n • Cuts and strips multiple cable types: Twisted Pair (UTP/STP): Cat.6A, Cat6, Cat5e and Coax: RG6, RG59\n • Easy-to-use combination cutter/stripper\n • Adjustable stripping blade for UTP/STP accommodates different insulation thicknesses without damaging conductors\n • Contoured finger grips for cutting power\n • Ensures damage-free stripping.\n • Use with twisted-pair wire tightly wrapped stranded cables.\n\n\n\n\n\n\n\nOrdering Information\nProduct NumberProduct NameStd Pkg QtyStd Pkg Qty\n\n6101-05002\n\nDINTEK UTP/STP Cable Strippers\n\n1pcs / Blister Pack\n\n40pcs/Box\n\n\nStay Up To Date\n\nThanks for coming to use the services provided by logging in to the DINTEK website. Press the login button.\n\nOnce you are logged into the DINTEK Website. You will have access to additional content and services depending on the level of access that has been assigned to you.\n\nRegister"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.dintek.com.tw/index.php/dintek-utp-stp-cable-strippers.html\",\n \"source_domain\": \"www.dintek.com.tw\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"135381\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:RYDWRU6VJZC3TWITX2XFDKHGNNDTKBXG\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-22T07:21:19Z\",\n \"WARC-IP-Address\": \"146.66.93.93\",\n \"WARC-Identified-Payload-Type\": \"application/xhtml+xml\",\n \"WARC-Payload-Digest\": \"sha1:N537BR2KFCI7A5B4JXQHT64FMRDTOR5Q\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.dintek.com.tw/index.php/dintek-utp-stp-cable-strippers.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-141.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 17,\n 30,\n 55,\n 56,\n 87,\n 88,\n 135,\n 139,\n 149,\n 150,\n 151,\n 182,\n 183,\n 257,\n 440,\n 441,\n 442,\n 869,\n 870,\n 871,\n 872,\n 885,\n 886,\n 905,\n 926,\n 943,\n 944,\n 945,\n 946,\n 947,\n 948,\n 949,\n 950,\n 951,\n 970,\n 971,\n 1051,\n 1157,\n 1201,\n 1318,\n 1363,\n 1398,\n 1462,\n 1463,\n 1464,\n 1465,\n 1466,\n 1467,\n 1468,\n 1469,\n 1490,\n 1539,\n 1540,\n 1551,\n 1552,\n 1583,\n 1584,\n 1604,\n 1605,\n 1615,\n 1616,\n 1617,\n 1633,\n 1634,\n 1742,\n 1743,\n 1908,\n 1909\n ],\n \"line_end_idx\": [\n 17,\n 30,\n 55,\n 56,\n 87,\n 88,\n 135,\n 139,\n 149,\n 150,\n 151,\n 182,\n 183,\n 257,\n 440,\n 441,\n 442,\n 869,\n 870,\n 871,\n 872,\n 885,\n 886,\n 905,\n 926,\n 943,\n 944,\n 945,\n 946,\n 947,\n 948,\n 949,\n 950,\n 951,\n 970,\n 971,\n 1051,\n 1157,\n 1201,\n 1318,\n 1363,\n 1398,\n 1462,\n 1463,\n 1464,\n 1465,\n 1466,\n 1467,\n 1468,\n 1469,\n 1490,\n 1539,\n 1540,\n 1551,\n 1552,\n 1583,\n 1584,\n 1604,\n 1605,\n 1615,\n 1616,\n 1617,\n 1633,\n 1634,\n 1742,\n 1743,\n 1908,\n 1909,\n 1917\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1917,\n \"ccnet_original_nlines\": 68,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.20338982343673706,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.08757062256336212,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.19491524994373322,\n \"rps_doc_frac_unique_words\": 0.5451263785362244,\n \"rps_doc_mean_word_length\": 5.505414962768555,\n \"rps_doc_num_sentences\": 15,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.678826332092285,\n \"rps_doc_word_count\": 277,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0.09704917669296265,\n \"rps_doc_frac_chars_dupe_6grams\": 0.05114753916859627,\n \"rps_doc_frac_chars_dupe_7grams\": 0.05114753916859627,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.031475409865379333,\n \"rps_doc_frac_chars_top_3gram\": 0.03344262018799782,\n \"rps_doc_frac_chars_top_4gram\": 0.05114753916859627,\n \"rps_doc_books_importance\": -168.7216033935547,\n \"rps_doc_books_importance_length_correction\": -168.72158813476562,\n \"rps_doc_openwebtext_importance\": -73.61692810058594,\n \"rps_doc_openwebtext_importance_length_correction\": -73.61692810058594,\n \"rps_doc_wikipedia_importance\": -68.82392120361328,\n \"rps_doc_wikipedia_importance_length_correction\": -68.82392120361328\n },\n \"fasttext\": {\n \"dclm\": 0.00013578000653069466,\n \"english\": 0.7941374182701111,\n \"fineweb_edu_approx\": 0.8915936946868896,\n \"eai_general_math\": 0.0007286699838005006,\n \"eai_open_web_math\": 0.06265532970428467,\n \"eai_web_code\": 0.00015675999748054892\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"621.3172\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"Mechanical engineering and Machinery\"\n }\n },\n \"secondary\": {\n \"code\": \"621.317\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"Mechanical engineering and Machinery\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Reference/Encyclopedic/Educational\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":193,"cells":{"id":{"kind":"number","value":-2955144397254079500,"string":"-2,955,144,397,254,079,500"},"text":{"kind":"string","value":"Wimbledon 2015: Men singles semi-finals\n\nNovak Djokovic, Roger Federer,Andy Murray and Richard Gasquet enters in semi-finals \n\nAs the quarter-final of Wimbledon 2015 is over, out of top four seeded three advances to semi-finals. None of them struggled to reach in the semis. But No. 4 seed Stan Wawrinka was eliminated by 21 seeded Richard Gasquest in quarter-finals match.\n\n2015 Wimbledon scores and results of Men singles\nNo. 1 Novak Djokovic def. No. 9 Marin Cilic, 6-4, 6-4, 6-4\nNo. 2 Roger Federer def. No. 12 Gilles Simon, 6-3, 7-5, 6-2\nNo. 3 Andy Murray def. Vasek Pospisil, 6-4, 7-5, 6-4\nNo. 21 Richard Gasquet def. No. 4 Stan Wawrinka, 6-4, 4-6, 3-6, 6-4, 11-9\n\nsemifinals wimbledon\nRoger Federe vs Andy Murry\n\n \n\nBritish No1 Andy Murry beats Canadian Vasek Pospisil to reach semi-finals. The 2013 champion wins in straight sets and now he will face 17-time slam champion Roger Federer in semi finals match who defeated No. 12 Gilles Simon by 6-3, 7-5, 6-2 in quarter finals. Win in the Wimbledon 2015 Quarter finals was his 150th grand slam victory.\n\nMurray’s said:\n\nI felt like I played some good stuff. I tried to change my return position at the end of the second set which made him think a bit. It was difficult when we stopped a couple of times for the rain so I was pleased considering that.\n\nsmifinals wimbledon\ndjokovic vs Richard Gasquet\n\nTop seed Novak Djokovic will play Frenchman Richard Gasquet in the Wimbledon semi-finals. Djokovic beats Croat Marin Cilic by 6-4 6-4 6-4. Gasquet defeated 4th seeded Stan Wawrinka in an exciting five-set match.\n\nWimbledon 2015 : order of play of 9 July\n\n \n\nfull Result of day nine of Wimbledon 2015   \n\nFacebook Comments\n\nvin\n\nLeave a Reply\n\nYour email address will not be published. Required fields are marked *"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://www.sportsjuggle.com/tennis-2/wimbledon-2015-men-singles-semi-finals/\",\n \"source_domain\": \"www.sportsjuggle.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"66447\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:ACHFENERYHNSQK2V7MHZZBG3Q2LUMSPT\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-14T02:36:34Z\",\n \"WARC-IP-Address\": \"23.229.193.231\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:NHJ2TC5KLIPG5Q4XT2ACQ3Z3HNWOEFC6\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://www.sportsjuggle.com/tennis-2/wimbledon-2015-men-singles-semi-finals/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-97.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 40,\n 41,\n 126,\n 127,\n 374,\n 375,\n 424,\n 483,\n 543,\n 596,\n 670,\n 671,\n 692,\n 719,\n 720,\n 722,\n 723,\n 1060,\n 1061,\n 1076,\n 1077,\n 1308,\n 1309,\n 1329,\n 1357,\n 1358,\n 1570,\n 1571,\n 1612,\n 1613,\n 1615,\n 1616,\n 1661,\n 1662,\n 1680,\n 1681,\n 1685,\n 1686,\n 1700,\n 1701\n ],\n \"line_end_idx\": [\n 40,\n 41,\n 126,\n 127,\n 374,\n 375,\n 424,\n 483,\n 543,\n 596,\n 670,\n 671,\n 692,\n 719,\n 720,\n 722,\n 723,\n 1060,\n 1061,\n 1076,\n 1077,\n 1308,\n 1309,\n 1329,\n 1357,\n 1358,\n 1570,\n 1571,\n 1612,\n 1613,\n 1615,\n 1616,\n 1661,\n 1662,\n 1680,\n 1681,\n 1685,\n 1686,\n 1700,\n 1701,\n 1771\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1771,\n \"ccnet_original_nlines\": 40,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.19756098091602325,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.009756100364029408,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3365853726863861,\n \"rps_doc_frac_unique_words\": 0.5433333516120911,\n \"rps_doc_mean_word_length\": 4.556666851043701,\n \"rps_doc_num_sentences\": 27,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.795912742614746,\n \"rps_doc_word_count\": 300,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.04754938185214996,\n \"rps_doc_frac_chars_top_3gram\": 0.02194586955010891,\n \"rps_doc_frac_chars_top_4gram\": 0.02194586955010891,\n \"rps_doc_books_importance\": -155.2297821044922,\n \"rps_doc_books_importance_length_correction\": -147.87368774414062,\n \"rps_doc_openwebtext_importance\": -94.79286193847656,\n \"rps_doc_openwebtext_importance_length_correction\": -94.79286193847656,\n \"rps_doc_wikipedia_importance\": -58.10942840576172,\n \"rps_doc_wikipedia_importance_length_correction\": -55.55864334106445\n },\n \"fasttext\": {\n \"dclm\": 0.0005878200172446668,\n \"english\": 0.9171476364135742,\n \"fineweb_edu_approx\": 0.8516775369644165,\n \"eai_general_math\": 3.6000000136482413e-7,\n \"eai_open_web_math\": 0.10876458883285522,\n \"eai_web_code\": -0.000010009999641624745\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"796.35702\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n },\n \"secondary\": {\n \"code\": \"796.357\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"Sports and Athletics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":194,"cells":{"id":{"kind":"number","value":-3024998362045242000,"string":"-3,024,998,362,045,242,000"},"text":{"kind":"string","value":"The Most Medicated Country In The World: 46% Of Americans Have Taken A Pharmaceutical Drug Within The Last 30 Days\n\nIf it seems like about half the country is on drugs, that is because it is actually true.  According to a new survey from the National Center for Health Statistics, almost half of all Americans have taken a pharmaceutical drug within the past 30 days, and that officially makes us “the most medicated country in the world”.  And needless to say, those dealing these drugs are becoming exceedingly wealthy at our expense.  The average American spends $1,200 a year on prescription drugs, but of course many Americans spend far more than that and others spend nothing at all.  In recent years there has been a tremendous backlash against the big pharmaceutical corporations, because many of them have become exceedingly greedy.  As you will see below, prices have been raised on 650 different drugs this year alone.  Once they get their claws into you, the pharmaceutical giants want to get every last penny out of you that they possibly can. (Read More...)\n\nShocking New Study Finds That 137 Million Americans Suffered “Medical Financial Hardship In The Past Year”\n\nThe healthcare system in the United States is deeply broken, and it is causing massive financial pain for millions of American families.  Previously, I have published articles where I talked about how medical bills are the primary factor in two-thirds of all personal bankruptcies in the United States, and that Americans had to borrow a whopping 88 billion dollars last year to cover medical costs.  This is happening even though more than 90 percent of all Americans have some form of health coverage.  Thanks to soaring deductibles and health insurance policies that are absolutely riddled with loopholes, more Americans than ever are being wiped out by medical bills.  And now a brand new study that was conducted by researchers from the American Cancer Society has discovered that 137.1 million Americans suffered “medical financial hardship in the past year”.  The following comes directly from the study(Read More...)\n\nAfter You Read What They Did To One Elderly Couple, You Will Question Everything About Our Barbaric Healthcare System\n\nMost Americans are just a single illness away from losing everything.  In our country today, medical bills are the number one reason why people go bankrupt, and many of them even had “good health insurance”.  As you will see below, even if you have “good health insurance” you can still be stuck with a $100,000 bill for a single hospital stay.  Our healthcare system does not work, it is absolutely barbaric, and both political parties have completely dropped the ball.  The big health insurance corporations now dominate the entire industry, and they have become masters at finding loopholes that will allow them to wiggle out from having to pay claims.  The entire purpose of these companies is to take in as much money as possible and to pay out as little as they can, and in the process millions upon millions of American families are being financially ruined. (Read More...)\n\nHealthcare Spending Now Accounts For Almost One-Fifth Of The Entire U.S. Economy\n\nEverybody agrees that healthcare costs are way too high.  Back in 1960, healthcare spending accounted for approximately 5 percent of GDP, and by 2020 it is being projected that healthcare spending will account for 20 percent of GDP.  And when you break those numbers down into actual dollars, they become even more staggering.  Back in 1960, an average of $146 was spent on healthcare per person for the entire year, but today that number has skyrocketed to $9,990.  On a per capita basis, we spend far more than anyone else in the world on healthcare.  In fact, we spend almost twice as much as most other industrialized nations on a per capita basis.  Something has gone terribly wrong, and we desperately need to get this fixed. (Read More...)\n\nThanks Obamacare! Health Insurance Premiums Are Projected To Spike Dramatically Once Again In 2018\n\nAre you ready for your health insurance premiums to go up again?  Ever since Obamacare became law, health insurance premiums have been rising dramatically year after year.  In 2016, one study found that the average Obamacare premium rose by about 24 percent, and similar increases have been seen all around the nation in 2017.  As you will see below, large premium hikes are on tap for 2018 as well, and rates are going to continue to rise until lawmakers finally do something about this nightmare. (Read More...)\n\nThe Elite Are Attempting To Convince Us That Killing Off Our Sick Grandparents Is Cool And Trendy\n\nWhat should be done with elderly Americans when they become very seriously ill?  Should we try to save their lives or should we just let them die?  Unfortunately, there is a growing consensus among the “intellectual elite” that most elderly people are not going to have a high enough “quality of life” to justify the expense of costly life saving procedures.  This philosophy is now being promoted very heavily through mainstream news outlets, in our television shows and in big Hollywood movies.  The elite are attempting to convince us that killing off our sick grandparents is cool and trendy.  We are being told that “pulling the plug” on grandma and grandpa is compassionate (because it will end their suffering), that it is good for the environment and that it is even good for the economy.  We are being told that denying life saving treatments to old people will dramatically reduce health care costs and make the system better for all of us. We are being told that it is not “efficient” for health insurance companies to shell out $100,000 for an operation that may extend the life of an elderly person by 6 months.  But the truth is that all of this is part of a larger agenda that the elite are attempting to advance.  As I have written about previously, the elite love death, and they truly believe that reducing the population is good for society and good for the planet.  Sadly, population control propaganda has reached a fever pitch in recent months. (Read More...)\n\nDo NOT follow this link or you will be banned from the site!"},"metadata":{"kind":"string","value":"{\n \"url\": \"http://endoftheamericandream.com/archives/tag/health-care-costs\",\n \"source_domain\": \"endoftheamericandream.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"79169\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:2UB6EUTMQVOW3FEY3VJ6TEGNWWHGDUMU\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-21T11:10:59Z\",\n \"WARC-IP-Address\": \"162.241.155.92\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:J26A5WOCFQ7IDFTN263XK7HUC7NPEOM7\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"http://endoftheamericandream.com/archives/tag/health-care-costs\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-97.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 115,\n 116,\n 1072,\n 1073,\n 1180,\n 1181,\n 2106,\n 2107,\n 2225,\n 2226,\n 3107,\n 3108,\n 3189,\n 3190,\n 3937,\n 3938,\n 4037,\n 4038,\n 4552,\n 4553,\n 4651,\n 4652,\n 6134,\n 6135\n ],\n \"line_end_idx\": [\n 115,\n 116,\n 1072,\n 1073,\n 1180,\n 1181,\n 2106,\n 2107,\n 2225,\n 2226,\n 3107,\n 3108,\n 3189,\n 3190,\n 3937,\n 3938,\n 4037,\n 4038,\n 4552,\n 4553,\n 4651,\n 4652,\n 6134,\n 6135,\n 6195\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 6195,\n \"ccnet_original_nlines\": 24,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.42540493607521057,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.007672629784792662,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.13128730654716492,\n \"rps_doc_frac_unique_words\": 0.413859486579895,\n \"rps_doc_mean_word_length\": 4.794995307922363,\n \"rps_doc_num_sentences\": 51,\n \"rps_doc_symbol_to_word_ratio\": 0.005115089938044548,\n \"rps_doc_unigram_entropy\": 5.490411758422852,\n \"rps_doc_word_count\": 1039,\n \"rps_doc_frac_chars_dupe_10grams\": 0.05901243910193443,\n \"rps_doc_frac_chars_dupe_5grams\": 0.12003211677074432,\n \"rps_doc_frac_chars_dupe_6grams\": 0.07747892290353775,\n \"rps_doc_frac_chars_dupe_7grams\": 0.07747892290353775,\n \"rps_doc_frac_chars_dupe_8grams\": 0.07747892290353775,\n \"rps_doc_frac_chars_dupe_9grams\": 0.05901243910193443,\n \"rps_doc_frac_chars_top_2gram\": 0.008028900250792503,\n \"rps_doc_frac_chars_top_3gram\": 0.005419509951025248,\n \"rps_doc_frac_chars_top_4gram\": 0.007226009853184223,\n \"rps_doc_books_importance\": -552.3189697265625,\n \"rps_doc_books_importance_length_correction\": -552.3189697265625,\n \"rps_doc_openwebtext_importance\": -298.40386962890625,\n \"rps_doc_openwebtext_importance_length_correction\": -298.40386962890625,\n \"rps_doc_wikipedia_importance\": -248.45101928710938,\n \"rps_doc_wikipedia_importance_length_correction\": -248.45101928710938\n },\n \"fasttext\": {\n \"dclm\": 0.007014160044491291,\n \"english\": 0.959377646446228,\n \"fineweb_edu_approx\": 1.9469517469406128,\n \"eai_general_math\": 0.023677710443735123,\n \"eai_open_web_math\": 0.11671614646911621,\n \"eai_web_code\": 0.0008449599845334888\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"362.1\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Social service and Societies\",\n \"level_3\": \"Hospitals, Asylums, and Human services\"\n }\n },\n \"secondary\": {\n \"code\": \"338.4\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"Economics\",\n \"level_3\": \"Industries, Prices, and Microeconomics\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Evaluate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"News/Editorial\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"14\",\n \"label\": \"News Article\"\n },\n \"secondary\": {\n \"code\": \"16\",\n \"label\": \"Personal Blog\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Partially Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":195,"cells":{"id":{"kind":"number","value":-4387190164994440700,"string":"-4,387,190,164,994,440,700"},"text":{"kind":"string","value":"UK'S NUMBER ONE BATHROOM BASIN RETAILER\nUK'S NUMBER ONE BATHROOM BASIN RETAILER\n\nGrey Wash Solid Oak 600mm Bathroom Cabinet + Matt Round Deva Basin Set ALTA60G\n\nIn Stock\n- Free Delivery For Mainland UK\n- Next Day Delivery From Only £6.99\n- 30 Day Money Back Guarantee\n- UK's Number One Bathroom Basin Seller\n- Speedy Delivery Service On All Products\n\nSingle Door Natual Oak GREY WASH Vanity \n\nPre-Assembled Cabinet - No Flat Pack\n\nGreat Family Size \n\nInternal Shelf - Loads of Storage\n\nFabulous Finish and High Quality\n\nWas: Regular Price £749.00\nNow only: Special Price £379.00\nPlease select a product option\nQty:  \n\n\n\n\nWe are proud to offer this stunning round solid surface basin and grey wash solid oak bathroom cabinet as a combination purchase,  it really is a touch of luxury for your bathroom. \n\nThe BRAND NEW Range of HIGH QUALITY GREY WASH SOLID OAK Contemporary bathroom furniture is a real winner for any bathroom colour and style.  Easy to install, it is a winner on all fronts.\n\nThis solid oak cabinet is finished with a GREY WASH .. a highly popular colour.  Unlike a painted finish, the natural grain is visible with our GREY WASH cabinets - and is a new addition to our range.  \n\nThe external finish on the grey wash cabinets has a rustic, distressed, shabby chic feel which is very popular and compliments many colour schemes.  The interior finish on the cabinet is not to the same standard as the external finish and whilst this will not be very noticeable once the cabinet has been filled with towels, bottles and bathroom accessories, we are bringing it to your attention and are selling the cabinet at this reduced introductory price to compensate for this.  If you require sample photos, then please contact the office.\n\nThe ALTA Single Door Unit comes complete and undrilled to allow flexibility with basin and tap placement . \n\nThe stunning Round Stone Resin basin which is supplied with this oak cabinet is a generous family size and with its matt finish and curves it really is the perfect pairing for any bathroom setting.\n\nPRICE INCLUDED CABINET + BASIN + CHOICE OF WALL TAP + MATCHING WASTE\n\nThis premier quality Cabinet Unit is handcrafted throughout from Solid Oak with Single Door Cabinet with internal shelf .\n\nCabinet Size\n\nWidth: 60cm\n\nHeight: 80cm\n\nDepth: 50cm\n\nUK Mainland Delivery Included in Price \n\nWrite Your Own Review\nYou're reviewing:Grey Wash Solid Oak 600mm Bathroom Cabinet + Matt Round Deva Basin Set ALTA60G\nYour Rating\n \n\nPlease find below Clickbasin Delivery Information:\n\n \n\nItems under 30kg:   Bathroom Basins, Cloakroom Oak Cabinets, Mirrors and Wall Units.\n\nDespatched next working day following order being placed.  Fully trackable.\n\nFree Delivery:   Delivered within 24 / 48 hours of dispatch via Yodel anytime between 8am and 8pm Monday to Friday.\n\nNext Day Delivery:   £6.99 Available for Orders placed before 12 Noon.  DPD will email/text with a one hour timeslot on the morning of delivery.\n\nSaturday Delivery Option:   £8.49 Available for Orders placed before 12 Noon.\n\n \n\nItems over 30kg:   Large Oak Cabinets over 60cm Wide, Echo Basin and Deco or Leno Wall Hung Cabinets.\n\nSingle Person Pallet Delivery Service Monday to Friday\n\nClickbasin Customer Services will ring to confirm your preferred delivery date as the item needs to be checked and signed for on delivery.\n\nOption at checkout to upgrade to 24 hour delivery at a cost of £35.00\n\nSaturday delivery can be arranged at a charge of £40 - please discuss with customer service\n\nAll products purchased on www.clickbasin.co.uk will be delivered FREE OF CHARGE to addresses in Mainland UK unless upgraded delivery selected.  However, certain areas are liable to a surcharge, these areas can be found along with full Delivery Terms and Conditions on the following page; https://www.clickbasin.co.uk/delivery\n\n \n\nPlease call us on 01772 671354 to discuss any special requirements you may require and we will do our best to assist you with these.\n\nPlease find below Clickbasin Return Details \n\n \n\nBefore Dispatch\n\nA Change to your Order or Cancellation prior to goods being dispatched is not a problem. Please let us know before 11am if you have changed your mind.  If the goods have not been dispatched, we will action the refund in full or change your order.\n\n \n\nAfter Dispatch\n\nIf you decide to change your mind and don’t wish to keep all or parts of your order, we offer a 30 Day Money Back Guarantee and the full details of this can be found at the following:  https://www.clickbasin.co.uk/our-guarantee\n\nWe would also like customers to note that all goods that have been delivered and then returned back to us will be subject to a 10% restocking charge.  Full details can be found at the following:  https://www.clickbasin.co.uk/online-terms\n\n \n\nIf you do have any questions about cancellation, return or refund of any items, please feel free to call us on 01772 671354"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.clickbasin.co.uk/due-mid-march-2019-grey-wash-solid-oak-single-door-bathroom-basin-cabinet-alta60g-4.html\",\n \"source_domain\": \"www.clickbasin.co.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"203060\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:SQ2QMFEWPP34LOV53OZXLLKMRVJZAWOL\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-13T22:32:46Z\",\n \"WARC-IP-Address\": \"185.217.41.99\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:J6FIX7KT7VMR3S7XIPMKP3MXAWN3N5A4\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.clickbasin.co.uk/due-mid-march-2019-grey-wash-solid-oak-single-door-bathroom-basin-cabinet-alta60g-4.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-129.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 40,\n 80,\n 81,\n 160,\n 161,\n 170,\n 202,\n 238,\n 268,\n 308,\n 350,\n 351,\n 392,\n 393,\n 430,\n 431,\n 450,\n 451,\n 485,\n 486,\n 519,\n 520,\n 547,\n 579,\n 610,\n 617,\n 618,\n 619,\n 620,\n 621,\n 803,\n 804,\n 992,\n 993,\n 1196,\n 1197,\n 1743,\n 1744,\n 1852,\n 1853,\n 2051,\n 2052,\n 2121,\n 2122,\n 2244,\n 2245,\n 2258,\n 2259,\n 2271,\n 2272,\n 2285,\n 2286,\n 2298,\n 2299,\n 2339,\n 2340,\n 2362,\n 2458,\n 2470,\n 2472,\n 2473,\n 2524,\n 2525,\n 2527,\n 2528,\n 2613,\n 2614,\n 2690,\n 2691,\n 2807,\n 2808,\n 2953,\n 2954,\n 3032,\n 3033,\n 3035,\n 3036,\n 3138,\n 3139,\n 3194,\n 3195,\n 3334,\n 3335,\n 3405,\n 3406,\n 3498,\n 3499,\n 3825,\n 3826,\n 3828,\n 3829,\n 3962,\n 3963,\n 4008,\n 4009,\n 4011,\n 4012,\n 4028,\n 4029,\n 4276,\n 4277,\n 4279,\n 4280,\n 4295,\n 4296,\n 4524,\n 4525,\n 4763,\n 4764,\n 4766,\n 4767\n ],\n \"line_end_idx\": [\n 40,\n 80,\n 81,\n 160,\n 161,\n 170,\n 202,\n 238,\n 268,\n 308,\n 350,\n 351,\n 392,\n 393,\n 430,\n 431,\n 450,\n 451,\n 485,\n 486,\n 519,\n 520,\n 547,\n 579,\n 610,\n 617,\n 618,\n 619,\n 620,\n 621,\n 803,\n 804,\n 992,\n 993,\n 1196,\n 1197,\n 1743,\n 1744,\n 1852,\n 1853,\n 2051,\n 2052,\n 2121,\n 2122,\n 2244,\n 2245,\n 2258,\n 2259,\n 2271,\n 2272,\n 2285,\n 2286,\n 2298,\n 2299,\n 2339,\n 2340,\n 2362,\n 2458,\n 2470,\n 2472,\n 2473,\n 2524,\n 2525,\n 2527,\n 2528,\n 2613,\n 2614,\n 2690,\n 2691,\n 2807,\n 2808,\n 2953,\n 2954,\n 3032,\n 3033,\n 3035,\n 3036,\n 3138,\n 3139,\n 3194,\n 3195,\n 3334,\n 3335,\n 3405,\n 3406,\n 3498,\n 3499,\n 3825,\n 3826,\n 3828,\n 3829,\n 3962,\n 3963,\n 4008,\n 4009,\n 4011,\n 4012,\n 4028,\n 4029,\n 4276,\n 4277,\n 4279,\n 4280,\n 4295,\n 4296,\n 4524,\n 4525,\n 4763,\n 4764,\n 4766,\n 4767,\n 4890\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 4890,\n \"ccnet_original_nlines\": 111,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.3201707601547241,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.053361788392066956,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.150480255484581,\n \"rps_doc_frac_unique_words\": 0.4231258034706116,\n \"rps_doc_mean_word_length\": 4.92249059677124,\n \"rps_doc_num_sentences\": 46,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 5.341874599456787,\n \"rps_doc_word_count\": 787,\n \"rps_doc_frac_chars_dupe_10grams\": 0.030975740402936935,\n \"rps_doc_frac_chars_dupe_5grams\": 0.10712441802024841,\n \"rps_doc_frac_chars_dupe_6grams\": 0.07898812741041183,\n \"rps_doc_frac_chars_dupe_7grams\": 0.04956118017435074,\n \"rps_doc_frac_chars_dupe_8grams\": 0.030975740402936935,\n \"rps_doc_frac_chars_dupe_9grams\": 0.030975740402936935,\n \"rps_doc_frac_chars_top_2gram\": 0.01445533987134695,\n \"rps_doc_frac_chars_top_3gram\": 0.012390290386974812,\n \"rps_doc_frac_chars_top_4gram\": 0.015487870201468468,\n \"rps_doc_books_importance\": -422.5506286621094,\n \"rps_doc_books_importance_length_correction\": -422.5506286621094,\n \"rps_doc_openwebtext_importance\": -240.70347595214844,\n \"rps_doc_openwebtext_importance_length_correction\": -240.70347595214844,\n \"rps_doc_wikipedia_importance\": -203.8169708251953,\n \"rps_doc_wikipedia_importance_length_correction\": -203.8169708251953\n },\n \"fasttext\": {\n \"dclm\": 0.00005400000009103678,\n \"english\": 0.8822057843208313,\n \"fineweb_edu_approx\": 0.5519751906394958,\n \"eai_general_math\": 0.0000953700000536628,\n \"eai_open_web_math\": 0.054692450910806656,\n \"eai_web_code\": -0.000003580000111469417\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"690.89\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Building\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"labels\": {\n \"level_1\": \"\",\n \"level_2\": \"\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"15\",\n \"label\": \"E-Commerce/Marketplace\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Missing Images or Figures\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"21\",\n \"label\": \"Customer Support\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":196,"cells":{"id":{"kind":"number","value":-6609089996365116000,"string":"-6,609,089,996,365,116,000"},"text":{"kind":"string","value":"DV Info Net\n\nDV Info Net (https://www.dvinfo.net/forum/)\n-   JVC GY-HD Series Camera Systems (https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/)\n-   -   FREE upgrade for U.S. owners to \"A\" Version (https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/63294-free-upgrade-u-s-owners-version.html)\n\nStephen L. Noe March 27th, 2006 09:23 PM\n\nQuote:\n\nOriginally Posted by Stephen L. Noe\nProgress report.\n\nCamera was recieved by JVC today and it's now in the system. I sent the camera out on Monday from the Chicago area (USPS Priority w/insurance) and they've input it into the system today. I also ordered the confirmation on when the camera was recieved from the USPS, however I have not received the confirmation yet.\n\nProgress report.\n\nI sent an HD-100 last monday (March 20) and now it's exactly 7 days later and they've updated the camera on their website and \"dispatched\" it via UPS today. The tracking number and UPS information states the camera should be delivered on the 31st. If that holds true then the entire process takes 12 days when the camera is sent from Chicago...\n\nCarl Hicks March 29th, 2006 11:36 AM\n\nUpdate turn-around time\n \nAll:\n\nPlease remember that the stated 3 day turn-around goal is only if the unit is sent to the Cypress, CA facility, as the website states. If you send it to another JVC Pro service facility, it may take longer. Also, if there are any other issues that you ask to be looked at, it will take longer.\n\nAlso, remember shipping transit time to & from JVC.\n\nRegards, Carl\n\nNate Weaver March 29th, 2006 05:58 PM\n\nWell, i just got my cam back from Cypress. There's 2 new menu items now, one about battery display in LCD/VF menu (page 2), and one about how the rec trigger in the firewire stream is timed vs. the tape mech.\n\nFor curiosity's sake, here's the numbers:\n\nsys cpu c1590 v0401\ncam cpu c1591 v0203\nvtr cpu c1594 v0120\nenc cpu L1187 v0108\n\npackage c1615 v0202\nfpga2 c1595 v0202\nfpga3 c1596 v0101\nfpga4 c1597 v0106\n\nAlmost all the numbers in the \"V\" column have incremented compared to other numbers posted on the board here. I myself wouldn't freak out if you get your camera back and have different numbers than I, I guarantee that there's more to know about this than just simply \"my numbers are different, they must have screwed up\".\n\nJust FYI...\n\n[update: I just found by holding STOP and MENU down for 5secs you can access a menu to adjust Anton Bauer battery voltage cutoffs.]\n\nDaniel Patton March 29th, 2006 06:36 PM\n\nThanks Nate, I hope more people post the new firmware numbers as well.\n\nI have been holding back from sending our camera in. I need to wait until I know we can be without, for a weeks time. Besides, none of the issues that the firmware fixes are criticle for us right now, or so I hope.\n\nDo we have a solid list of everything that this update fixes / adds, like your new found menu items?\n\nCarl Hicks March 29th, 2006 08:50 PM\n\nFirmware versions\n \nKeep in mind that depending on when your GYHD100U was built, there are various combinations of hardware and firmware that will be installed to accomplish \"A\" upgrades. So, even after everyone's \"A\" upgrades are done, the firmware versions may not match exactly.\n\nThe goal is for everyone to have the full functionality of the \"A\" version, whatever that takes.\n\nCarl\n\nJohn Mitchell March 29th, 2006 09:01 PM\n\nQuote:\n\nOriginally Posted by Carl Hicks\nKeep in mind that depending on when your GYHD100U was built, there are various combinations of hardware and firmware that will be installed to accomplish \"A\" upgrades.\nCarl\n\nCarl can you specify whether any other hardware upgrades may be required apart from the one mentioned by Marc Colemont (in this thread) or is that \"highly secret stuff\"?\n\nCarl Hicks March 29th, 2006 09:17 PM\n\nJohn, I don't have specifics on the hardware updates. I'm not privy to the details on that in my position. It's nothing major, and may or may not be required, based on when the camera was built.\n\nDaniel Patton March 29th, 2006 09:21 PM\n\nGot it Carl, thanks for the info.\n\nYou know us anal-retentive techie camera geeks, we just like to analyze everything regardless. ;)\n\nThanks again for all your help this last month by the way. I have been editing down the results from that shoot for a couple weeks now. The production crew keeps praising the footage and how well of a job the JVC did. It kills me not to show it off early around here, but I ike my job too much to risk it.\n\nCarl Hicks March 29th, 2006 09:30 PM\n\nI look forward to seeing some samples eventually.\n\nNate Weaver March 29th, 2006 11:30 PM\n\nQuote:\n\nOriginally Posted by Carl Hicks\nKeep in mind that depending on when your GYHD100U was built, there are various combinations of hardware and firmware that will be installed to accomplish \"A\" upgrades. So, even after everyone's \"A\" upgrades are done, the firmware versions may not match exactly.\n\nThat's kinda what I was getting at on the tail end of my post. In one way, posting numbers for people to compare is pointless, because I highly suspected it was much more complicated than just \"these are the new versions\" and if you don't have them it's wrong.\n\nSo sorry for making your job more difficult that way, but I wanted to post my info just for the sake of science.\n\nChris Basmas March 30th, 2006 12:20 AM\n\nFrom a technical point of view, if every HD100 has the same hardware components, then all hardware and firmware numbers should be the same. Otherwise is not the same camera.\n\nChris Hurd March 30th, 2006 12:44 AM\n\nSorry but no, you do not know that to be a fact.\n\nWhen Carl says that the firmware versions may not match exactly, but that everyone will have whatever it takes to complete the \"A\" model upgrade, then we're going to take that to be true.\n\nThere may be one firmware version to get a Sep. 2005 camera upgraded to A status, there may be another version to get a Feb. 2006 camera upgraded to A status, and so on. Please, no conspiracy theories -- thanks in advance,\n\nChris Basmas March 30th, 2006 01:47 AM\n\nThen the Sep.2005 camera and the Feb.2006 camera did't have the same hardware components.\nBut i agree the end result is what counts, and JVC\nthis time is serious about helping its customers.\n\nChris Hurd March 30th, 2006 01:49 AM\n\nYes inded, I'm with ya on that one.\n\nStephen L. Noe March 31st, 2006 06:10 PM\n\nCamera is back in my hands\n \nOK, Today the UPS carrier brought back an HD-100 to me that has been \"A'd\" The entire process took 12 days from Chicago. I'm wasting no time getting it back into production.\n\nend of story....\n\n\nAll times are GMT -6. The time now is 06:03 PM.\n\nDV Info Net -- Real Names, Real People, Real Info!\n1998-2019 The Digital Video Information Network"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/63294-free-upgrade-u-s-owners-version-6-print.html\",\n \"source_domain\": \"www.dvinfo.net\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"22795\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:VLSUIGOT3C74Y7TZMLD7HS6BDWZT6545\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-17T00:03:15Z\",\n \"WARC-IP-Address\": \"162.254.117.25\",\n \"WARC-Identified-Payload-Type\": \"application/xhtml+xml\",\n \"WARC-Payload-Digest\": \"sha1:QYWM5NVZJJVV3ITBYSJJ3FECAUMNC5E7\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/63294-free-upgrade-u-s-owners-version-6-print.html\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-179.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 12,\n 13,\n 57,\n 157,\n 315,\n 316,\n 357,\n 358,\n 365,\n 366,\n 402,\n 419,\n 420,\n 736,\n 737,\n 754,\n 755,\n 1100,\n 1101,\n 1138,\n 1139,\n 1163,\n 1165,\n 1170,\n 1171,\n 1465,\n 1466,\n 1518,\n 1519,\n 1533,\n 1534,\n 1572,\n 1573,\n 1782,\n 1783,\n 1825,\n 1826,\n 1846,\n 1866,\n 1886,\n 1906,\n 1907,\n 1927,\n 1945,\n 1963,\n 1981,\n 1982,\n 2304,\n 2305,\n 2317,\n 2318,\n 2450,\n 2451,\n 2491,\n 2492,\n 2563,\n 2564,\n 2779,\n 2780,\n 2881,\n 2882,\n 2919,\n 2920,\n 2938,\n 2940,\n 3202,\n 3203,\n 3300,\n 3301,\n 3306,\n 3307,\n 3347,\n 3348,\n 3355,\n 3356,\n 3388,\n 3556,\n 3561,\n 3562,\n 3732,\n 3733,\n 3770,\n 3771,\n 3966,\n 3967,\n 4007,\n 4008,\n 4042,\n 4043,\n 4141,\n 4142,\n 4448,\n 4449,\n 4486,\n 4487,\n 4537,\n 4538,\n 4576,\n 4577,\n 4584,\n 4585,\n 4617,\n 4879,\n 4880,\n 5141,\n 5142,\n 5255,\n 5256,\n 5295,\n 5296,\n 5470,\n 5471,\n 5508,\n 5509,\n 5558,\n 5559,\n 5747,\n 5748,\n 5971,\n 5972,\n 6011,\n 6012,\n 6102,\n 6153,\n 6203,\n 6204,\n 6241,\n 6242,\n 6278,\n 6279,\n 6320,\n 6321,\n 6348,\n 6350,\n 6524,\n 6525,\n 6542,\n 6543,\n 6544,\n 6592,\n 6593,\n 6644\n ],\n \"line_end_idx\": [\n 12,\n 13,\n 57,\n 157,\n 315,\n 316,\n 357,\n 358,\n 365,\n 366,\n 402,\n 419,\n 420,\n 736,\n 737,\n 754,\n 755,\n 1100,\n 1101,\n 1138,\n 1139,\n 1163,\n 1165,\n 1170,\n 1171,\n 1465,\n 1466,\n 1518,\n 1519,\n 1533,\n 1534,\n 1572,\n 1573,\n 1782,\n 1783,\n 1825,\n 1826,\n 1846,\n 1866,\n 1886,\n 1906,\n 1907,\n 1927,\n 1945,\n 1963,\n 1981,\n 1982,\n 2304,\n 2305,\n 2317,\n 2318,\n 2450,\n 2451,\n 2491,\n 2492,\n 2563,\n 2564,\n 2779,\n 2780,\n 2881,\n 2882,\n 2919,\n 2920,\n 2938,\n 2940,\n 3202,\n 3203,\n 3300,\n 3301,\n 3306,\n 3307,\n 3347,\n 3348,\n 3355,\n 3356,\n 3388,\n 3556,\n 3561,\n 3562,\n 3732,\n 3733,\n 3770,\n 3771,\n 3966,\n 3967,\n 4007,\n 4008,\n 4042,\n 4043,\n 4141,\n 4142,\n 4448,\n 4449,\n 4486,\n 4487,\n 4537,\n 4538,\n 4576,\n 4577,\n 4584,\n 4585,\n 4617,\n 4879,\n 4880,\n 5141,\n 5142,\n 5255,\n 5256,\n 5295,\n 5296,\n 5470,\n 5471,\n 5508,\n 5509,\n 5558,\n 5559,\n 5747,\n 5748,\n 5971,\n 5972,\n 6011,\n 6012,\n 6102,\n 6153,\n 6203,\n 6204,\n 6241,\n 6242,\n 6278,\n 6279,\n 6320,\n 6321,\n 6348,\n 6350,\n 6524,\n 6525,\n 6542,\n 6543,\n 6544,\n 6592,\n 6593,\n 6644,\n 6691\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 6691,\n \"ccnet_original_nlines\": 142,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.37061548233032227,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.05823957920074463,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.02097902074456215,\n \"rps_doc_frac_no_alph_words\": 0.21839840710163116,\n \"rps_doc_frac_unique_words\": 0.3714531362056732,\n \"rps_doc_mean_word_length\": 4.436801433563232,\n \"rps_doc_num_sentences\": 75,\n \"rps_doc_symbol_to_word_ratio\": 0.001985440030694008,\n \"rps_doc_unigram_entropy\": 5.495151519775391,\n \"rps_doc_word_count\": 1163,\n \"rps_doc_frac_chars_dupe_10grams\": 0.1211240291595459,\n \"rps_doc_frac_chars_dupe_5grams\": 0.20251938700675964,\n \"rps_doc_frac_chars_dupe_6grams\": 0.12829457223415375,\n \"rps_doc_frac_chars_dupe_7grams\": 0.12829457223415375,\n \"rps_doc_frac_chars_dupe_8grams\": 0.1211240291595459,\n \"rps_doc_frac_chars_dupe_9grams\": 0.1211240291595459,\n \"rps_doc_frac_chars_top_2gram\": 0.015697669237852097,\n \"rps_doc_frac_chars_top_3gram\": 0.022674420848488808,\n \"rps_doc_frac_chars_top_4gram\": 0.013953490182757378,\n \"rps_doc_books_importance\": -734.0731201171875,\n \"rps_doc_books_importance_length_correction\": -734.0731201171875,\n \"rps_doc_openwebtext_importance\": -404.0584716796875,\n \"rps_doc_openwebtext_importance_length_correction\": -404.0584716796875,\n \"rps_doc_wikipedia_importance\": -341.1804504394531,\n \"rps_doc_wikipedia_importance_length_correction\": -341.1804504394531\n },\n \"fasttext\": {\n \"dclm\": 0.0006833099760115147,\n \"english\": 0.946962833404541,\n \"fineweb_edu_approx\": 1.0180821418762207,\n \"eai_general_math\": 0.07726746797561646,\n \"eai_open_web_math\": 0.11808676272630692,\n \"eai_web_code\": 0.0009481299784965813\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"621.392\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Engineering\",\n \"level_3\": \"Mechanical engineering and Machinery\"\n }\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"labels\": {\n \"level_1\": \"\",\n \"level_2\": \"\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"5\",\n \"label\": \"Social/Forum\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"18\",\n \"label\": \"Q&A Forum\"\n },\n \"secondary\": {\n \"code\": \"8\",\n \"label\": \"Documentation\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Intermediate Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Mostly Correct\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Undergraduate Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":197,"cells":{"id":{"kind":"number","value":4667218258627501000,"string":"4,667,218,258,627,501,000"},"text":{"kind":"string","value":"Restaurants near Belfast City Hall\n\n2 people\n13 Oct 2019\nOctober 2019\nMon\nTue\nWed\nThu\nFri\nSat\nSun\n30\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n20:30\nPrice\nCuisines(20 of 41)\n\n158 restaurants available nearby\n\nHell Cat Maggies\n1. Hell Cat Maggies\nReviews Coming Soon\n$$$$\nBritish | Randalstown\nHome Restaurant\n2. Home Restaurant\n4.3\n204 reviews\n$$$$\nInternational | BelfastBooked 8 times todayBeautiful meal in a warm, lively atmosphere.\nAfternoon Tea at Solo Restaurant\n3. Afternoon Tea at Solo Restaurant\nReviews Coming Soon\n$$$$\nBritish | Belfast\nWelcome to Afternoon Tea at Solo Restaurant , we look forward to serving you.\nMumbai Milano\n4. Mumbai Milano\nReviews Coming Soon\n$$$$\nIndian | Belfast\nAt Mumbai Milano we’ve created a beautiful, authentic dining experience by taking the best of Indian and Italian food culture to create a delicious fusion menu. By bringing the best fresh local Northern Ireland produce together with the rich herbs, spices and cooking techniques from across India...\nThe Allotment Bistro\n5. The Allotment Bistro\n3.8\n3 reviews\n$$$$\nBreakfast | BelfastFirst time and what a great night. The menu selection and variety was excellent. I had plaice and my friend had sirloin. The food was plentiful tasty hot and reasonably priced. The bistro has a shabby chic interior which add to the atomsphere. We also had the pleasure of engagement with chef and to...\nEDŌ\n6. EDŌ\n4.6\n390 reviews\n$$$$\nModern European | BelfastBooked 10 times todayGot a voucher for the restaurant for my birthday and we found the staff very pleasant, helpful in telling us how to order and the ambiance was very good and the food excellent.\nRusty Saddle @ 21 Howard St\n7. Rusty Saddle @ 21 Howard St\n4.8\n8 reviews\n$$$$\nBar / Lounge / Bottle Service | BelfastBooked 3 times todayLovely venue for food and drinks with pleasent staff\nDeanes Meat Locker\n8. Deanes Meat Locker\nReviews Coming Soon\n$$$$\nSteak | Belfast\nWhen you combine the sheer skill of Deanes chefs with the superb quality of the well renowned Hannan Meats and the accuracy of the Asador Grill you create a product that simply excels... and that's at the heart of Deanes Meat Locker.\nDeanes Love Fish\n9. Deanes Love Fish\nReviews Coming Soon\n$$$$\nSeafood | Belfast\nDeanes Love Fish is a totally different eating out experience in Belfast. The 100 seater dining space is flooded with light from a conservatory style roof. In the informal but stylish all white interior, reminiscent of a warm summer day on the coast, you will feel welcome and relaxed the menute...\nAfternoon Tea at Ten Square Hotel\n10. Afternoon Tea at Ten Square Hotel\nReviews Coming Soon\n$$$$\nAfternoon Tea | Belfast\nAfternoon Tea in The Loft, Ten Square - a delightful indulgence amongst the rooftops of Belfast, where time stands still - reassuringly traditional& irresistibly delicious. Get settled in our luxurious Loft Bar, drink in the ambience, sit back & catch up, while we serve our signature 3-tiered..."},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.opentable.co.uk/landmark/restaurants-near-belfast-city-hall\",\n \"source_domain\": \"www.opentable.co.uk\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"246370\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:BTH2EIJAEIOAK6VQIRK2LGP5XFEYRPEE\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-13T20:05:10Z\",\n \"WARC-IP-Address\": \"104.117.18.20\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:3YDHDWIEXV7EREMO4RBGDLCLN77MQ6AG\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.opentable.co.uk/landmark/restaurants-near-belfast-city-hall\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-201.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 35,\n 36,\n 45,\n 57,\n 70,\n 74,\n 78,\n 82,\n 86,\n 90,\n 94,\n 98,\n 101,\n 103,\n 105,\n 107,\n 109,\n 111,\n 113,\n 115,\n 117,\n 119,\n 122,\n 125,\n 128,\n 131,\n 134,\n 137,\n 140,\n 143,\n 146,\n 149,\n 152,\n 155,\n 158,\n 161,\n 164,\n 167,\n 170,\n 173,\n 176,\n 179,\n 182,\n 185,\n 187,\n 189,\n 191,\n 193,\n 195,\n 197,\n 199,\n 201,\n 203,\n 206,\n 212,\n 218,\n 237,\n 238,\n 271,\n 272,\n 289,\n 309,\n 329,\n 334,\n 356,\n 372,\n 391,\n 395,\n 407,\n 412,\n 500,\n 533,\n 569,\n 589,\n 594,\n 612,\n 690,\n 704,\n 721,\n 741,\n 746,\n 763,\n 1063,\n 1084,\n 1108,\n 1112,\n 1122,\n 1127,\n 1449,\n 1453,\n 1460,\n 1464,\n 1476,\n 1481,\n 1704,\n 1732,\n 1763,\n 1767,\n 1777,\n 1782,\n 1894,\n 1913,\n 1935,\n 1955,\n 1960,\n 1976,\n 2210,\n 2227,\n 2247,\n 2267,\n 2272,\n 2290,\n 2589,\n 2623,\n 2661,\n 2681,\n 2686,\n 2710\n ],\n \"line_end_idx\": [\n 35,\n 36,\n 45,\n 57,\n 70,\n 74,\n 78,\n 82,\n 86,\n 90,\n 94,\n 98,\n 101,\n 103,\n 105,\n 107,\n 109,\n 111,\n 113,\n 115,\n 117,\n 119,\n 122,\n 125,\n 128,\n 131,\n 134,\n 137,\n 140,\n 143,\n 146,\n 149,\n 152,\n 155,\n 158,\n 161,\n 164,\n 167,\n 170,\n 173,\n 176,\n 179,\n 182,\n 185,\n 187,\n 189,\n 191,\n 193,\n 195,\n 197,\n 199,\n 201,\n 203,\n 206,\n 212,\n 218,\n 237,\n 238,\n 271,\n 272,\n 289,\n 309,\n 329,\n 334,\n 356,\n 372,\n 391,\n 395,\n 407,\n 412,\n 500,\n 533,\n 569,\n 589,\n 594,\n 612,\n 690,\n 704,\n 721,\n 741,\n 746,\n 763,\n 1063,\n 1084,\n 1108,\n 1112,\n 1122,\n 1127,\n 1449,\n 1453,\n 1460,\n 1464,\n 1476,\n 1481,\n 1704,\n 1732,\n 1763,\n 1767,\n 1777,\n 1782,\n 1894,\n 1913,\n 1935,\n 1955,\n 1960,\n 1976,\n 2210,\n 2227,\n 2247,\n 2267,\n 2272,\n 2290,\n 2589,\n 2623,\n 2661,\n 2681,\n 2686,\n 2710,\n 3006\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 3006,\n \"ccnet_original_nlines\": 118,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.22765599191188812,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.0050590201281011105,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0.033613450825214386,\n \"rps_doc_frac_no_alph_words\": 0.26644182205200195,\n \"rps_doc_frac_unique_words\": 0.54347825050354,\n \"rps_doc_mean_word_length\": 4.654150009155273,\n \"rps_doc_num_sentences\": 32,\n \"rps_doc_symbol_to_word_ratio\": 0.008431700058281422,\n \"rps_doc_unigram_entropy\": 5.241308212280273,\n \"rps_doc_word_count\": 506,\n \"rps_doc_frac_chars_dupe_10grams\": 0.009341830387711525,\n \"rps_doc_frac_chars_dupe_5grams\": 0.08662419766187668,\n \"rps_doc_frac_chars_dupe_6grams\": 0.0331210196018219,\n \"rps_doc_frac_chars_dupe_7grams\": 0.009341830387711525,\n \"rps_doc_frac_chars_dupe_8grams\": 0.009341830387711525,\n \"rps_doc_frac_chars_dupe_9grams\": 0.009341830387711525,\n \"rps_doc_frac_chars_top_2gram\": 0.035668790340423584,\n \"rps_doc_frac_chars_top_3gram\": 0.04331209883093834,\n \"rps_doc_frac_chars_top_4gram\": 0.02292994037270546,\n \"rps_doc_books_importance\": -199.1821746826172,\n \"rps_doc_books_importance_length_correction\": -199.1821746826172,\n \"rps_doc_openwebtext_importance\": -101.84583282470703,\n \"rps_doc_openwebtext_importance_length_correction\": -101.84583282470703,\n \"rps_doc_wikipedia_importance\": -114.50712585449219,\n \"rps_doc_wikipedia_importance_length_correction\": -114.50712585449219\n },\n \"fasttext\": {\n \"dclm\": 0.0006614900194108486,\n \"english\": 0.868063747882843,\n \"fineweb_edu_approx\": 0.8465389013290405,\n \"eai_general_math\": 0.0001448399998480454,\n \"eai_open_web_math\": 0.04720008000731468,\n \"eai_web_code\": -0.000005960000180493807\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"647.95\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Home economics\",\n \"level_3\": \"Household employees, Caterers and catering, and Real estate management\"\n }\n },\n \"secondary\": {\n \"code\": \"910.41\",\n \"labels\": {\n \"level_1\": \"History and Geography\",\n \"level_2\": \"Geography and Voyages and travels\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"7\",\n \"label\": \"Search/Directory/Bibliography\"\n },\n \"secondary\": {\n \"code\": \"15\",\n \"label\": \"E-Commerce/Marketplace\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Click Here References\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Content Listing\"\n },\n \"secondary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":198,"cells":{"id":{"kind":"number","value":-4871884174378900000,"string":"-4,871,884,174,378,900,000"},"text":{"kind":"string","value":"Plantation Shutter Sale in Minneapolis\n\nWe love offering you the best prices on the best plantation shutter brands in Minneapolis. So, whether you’re contemplating our Polywood® or our Ovation® shutters, right now is the time to order them.\n\nHow Do I Get This Plantation Shutter Discount?\n\nTo get a discount on your plantation shutters, you simply have to purchase your shutters from us by scheduling an in-home consultation before the sale ends.\n\nWe bring samples of our Polywood and Ovation shutters – and all their color and frame options – so you can see how they go with your décor. We measure your windows and take notice of those with special shapes. Then, we present you with a quote of what this home improvement task will cost.\n\nNext, we take all that information to our store and order your custom shutters from our manufacturing facility. Once the shutters are complete, our installers bring them to your house to be fitted precisely to your windows.\n\nAnd, just like that, you have charming window shutters that work effortlessly – and save you real dollars.\n\nFind out what offers are available on plantation shutters in Minneapolis:\n\nWe are currently not offering any discounts in the Minneapolis market."},"metadata":{"kind":"string","value":"{\n \"url\": \"https://www.sunburstshuttersminneapolis.com/about-us/plantation-shutter-sale-in-minneapolis\",\n \"source_domain\": \"www.sunburstshuttersminneapolis.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"81457\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:MU435MHKXJMUUTDG7HVGYG3AUEBLIKX4\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-14T16:28:29Z\",\n \"WARC-IP-Address\": \"151.139.237.32\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:TN3F7FHSWHYCH5GMY4BWLHH5BTWWVZAN\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://www.sunburstshuttersminneapolis.com/about-us/plantation-shutter-sale-in-minneapolis\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-97.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 39,\n 40,\n 241,\n 242,\n 289,\n 290,\n 447,\n 448,\n 738,\n 739,\n 963,\n 964,\n 1071,\n 1072,\n 1146,\n 1147\n ],\n \"line_end_idx\": [\n 39,\n 40,\n 241,\n 242,\n 289,\n 290,\n 447,\n 448,\n 738,\n 739,\n 963,\n 964,\n 1071,\n 1072,\n 1146,\n 1147,\n 1217\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 1217,\n \"ccnet_original_nlines\": 16,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.45652174949645996,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.004347830079495907,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.11739130318164825,\n \"rps_doc_frac_unique_words\": 0.5735294222831726,\n \"rps_doc_mean_word_length\": 4.833333492279053,\n \"rps_doc_num_sentences\": 11,\n \"rps_doc_symbol_to_word_ratio\": 0,\n \"rps_doc_unigram_entropy\": 4.49623966217041,\n \"rps_doc_word_count\": 204,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.0517241396009922,\n \"rps_doc_frac_chars_top_3gram\": 0.030425960198044777,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -90.15592193603516,\n \"rps_doc_books_importance_length_correction\": -90.15592193603516,\n \"rps_doc_openwebtext_importance\": -55.59077072143555,\n \"rps_doc_openwebtext_importance_length_correction\": -55.59061813354492,\n \"rps_doc_wikipedia_importance\": -31.707992553710938,\n \"rps_doc_wikipedia_importance_length_correction\": -31.707992553710938\n },\n \"fasttext\": {\n \"dclm\": 0.00013374999980442226,\n \"english\": 0.9176800847053528,\n \"fineweb_edu_approx\": 0.6119473576545715,\n \"eai_general_math\": 0.0014071499463170767,\n \"eai_open_web_math\": 0.040086209774017334,\n \"eai_web_code\": 0.00022166999406181276\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"692.8\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Building\",\n \"level_3\": \"Architecture — Designs and plans and Buildings — Specifications\"\n }\n },\n \"secondary\": {\n \"code\": \"690\",\n \"labels\": {\n \"level_1\": \"Industrial arts, Technology, and Engineering\",\n \"level_2\": \"Building\",\n \"level_3\": \"\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Procedural\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Promotional/Advertisement\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Irrelevant Content\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No missing content\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"17\",\n \"label\": \"Product Page\"\n },\n \"secondary\": {\n \"code\": \"21\",\n \"label\": \"Customer Support\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"High School Level\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}},{"rowIdx":199,"cells":{"id":{"kind":"number","value":7582608152492554000,"string":"7,582,608,152,492,554,000"},"text":{"kind":"string","value":"Work/Life Imbalance\n\n27\nJul\n\nWLI Episode 30: Watermelon Park\n\nJuly 27, 2018\n\nA bit of a short episode this week due to scheduling constraints, so enjoy this condensed “all killer, no filler” episode!\n\nIn this episode, we talk waterspo... err, water parks, quaint American tourist traps, belt bifurcation, and going commando.\n\nThis week’s Indie Podcast Corner: @BrookReadingPod!\n\nThis week’s promo: @YouCanRewindIt!"},"metadata":{"kind":"string","value":"{\n \"url\": \"https://worklifeimbalance.podbean.com/e/wli-episode-30-watermelon-park/\",\n \"source_domain\": \"worklifeimbalance.podbean.com\",\n \"snapshot_id\": \"crawl=CC-MAIN-2019-43\",\n \"warc_metadata\": {\n \"Content-Length\": \"48353\",\n \"Content-Type\": \"application/http; msgtype=response\",\n \"WARC-Block-Digest\": \"sha1:Y6V4SRZTEE2CB4Z6DE7YM776XYR3CJGV\",\n \"WARC-Concurrent-To\": \"\",\n \"WARC-Date\": \"2019-10-17T20:49:04Z\",\n \"WARC-IP-Address\": \"54.174.236.155\",\n \"WARC-Identified-Payload-Type\": \"text/html\",\n \"WARC-Payload-Digest\": \"sha1:FH6FJ3T5UQCQDNV3SELXWHE54W2Q2INZ\",\n \"WARC-Record-ID\": \"\",\n \"WARC-Target-URI\": \"https://worklifeimbalance.podbean.com/e/wli-episode-30-watermelon-park/\",\n \"WARC-Truncated\": null,\n \"WARC-Type\": \"response\",\n \"WARC-Warcinfo-ID\": \"\"\n },\n \"warc_info\": \"isPartOf: CC-MAIN-2019-43\\r\\npublisher: Common Crawl\\r\\ndescription: Wide crawl of the web for October 2019\\r\\noperator: Common Crawl Admin (info@commoncrawl.org)\\r\\nhostname: ip-10-67-67-201.ec2.internal\\r\\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\\r\\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\\r\\nformat: WARC File Format 1.1\\r\\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/\"\n}"},"line_start_n_end_idx":{"kind":"string","value":"{\n \"line_start_idx\": [\n 0,\n 20,\n 21,\n 24,\n 28,\n 29,\n 61,\n 62,\n 76,\n 77,\n 200,\n 201,\n 325,\n 326,\n 378,\n 379\n ],\n \"line_end_idx\": [\n 20,\n 21,\n 24,\n 28,\n 29,\n 61,\n 62,\n 76,\n 77,\n 200,\n 201,\n 325,\n 326,\n 378,\n 379,\n 414\n ]\n}"},"quality_signals":{"kind":"string","value":"{\n \"red_pajama_v2\": {\n \"ccnet_original_length\": 414,\n \"ccnet_original_nlines\": 15,\n \"rps_doc_curly_bracket\": 0,\n \"rps_doc_ldnoobw_words\": 0,\n \"rps_doc_lorem_ipsum\": 0,\n \"rps_doc_stop_word_fraction\": 0.16091954708099365,\n \"rps_doc_ut1_blacklist\": 0,\n \"rps_doc_frac_all_caps_words\": 0.022988509386777878,\n \"rps_doc_frac_lines_end_with_ellipsis\": 0,\n \"rps_doc_frac_no_alph_words\": 0.3103448152542114,\n \"rps_doc_frac_unique_words\": 0.8360655903816223,\n \"rps_doc_mean_word_length\": 5.34426212310791,\n \"rps_doc_num_sentences\": 5,\n \"rps_doc_symbol_to_word_ratio\": 0.011494250036776066,\n \"rps_doc_unigram_entropy\": 3.8198697566986084,\n \"rps_doc_word_count\": 61,\n \"rps_doc_frac_chars_dupe_10grams\": 0,\n \"rps_doc_frac_chars_dupe_5grams\": 0,\n \"rps_doc_frac_chars_dupe_6grams\": 0,\n \"rps_doc_frac_chars_dupe_7grams\": 0,\n \"rps_doc_frac_chars_dupe_8grams\": 0,\n \"rps_doc_frac_chars_dupe_9grams\": 0,\n \"rps_doc_frac_chars_top_2gram\": 0.061349689960479736,\n \"rps_doc_frac_chars_top_3gram\": 0,\n \"rps_doc_frac_chars_top_4gram\": 0,\n \"rps_doc_books_importance\": -42.98238754272461,\n \"rps_doc_books_importance_length_correction\": -42.98241424560547,\n \"rps_doc_openwebtext_importance\": -21.91798210144043,\n \"rps_doc_openwebtext_importance_length_correction\": -21.91800880432129,\n \"rps_doc_wikipedia_importance\": -21.408689498901367,\n \"rps_doc_wikipedia_importance_length_correction\": -21.40871810913086\n },\n \"fasttext\": {\n \"dclm\": 0.00011361000360921025,\n \"english\": 0.8951637148857117,\n \"fineweb_edu_approx\": 0.9110109210014343,\n \"eai_general_math\": 0.003214180003851652,\n \"eai_open_web_math\": 0.08110827207565308,\n \"eai_web_code\": 0.000008340000022144523\n }\n}"},"eai_taxonomy":{"kind":"string","value":"{\n \"free_decimal_correspondence\": {\n \"primary\": {\n \"code\": \"791.457\",\n \"labels\": {\n \"level_1\": \"Arts\",\n \"level_2\": \"Amusements and Recreation\",\n \"level_3\": \"\"\n }\n },\n \"secondary\": {\n \"code\": \"306.3\",\n \"labels\": {\n \"level_1\": \"Social sciences\",\n \"level_2\": \"\",\n \"level_3\": \"Culture\"\n }\n }\n },\n \"bloom_cognitive_process\": {\n \"primary\": {\n \"code\": \"2\",\n \"label\": \"Understand\"\n },\n \"secondary\": {\n \"code\": \"3\",\n \"label\": \"Apply\"\n }\n },\n \"bloom_knowledge_domain\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Factual\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Conceptual\"\n }\n },\n \"document_type_v1\": {\n \"primary\": {\n \"code\": \"9\",\n \"label\": \"Personal/Misc\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"extraction_artifacts\": {\n \"primary\": {\n \"code\": \"0\",\n \"label\": \"No Artifacts\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"missing_content\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"Truncated Snippets\"\n },\n \"secondary\": {\n \"code\": \"-1\",\n \"label\": \"Abstain\"\n }\n },\n \"document_type_v2\": {\n \"primary\": {\n \"code\": \"4\",\n \"label\": \"Audio Transcript\"\n },\n \"secondary\": {\n \"code\": \"22\",\n \"label\": \"Truncated\"\n }\n },\n \"reasoning_depth\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"No Reasoning\"\n },\n \"secondary\": {\n \"code\": \"2\",\n \"label\": \"Basic Reasoning\"\n }\n },\n \"technical_correctness\": {\n \"primary\": {\n \"code\": \"6\",\n \"label\": \"Not Applicable/Indeterminate\"\n },\n \"secondary\": {\n \"code\": \"4\",\n \"label\": \"Highly Correct\"\n }\n },\n \"education_level\": {\n \"primary\": {\n \"code\": \"1\",\n \"label\": \"General Audience\"\n },\n \"secondary\": {\n \"code\": \"5\",\n \"label\": \"Indeterminate\"\n }\n }\n}"},"pid":{"kind":"string","value":"f0efa13f8f25d2994d4b9f7294f5230e"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":1,"numItemsPerPage":100,"numTotalItems":18333,"offset":100,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjA5OTYyOCwic3ViIjoiL2RhdGFzZXRzL3N1bXVrcy9lc3NlbnRpYWwtd2ViLXYxLjAtc2FtcGxlLTEwTSIsImV4cCI6MTc1NjEwMzIyOCwiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.y65vPUo69Fg-7gEfTVKMH-NAktzG2xSKMUk7u4-FJ3pac6zTptyTfmopK_dEoOlUI5wCr2NUp1pxZY69-B2NCA","displayUrls":true},"discussionsStats":{"closed":0,"open":0,"total":0},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
id
int64
-9,219,242,258,151,489,000
9,222,561,684B
text
stringlengths
254
679k
metadata
dict
line_start_n_end_idx
dict
quality_signals
dict
eai_taxonomy
dict
pid
stringclasses
1 value
-6,149,557,868,054,342,000
Our website uses cookies. By continuing to use our website, you consent to our use of cookies in accordance with our Privacy Policy.   Learn more   accept A VERY STYLISH SALE 25% OFF all Ouidad stylers, all sizes | Code: STYLE25 — Shop Now Loose Curls. Do you identify with a loose curl pattern? Click below to get your perfect curl prescription. 4 Item(s) • Buy volumizing cleansing products for loose curls, Ouidad PlayCurl Amplifying Shampoo. Select Size 8.5oz - $18.00 8.5oz $18.00 • Buy volumizing conditioning products for loose curls, Ouidad PlayCurl Amplifying Conditioner. Select Size 8.5oz - $20.00 8.5oz $20.00 • Buy volumizing styling products for loose curls, Ouidad PlayCurl Volumizing Styling Spray. 8.5oz $20.00 • Buy volumizing styling products for loose curls, Ouidad PlayCurl Aplifying Foam. Select Size 8.0oz - $26.00 8.0oz $26.00 4 Item(s)   
{ "url": "https://www.ouidad.com/shop/by-curl-type/loose-curls.html", "source_domain": "www.ouidad.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "63809", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:JUWQQ2I6THP4FUOUDU5IWXIW7IKSDGD4", "WARC-Concurrent-To": "<urn:uuid:0b9f7eb4-163c-46e5-a4fd-31a606ec0094>", "WARC-Date": "2019-10-15T13:55:51Z", "WARC-IP-Address": "104.25.226.25", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:SKXDZYBMZHOZWXMZBRISXOOSP4G7OPTV", "WARC-Record-ID": "<urn:uuid:7a4f7d13-642f-46ea-8d65-55ed53c2c34f>", "WARC-Target-URI": "https://www.ouidad.com/shop/by-curl-type/loose-curls.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:7300a8d5-5db5-43df-80be-c32b17831d86>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 155, 156, 241, 242, 255, 256, 350, 351, 361, 362, 453, 454, 470, 471, 490, 500, 511, 609, 610, 626, 627, 646, 656, 667, 762, 772, 783, 868, 869, 885, 886, 905, 915, 926, 927, 937, 938 ], "line_end_idx": [ 155, 156, 241, 242, 255, 256, 350, 351, 361, 362, 453, 454, 470, 471, 490, 500, 511, 609, 610, 626, 627, 646, 656, 667, 762, 772, 783, 868, 869, 885, 886, 905, 915, 926, 927, 937, 938, 943 ] }
{ "red_pajama_v2": { "ccnet_original_length": 943, "ccnet_original_nlines": 37, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.14141413569450378, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.030303029343485832, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.39393937587738037, "rps_doc_frac_unique_words": 0.5220588445663452, "rps_doc_mean_word_length": 4.977941036224365, "rps_doc_num_sentences": 24, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.064173221588135, "rps_doc_word_count": 136, "rps_doc_frac_chars_dupe_10grams": 0.18906942009925842, "rps_doc_frac_chars_dupe_5grams": 0.3220088481903076, "rps_doc_frac_chars_dupe_6grams": 0.3220088481903076, "rps_doc_frac_chars_dupe_7grams": 0.3220088481903076, "rps_doc_frac_chars_dupe_8grams": 0.18906942009925842, "rps_doc_frac_chars_dupe_9grams": 0.18906942009925842, "rps_doc_frac_chars_top_2gram": 0.07385524362325668, "rps_doc_frac_chars_top_3gram": 0.08271787315607071, "rps_doc_frac_chars_top_4gram": 0.12407681345939636, "rps_doc_books_importance": -94.53553771972656, "rps_doc_books_importance_length_correction": -94.53553771972656, "rps_doc_openwebtext_importance": -47.7165641784668, "rps_doc_openwebtext_importance_length_correction": -35.114662170410156, "rps_doc_wikipedia_importance": -40.7501220703125, "rps_doc_wikipedia_importance_length_correction": -40.7501220703125 }, "fasttext": { "dclm": -0.000008940000043367036, "english": 0.6644444465637207, "fineweb_edu_approx": 0.23052911460399628, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.004028500057756901, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "646.78", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Clothing and dress, Fashion, and Beauty, Personal" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "15", "label": "E-Commerce/Marketplace" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
6,918,520,968,342,176,000
Berlin - Beanie Front Design Design Front Spandau Caps & Hats - Berlin - Beanie black BeanieBerlin Choose a size Regular fit Size tableRegional sizing GB Personalise Available again soon from £23.16 Incl. VAT (EU). Plus delivery. black One Size Regular fit Size tableRegional sizing GB Delivery: Standard Oct. 24 - Oct. 28 Personalise Get this design on other amazing products Snapback Cap Snapback Cap from £21.16 Drawstring Bag Drawstring Bag from £19.16 Beanie Beanie from £23.16 Tote Bag Tote Bag from £18.16 Trucker Cap Trucker Cap from £21.16 Shoulder Bag recycled Shoulder Bag recycled from £20.16 Bum Bag Bum Bag from £22.16 Duffle Bag Duffle Bag from £26.16 Shoulder Bag Shoulder Bag from £32.16 Baseball Cap Baseball Cap from £23.16 Retro Bag Retro Bag from £30.16 Organic Tote Bag Organic Tote Bag from £20.16 Backpack Backpack from £28.16 Handmade For You Custom-printed for you You support independent designers with every purchase Delivery takes 6 up to 10 business days Reliable shipping and easy returns Product Details + Jersey Beanie An all-time classic in terms of trendy hat gear: the beanie is a stylish accessory to lend a relaxed touch to any look. A universal companion for men or women in any season, whether you wear it inside or outside . • Smooth stretch quality to fit any head. • Slightly longer at the back of the head. • Double-layered jersey fabrics. 170g/m² • Material: 63% polyester, 32% cotton, 5% spandex Size table + Regular fit Find the right size: Compare these measurements with a similar product you have at home. Place the product on a flat surface to get the best results. Sizes A – Length in inch B – Width in inch SizeA (inch)B (inch) One Size 10.6322.44 About this design + Berlin Berlin Berlin berlinertor Tags: Spandau, Berliner, gift idea, capital, schöneberg, Soho, Berlin, West Berlin, Neukölln, kreuzberg, present, Brandenburg Gate 115141323 Designers 115141323 Country: Germany More designs by 115141323 London London MMA MMA Om Om Goanaut Goanaut Retro Music Retro Music dancer dancer 500 banknotes 500 banknotes France France Nice black Nice black Mom dad me Mom dad me Similar Designs + Customers also liked + Customer reviews + 5 stars 0 4 stars 0 3 stars 0 2 stars 0 1 star 0 Show more Recently viewed Clear history Remember history
{ "url": "https://www.spreadshirt.co.uk/shop/design/berlin+beanie-D5c90e6425fd3e4792f2f6edd?sellable=VRGqmM2ONJIl29L5yDkX-1089-36", "source_domain": "www.spreadshirt.co.uk", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "331598", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:3SUWZ4LKLD4PKUOUDNNGJ2CWJ6Z2RBKP", "WARC-Concurrent-To": "<urn:uuid:f3e8d993-f6c6-40ee-91a3-8e196771b59d>", "WARC-Date": "2019-10-18T16:59:52Z", "WARC-IP-Address": "151.101.250.114", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:EL4T3IJYNPXVHBR2OM6DRK3TRF5U4MO6", "WARC-Record-ID": "<urn:uuid:84434d30-b1e3-491c-b810-a4d1bac7529f>", "WARC-Target-URI": "https://www.spreadshirt.co.uk/shop/design/berlin+beanie-D5c90e6425fd3e4792f2f6edd?sellable=VRGqmM2ONJIl29L5yDkX-1089-36", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:0bc206e4-406a-4b4b-8913-265bf78f802b>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 16, 22, 29, 36, 42, 86, 87, 100, 101, 115, 127, 156, 168, 189, 201, 217, 232, 238, 247, 259, 288, 298, 325, 337, 338, 380, 381, 394, 407, 419, 434, 449, 461, 468, 475, 487, 496, 505, 517, 529, 541, 553, 575, 597, 609, 617, 625, 637, 648, 659, 671, 684, 697, 709, 722, 735, 747, 757, 767, 779, 796, 813, 825, 834, 843, 855, 872, 873, 896, 897, 951, 991, 1026, 1027, 1043, 1044, 1046, 1047, 1061, 1062, 1276, 1320, 1365, 1408, 1460, 1461, 1472, 1473, 1475, 1487, 1637, 1643, 1662, 1680, 1701, 1710, 1721, 1722, 1740, 1741, 1743, 1750, 1757, 1776, 1907, 1917, 1927, 1937, 1946, 1954, 1980, 1987, 1994, 1998, 2002, 2005, 2008, 2016, 2024, 2036, 2048, 2055, 2062, 2076, 2090, 2097, 2104, 2115, 2126, 2137, 2148, 2149, 2165, 2166, 2168, 2169, 2190, 2191, 2193, 2194, 2211, 2212, 2214, 2222, 2224, 2232, 2234, 2242, 2244, 2252, 2254, 2261, 2263, 2273, 2274, 2290, 2291, 2305 ], "line_end_idx": [ 16, 22, 29, 36, 42, 86, 87, 100, 101, 115, 127, 156, 168, 189, 201, 217, 232, 238, 247, 259, 288, 298, 325, 337, 338, 380, 381, 394, 407, 419, 434, 449, 461, 468, 475, 487, 496, 505, 517, 529, 541, 553, 575, 597, 609, 617, 625, 637, 648, 659, 671, 684, 697, 709, 722, 735, 747, 757, 767, 779, 796, 813, 825, 834, 843, 855, 872, 873, 896, 897, 951, 991, 1026, 1027, 1043, 1044, 1046, 1047, 1061, 1062, 1276, 1320, 1365, 1408, 1460, 1461, 1472, 1473, 1475, 1487, 1637, 1643, 1662, 1680, 1701, 1710, 1721, 1722, 1740, 1741, 1743, 1750, 1757, 1776, 1907, 1917, 1927, 1937, 1946, 1954, 1980, 1987, 1994, 1998, 2002, 2005, 2008, 2016, 2024, 2036, 2048, 2055, 2062, 2076, 2090, 2097, 2104, 2115, 2126, 2137, 2148, 2149, 2165, 2166, 2168, 2169, 2190, 2191, 2193, 2194, 2211, 2212, 2214, 2222, 2224, 2232, 2234, 2242, 2244, 2252, 2254, 2261, 2263, 2273, 2274, 2290, 2291, 2305, 2321 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2321, "ccnet_original_nlines": 158, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.16041666269302368, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02083333022892475, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.30000001192092896, "rps_doc_frac_unique_words": 0.5614973306655884, "rps_doc_mean_word_length": 4.909090995788574, "rps_doc_num_sentences": 29, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.064948081970215, "rps_doc_word_count": 374, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.04248366132378578, "rps_doc_frac_chars_dupe_6grams": 0.04248366132378578, "rps_doc_frac_chars_dupe_7grams": 0.04248366132378578, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02668844908475876, "rps_doc_frac_chars_top_3gram": 0.01525054033845663, "rps_doc_frac_chars_top_4gram": 0.019607840105891228, "rps_doc_books_importance": -234.64097595214844, "rps_doc_books_importance_length_correction": -234.64097595214844, "rps_doc_openwebtext_importance": -129.38922119140625, "rps_doc_openwebtext_importance_length_correction": -129.38922119140625, "rps_doc_wikipedia_importance": -79.2878646850586, "rps_doc_wikipedia_importance_length_correction": -79.2878646850586 }, "fasttext": { "dclm": 0.000019549999706214294, "english": 0.7665813565254211, "fineweb_edu_approx": 0.7203406095504761, "eai_general_math": 0.00007891999848652631, "eai_open_web_math": 0.046897951513528824, "eai_web_code": -0.000006320000011328375 } }
{ "free_decimal_correspondence": { "primary": { "code": "646.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Clothing and dress, Fashion, and Beauty, Personal" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-2,005,883,827,059,573,200
Taking B12 vitamins, any side effects to taking too many? Possible but rare. In general, B12 is very safe and well-tolerated and there is little danger in taking high doses. Occasionally nausea, diarrhea and rashes have been reported. It is advised to avoid in leber's disease, a rare hereditary eye condition. More info on B12 at http://lpi.Oregonstate.Edu/infocenter/vitamins/vitaminb12/ and http://www.Nlm.Nih.Gov/medlineplus/druginfo/natural/926.Html#safety.
{ "url": "https://www.healthtap.com/user_questions/147093-taking-b12-vitamins-any-side-effects-to-taking-too-many", "source_domain": "www.healthtap.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "79615", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:NSPKFM6MFK2EHQHFSJ2LPNLLWDJAZ5SC", "WARC-Concurrent-To": "<urn:uuid:76d1ebf0-898c-4560-b2a3-019047b14912>", "WARC-Date": "2019-10-18T06:42:38Z", "WARC-IP-Address": "104.18.180.32", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:HPXR3Q3VOTLWRRLJ4L533YTGAQ7VE6H6", "WARC-Record-ID": "<urn:uuid:45afdddf-ae29-4447-bf6b-0a5450b56cc7>", "WARC-Target-URI": "https://www.healthtap.com/user_questions/147093-taking-b12-vitamins-any-side-effects-to-taking-too-many", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:fe0ff295-46f4-409c-b4b9-696c9b2c69b3>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-166.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 58, 59 ], "line_end_idx": [ 58, 59, 463 ] }
{ "red_pajama_v2": { "ccnet_original_length": 463, "ccnet_original_nlines": 2, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2358490526676178, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.028301889076828957, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2830188572406769, "rps_doc_frac_unique_words": 0.7796609997749329, "rps_doc_mean_word_length": 6.288135528564453, "rps_doc_num_sentences": 12, "rps_doc_symbol_to_word_ratio": 0.009433959610760212, "rps_doc_unigram_entropy": 3.7131118774414062, "rps_doc_word_count": 59, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -35.57862854003906, "rps_doc_books_importance_length_correction": -38.400264739990234, "rps_doc_openwebtext_importance": -28.505287170410156, "rps_doc_openwebtext_importance_length_correction": -31.326923370361328, "rps_doc_wikipedia_importance": -25.20482635498047, "rps_doc_wikipedia_importance_length_correction": -28.02646255493164 }, "fasttext": { "dclm": 0.0016695900121703744, "english": 0.888820469379425, "fineweb_edu_approx": 1.5772745609283447, "eai_general_math": 0.00392008014023304, "eai_open_web_math": 0.5724713802337646, "eai_web_code": 0.00030625000363215804 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.54", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "616.858", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Pathology and Diseases" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-5,805,937,673,271,487,000
Elevator Manufacturer | Passenger Lift | Home Lift | manufacturer supplier Wholesale Distributors OEM ODM-elevator-manufacturer.com Elevator Manufacturer manufacturer and Passenger Lift supplier also Wholesale Distributors OEM ODM-over 5,251 ,Home Lift,Hydraulic Passenger Lift,House Elevator buyers around the world at elevator-manufacturer.com http://www.elevator-manufacturer.com/ Sun, 20 Oct 2019 08:41:30 -0600 Freight Elevator Center Open Door <img src='productpic/ps_31731484632061.jpg' /><br>TAIRLING Elevator can customize freight elevator for clients. Our designers are very professional and we have rich experience at this field. We will consider all your needs before designing your freight elevator. &nbsp;<br> Door opening ways of 2 panel center opening door and 4 panel center opening door and 6 panel center opening door are often used at freight elevators. Center opening door is a traditional door opening way; the doors will open from the center.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/freight-elevator-center-open-door.html Freight Elevator Center Open Door http://www.elevator-manufacturer.com/productpic/ps_31731484632061.jpg http://www.elevator-manufacturer.com/freight-elevator-center-open-door.html Elevator Ceiling <img src='productpic/ps_7z1t1484620241.jpg' /><br>TAIRLING Elevator offers many different ceilings to use at passenger elevators. Different ceilings and illuminations will give people different felling, TAIRLING Elevator offers variety types of ceilings and illuminations for you to choose. Your clients will feel your uniqueness at the moment they step into your elevator.<br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/elevator-ceiling.html Elevator Ceiling http://www.elevator-manufacturer.com/productpic/ps_7z1t1484620241.jpg http://www.elevator-manufacturer.com/elevator-ceiling.html Elevator Floor <img src='productpic/ps_9in1484620360.jpg' /><br>TAIRLING Elevator offers many different kinds of floors to use at passenger elevators. Do not underestimate the floors. It is absolutely one of the most important elements of interior car. {{XXXXXX}} offers you many kinds of floor to choose. You surely can find the one you satisfied. With our service, you can make your unique elevator.<br> <br> <br> <br> http://www.elevator-manufacturer.com/elevator-floor.html Elevator Floor http://www.elevator-manufacturer.com/productpic/ps_9in1484620360.jpg http://www.elevator-manufacturer.com/elevator-floor.html Elevator Door <img src='productpic/ps_e2oe1484620350.jpg' /><br>TAIRLING Elevator offers you a variety of choices of door opening for passenger elevators. Door size from 700-1800mm in different models according to your needs. A variety of colors and materials are also available.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/elevator-door.html Elevator Door http://www.elevator-manufacturer.com/productpic/ps_e2oe1484620350.jpg http://www.elevator-manufacturer.com/elevator-door.html Elevator Wall <img src='productpic/ps_a7z71484620412.jpg' /><br>TAIRLING Elevator offers many different kinds of walls for you to choose for your passenger elevator. The car will become a hermetic space when you stay in it. At this situation, the atmosphere of the car is particularly important. TAIRLING elevator has a lot of wall styles for you to choose. It is an easy choice of the material in the different colors and patterns for your passenger elevator.<br> <br> <br> http://www.elevator-manufacturer.com/elevator-wall.html Elevator Wall http://www.elevator-manufacturer.com/productpic/ps_a7z71484620412.jpg http://www.elevator-manufacturer.com/elevator-wall.html Home Elevator Standard Style <img src='productpic/ps_7xrx1484620484.jpg' /><br>The home elevator of TAIRLING is a perfect combination of technology and humanity. What you will have is not only an elevator, but also a better quality of life. It will connect every level and all family members together. No one will feel distressed because going up and down stairs again! Our goal is to make elevators that carry the happiness of your family.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/2-1-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/2-1-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/home-elevator-standard-style.html Home Elevator Standard Style http://www.elevator-manufacturer.com/productpic/ps_7xrx1484620484.jpg http://www.elevator-manufacturer.com/home-elevator-standard-style.html Home Elevator Luxury Style <img src='productpic/ps_w2bn1484620545.jpg' /><br>Home elevators of TAIRLING have the trustworthy quality plus exquisite inter decoration. You can enjoy the stylish interior of it. Crafted by professional designer, it makes your elevator a tasteful decoration.<br> For a smooth, quiet and energy efficient ride, it uses the latest variable frequency technology. TAIRLING Elevator is your best choice.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/home-elevator-luxury-style.html Home Elevator Luxury Style http://www.elevator-manufacturer.com/productpic/ps_w2bn1484620545.jpg http://www.elevator-manufacturer.com/home-elevator-luxury-style.html Home Elevator Warm Style <img src='productpic/ps_czoc1484620616.jpg' /><br>Home elevators of TAIRLING can customize the inter decoration of cars and load up to 6 passengers. <br /> Despite below specification, we can also customize it as your needs. <br /> Lift system: traction machine with wire rope<br /> Load capacity: 2-6 persons<br /> Motor capacity: 1.5kw or above<br /> Maximum elevation: 5 stories<br /> Maximum travel: 15m<br /> Door type: 2 panels side opening<br /> Interior dimensions (mm): W900 x D920 x H2200 / W900 x D1200 x H2200<br /> Door clearance (mm): W800 x H2100<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/2-3-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/2-3-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/home-elevator-warm-style.html Home Elevator Warm Style http://www.elevator-manufacturer.com/productpic/ps_czoc1484620616.jpg http://www.elevator-manufacturer.com/home-elevator-warm-style.html Home Elevator Glass Style <img src='productpic/ps_2ubl1484620689.jpg' /><br>Don’t worry that the glass home elevator will not fit the style of your house. It is always a wonderful decoration in the house. Even just watching it is one of your enjoyments. More and more people choose this kind of elevators, because it can reduce the stress from hermetic space, increasing the interest of the ride.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/2-4-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/2-4-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/home-elevator-glass-style.html Home Elevator Glass Style http://www.elevator-manufacturer.com/productpic/ps_2ubl1484620689.jpg http://www.elevator-manufacturer.com/home-elevator-glass-style.html Freight Elevator Side Open Door <img src='productpic/ps_sxrx1484635368.jpg' /><br>Freight elevators of TAIRLING Elevator have excellent loading features and can be customized. If there is enough space, the way of opening doors can be chosen by clients. The way of 2 panel side opening door and 3 panel side opening door is to let the door open from one side to the other, to get wider entrance for easier loading on and off. Many clients choose this kind of elevator.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/freight-elevator-side-open-door.html Freight Elevator Side Open Door http://www.elevator-manufacturer.com/productpic/ps_sxrx1484635368.jpg http://www.elevator-manufacturer.com/freight-elevator-side-open-door.html Freight Elevator Up Sliding Door <img src='productpic/ps_jfm1484632006.jpg' /><br>TAIRLING Elevator can customize freight elevator for the client. For over 40 years, we design the freight elevator from the client’s view. You can trust our professional.<br> Door opening ways of 2 panel up-sliding door and 3 panel up-sliding door are often used at freight elevators of the car factory. The door will go up and collect above.<br> <br> <br> <br> http://www.elevator-manufacturer.com/freight-elevator-up-sliding-door.html Freight Elevator Up Sliding Door http://www.elevator-manufacturer.com/productpic/ps_jfm1484632006.jpg http://www.elevator-manufacturer.com/freight-elevator-up-sliding-door.html Freight Elevator Roller Shutter <img src='productpic/ps_sj7f1484632120.jpg' /><br>TAIRLING Elevator can customize freight elevators for clients, for loading, size and the way of the door opening. We will think for the client’s sake.<br> Door opening ways of roller-shutter is often used at freight elevators or car elevators. It is a fast and convenient way of the door opening. When hoistways can not provide sufficient door panel contraction spaces, this door opening way will be adopted to get the widest and highest cabin entrance size.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/freight-elevator-roller-shutter.html Freight Elevator Roller Shutter http://www.elevator-manufacturer.com/productpic/ps_sj7f1484632120.jpg http://www.elevator-manufacturer.com/freight-elevator-roller-shutter.html Panoramic Elevator Standard Style <img src='productpic/ps_zt3t1484632605.jpg' /><br>With the transparent walls of the car, you can enjoy the visual feast during the ride of your observation elevator. If you want to install it at indoor, it is also a great decoration.<br /> From the lighting that out of the car to the decoration that inside the car, even just one small handrail, every detail of observation elevators of TAIRLING is all well designed.&nbsp; Our observation elevators are absolutely the most domineering landscape of your building.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/4-1-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/4-1-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/panoramic-elevator-standard-style.html Panoramic Elevator Standard Style http://www.elevator-manufacturer.com/productpic/ps_zt3t1484632605.jpg http://www.elevator-manufacturer.com/panoramic-elevator-standard-style.html Panoramic Elevator Industrial Style <img src='productpic/ps_7nrf1484632683.jpg' /><br>The industrial style observation elevator of TAIRLING is a perfect decoration of the building. Its outward appearance is made up of the whole transparent hoistway, elevator car and some steel structure. It is kind of steel aesthetics, and will become one of artworks in your building.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/4-2-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/4-2-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/panoramic-elevator-industrial-style.html Panoramic Elevator Industrial Style http://www.elevator-manufacturer.com/productpic/ps_7nrf1484632683.jpg http://www.elevator-manufacturer.com/panoramic-elevator-industrial-style.html Panoramic Elevator Villa Style <img src='productpic/ps_p1o11484632815.jpg' /><br>Villa type observation elevators of TAIRLING are specially designed for villas. According to the condition of different houses, we can design whole transparent hoistways and cars, or normal cars with windows. We have the most professional design team, and willing to answer any of your questions. Please feel free to contact us.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/4-3-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/4-3-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/panoramic-elevator-villa-style.html Panoramic Elevator Villa Style http://www.elevator-manufacturer.com/productpic/ps_p1o11484632815.jpg http://www.elevator-manufacturer.com/panoramic-elevator-villa-style.html Panoramic Elevator Custom Style <img src='productpic/ps_qud61484632943.jpg' /><br>TAIRLING Elevator can customize the observation elevator. According to the requirements of clients, we build the unique elevators. All details of the elevators, from ceilings to floors, materials to colors, we can all design by clients' preferences. We have the most professional design team, and willing to answer any of your questions. Please feel free to contact us.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/panoramic-elevator-custom-style.html Panoramic Elevator Custom Style http://www.elevator-manufacturer.com/productpic/ps_qud61484632943.jpg http://www.elevator-manufacturer.com/panoramic-elevator-custom-style.html Hydraulic Elevator System <img src='productpic/ps_ff11484633187.jpg' /><br>TAIRLING Elevator is a leader in the vertical transportation market. The installation of hydraulic elevator is more flexible than traction type. Meanwhile, the cost of subsequent service is lower as well. Our hydraulic elevators are high levels of quality, reliability and safety.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/hydraulic-elevator-system.html Hydraulic Elevator System http://www.elevator-manufacturer.com/productpic/ps_ff11484633187.jpg http://www.elevator-manufacturer.com/hydraulic-elevator-system.html Hydraulic Elevator open-loop control <img src='productpic/ps_yq6v1484633277.jpg' /><br>TAIRLING Elevator is a leader in the hydraulic elevator market of Taiwan.&nbsp; We have very rich experience in this field and are very professional at design、installation、maintenance and repair for hydraulic elevators. We use the control valves imported from Europe at our hydraulic elevators. Our hydraulic elevators are smooth, reliable and precise in operation throughout extreme load and temperature variations. They are very high quality and durable, if you have any question, please contact us.<br> <br> <br> <br> http://www.elevator-manufacturer.com/hydraulic-elevator-openloop-control.html Hydraulic Elevator open-loop control http://www.elevator-manufacturer.com/productpic/ps_yq6v1484633277.jpg http://www.elevator-manufacturer.com/hydraulic-elevator-openloop-control.html Hydraulic Elevator close-loop control <img src='productpic/ps_8nwo1484633326.jpg' /><br>Hydraulic elevator is one of TAIRLING major product. Our hydraulic elevator is widely used at all walks of life. No matter what kind of hydraulic elevator you want, we can design for you. One of servo valves we use is the series of BUCHER-LRV. This elevator valve with integrated flow-rate measuring system let elevators process smooth, and have low failure rate.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/5-3-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/5-3-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/hydraulic-elevator-closeloop-control.html Hydraulic Elevator close-loop control http://www.elevator-manufacturer.com/productpic/ps_8nwo1484633326.jpg http://www.elevator-manufacturer.com/hydraulic-elevator-closeloop-control.html Hydraulic Lifting Equipment <img src='productpic/ps_8bbc1484633406.jpg' /><br>TAIRLING Elevator is a leader in the vertical transportation market, especially at the field of hydraulic elevators. Our products are high levels of comfort, efficiency, ecology and safety. You can trust our professional. Just tell us your requirement and we will give you the best elevator you ever have. <br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/hydraulic-lifting-equipment.html Hydraulic Lifting Equipment http://www.elevator-manufacturer.com/productpic/ps_8bbc1484633406.jpg http://www.elevator-manufacturer.com/hydraulic-lifting-equipment.html MRL Elevator <img src='productpic/ps_w4i1484633570.jpg' /><br>Along with the advancement of controlling technology, now we have more and more choice of motor. Because of that, machine room-less elevators were brought into the market.<br /> You don’t have to worry about no place for the machine-room again! We will design your elevator according to the environment. Less space, more design freedom!<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/6-1-01.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/mrl-elevator.html MRL Elevator http://www.elevator-manufacturer.com/productpic/ps_w4i1484633570.jpg http://www.elevator-manufacturer.com/mrl-elevator.html MRL Elevator PM Motor <img src='productpic/ps_xadr1484633622.jpg' /><br>Permanent magnet motor with no gear can be used at machine-room-less elevator due to it is small enough to install at the hoistway. The installation of pm motor is convenient and fast. The efficiency of pm motor is excellent, up to 95%, and the power consumption is only half of tradition motor costing. Pm motor is also a choice of environmental protection because it didn’t have to change gear oil.<br /> <br /> http://www.elevator-manufacturer.com/mrl-elevator-pm-motor.html MRL Elevator PM Motor http://www.elevator-manufacturer.com/productpic/ps_xadr1484633622.jpg http://www.elevator-manufacturer.com/mrl-elevator-pm-motor.html MRL Elevator Worm Gear <img src='productpic/ps_t6sc1484633706.jpg' /><br>To install traditional elevators have to build machine rooms right above their hoistways, which affecting the appearance of the building. Machine-room-less elevators let you never have to worry about that again!<br> The field of machine-room-less elevators needs more professional knowledge than others. TAIRLING Elevator has plenty of experience at this field. This kind of elevator can also use worm motor.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/mrl-elevator-worm-gear.html MRL Elevator Worm Gear http://www.elevator-manufacturer.com/productpic/ps_t6sc1484633706.jpg http://www.elevator-manufacturer.com/mrl-elevator-worm-gear.html MRL Elevator Hydraulic System <img src='productpic/ps_afq31484633745.jpg' /><br>Hydraulic system is one of lift system of machine-room-less elevators. Elevators which use this system do not need machine rooms to store traction machines, so it can save the cost of building machine rooms. This kind of elevators also cost lower energy than tradition elevators.<br /> http://www.elevator-manufacturer.com/mrl-elevator-hydraulic-system.html MRL Elevator Hydraulic System http://www.elevator-manufacturer.com/productpic/ps_afq31484633745.jpg http://www.elevator-manufacturer.com/mrl-elevator-hydraulic-system.html Clean Room Elevator <img src='productpic/ps_sp621484633940.jpg' /><br>TAIRLING Elevator is a high-tech elevator manufacturer. We specially launch clean room elevators for the clean rooms of high-tech factories. The elevator structures of cabins, material and ventilation equipments are all specially designed to match the clean standards of clean room. http://www.elevator-manufacturer.com/clean-room-elevator.html Clean Room Elevator http://www.elevator-manufacturer.com/productpic/ps_sp621484633940.jpg http://www.elevator-manufacturer.com/clean-room-elevator.html Handicap Elevator <img src='productpic/ps_4zmo1484634065.jpg' /><br>TAIRLING Elevator believes everyone should have the right to enjoy the convenience from elevators, and can use it without any trouble. We provide various kinds of barrier-free equipments for clients to choose. All kinds of our elevators can install the barrier-free equipments and change to accessible elevators.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/handicap-elevator.html Handicap Elevator http://www.elevator-manufacturer.com/productpic/ps_4zmo1484634065.jpg http://www.elevator-manufacturer.com/handicap-elevator.html Material Handling Systems <img src='productpic/ps_3vl51484634142.jpg' /><br>With the trend of automation, more and more logistic centers, production lines of factories or warehouses have their requirements of automatic transportation equipments. TAIRLING Elevator is able to customize automatic transportation equipments and material handling systems, according to different needs of clients. Goods can be transported continuously, safely and fast without manpower.<br> <br> <br> <br> http://www.elevator-manufacturer.com/material-handling-systems.html Material Handling Systems http://www.elevator-manufacturer.com/productpic/ps_3vl51484634142.jpg http://www.elevator-manufacturer.com/material-handling-systems.html Hospital Elevator <img src='productpic/ps_t3vn1484634197.jpg' /><br>At the moment that passengers step into our hospital elevators, they can find our Intentional designs. The easy operation panels and soft reflector lamps of TAIRLING hospital elevators are specially designed for people who might use them. Every detail is full of the thought of humanity. With our designs, hospital elevators are no more cold and hard.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/7-4-01.jpg" /><br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/7-4-02.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/hospital-elevator.html Hospital Elevator http://www.elevator-manufacturer.com/productpic/ps_t3vn1484634197.jpg http://www.elevator-manufacturer.com/hospital-elevator.html Elevator Light Curtain <img src='productpic/ps_fa9j1484634385.jpg' /><br>Elevator door light curtain detectors can discover if there is anything on the path of door closing. The doors will close only if there is nothing at the path. This equipment will prevent the doors closing in hands or fingers.<br /> Installing at freight elevators, it can make sure there is no freight damage due to be caught by elevator doors.<br /> <br /> <img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/8-1-01.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/elevator-light-curtain.html Elevator Light Curtain http://www.elevator-manufacturer.com/productpic/ps_fa9j1484634385.jpg http://www.elevator-manufacturer.com/elevator-light-curtain.html Voice Announce <img src='productpic/ps_nnf21484634440.jpg' /><br>Voice announce system of elevator can broadcast the situation of elevator processing and remain passengers arrived their target level. It also helps to reduce the stress bring by hermetic space. It is also a required equipment of accessible elevator http://www.elevator-manufacturer.com/voice-announce.html Voice Announce http://www.elevator-manufacturer.com/productpic/ps_nnf21484634440.jpg http://www.elevator-manufacturer.com/voice-announce.html Proximity Card Reader <img src='productpic/ps_v001484634482.jpg' /><br>{{XXXXXX}} can install access control systems for customers. We provide many kinds of access control, from basic proximity card readers to biometric access control. Access control systems can authorize users of elevator effectively and improve the security of your buildings.<br> <br> <br> <br> <br> <br> http://www.elevator-manufacturer.com/proximity-card-reader.html Proximity Card Reader http://www.elevator-manufacturer.com/productpic/ps_v001484634482.jpg http://www.elevator-manufacturer.com/proximity-card-reader.html Emergency Communication Devices <img src='productpic/ps_e0il1484634542.jpg' /><br>Emergency phone system is an important equipment of an elevator. It can connect passengers in the elevator with outside. When there is any emergency, passengers can choose to contact the man on guard or make a phone call upon trapped in the elevator.<img src="http://ip-50-63-138-195.ip.secureserver.net/42525/images/detail/8-4-01.jpg" /><br /> <br /> http://www.elevator-manufacturer.com/emergency-communication-devices.html Emergency Communication Devices http://www.elevator-manufacturer.com/productpic/ps_e0il1484634542.jpg http://www.elevator-manufacturer.com/emergency-communication-devices.html Elevator Door Motor <img src='productpic/ps_pg7m1484634591.jpg' /><br>Door motor controller controls the opening and closing of the elevator door. It has to be perfectly coordinate with the control system. TAIRLING Elevator use DC and VVVF door motor controllers. With our experienced implementing, we make every door of elevators running smoothly.<br> <br> <br> <br> http://www.elevator-manufacturer.com/elevator-door-motor.html Elevator Door Motor http://www.elevator-manufacturer.com/productpic/ps_pg7m1484634591.jpg http://www.elevator-manufacturer.com/elevator-door-motor.html Earthquake Sensor <img src='productpic/ps_acpn1484634635.jpg' /><br>Earthquake Sensor is an important equipment of elevator in countries that earthquake happens. It is even a require equipment of elevator in Japan. When the earthquake happens, the Earthquake Sensor will notice the control panel to let the elevator to stop at the closest level so that the passengers can get down safely. We use TOYO Earthquake Sensor that made in Japan, which is high quality and durable.<br /> http://www.elevator-manufacturer.com/earthquake-sensor.html Earthquake Sensor http://www.elevator-manufacturer.com/productpic/ps_acpn1484634635.jpg http://www.elevator-manufacturer.com/earthquake-sensor.html
{ "url": "http://www.elevator-manufacturer.com/rss.xml", "source_domain": "www.elevator-manufacturer.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "34374", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:NCX7YUR255M234RRSLFWJ3T32J6PN67E", "WARC-Concurrent-To": "<urn:uuid:52409fdf-5b16-49b9-abad-df8673ae2e2e>", "WARC-Date": "2019-10-20T14:41:30Z", "WARC-IP-Address": "50.63.187.104", "WARC-Identified-Payload-Type": "application/rss+xml", "WARC-Payload-Digest": "sha1:CCVTAZ7UXOVLPBNRJ6HCLE7VUVWESMB5", "WARC-Record-ID": "<urn:uuid:838384a0-a6e1-4dcb-81fa-70b070c2a65d>", "WARC-Target-URI": "http://www.elevator-manufacturer.com/rss.xml", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:747c07bb-aba0-4c6c-bc36-e711d6a48383>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-166.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0 ], "line_end_idx": [ 25272 ] }
{ "red_pajama_v2": { "ccnet_original_length": 25272, "ccnet_original_nlines": 0, "rps_doc_curly_bracket": 0.0003165600064676255, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.16990208625793457, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.009963920339941978, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3676344156265259, "rps_doc_frac_unique_words": 0.29439809918403625, "rps_doc_mean_word_length": 7.996821403503418, "rps_doc_num_sentences": 558, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.576174736022949, "rps_doc_word_count": 2517, "rps_doc_frac_chars_dupe_10grams": 0.01589825004339218, "rps_doc_frac_chars_dupe_5grams": 0.06513314694166183, "rps_doc_frac_chars_dupe_6grams": 0.03507551923394203, "rps_doc_frac_chars_dupe_7grams": 0.030007949098944664, "rps_doc_frac_chars_dupe_8grams": 0.01589825004339218, "rps_doc_frac_chars_dupe_9grams": 0.01589825004339218, "rps_doc_frac_chars_top_2gram": 0.015500790439546108, "rps_doc_frac_chars_top_3gram": 0.01222177967429161, "rps_doc_frac_chars_top_4gram": 0.009538950398564339, "rps_doc_books_importance": -2576.10791015625, "rps_doc_books_importance_length_correction": -2576.10791015625, "rps_doc_openwebtext_importance": -1419.63916015625, "rps_doc_openwebtext_importance_length_correction": -1419.63916015625, "rps_doc_wikipedia_importance": -1536.14794921875, "rps_doc_wikipedia_importance_length_correction": -1536.14794921875 }, "fasttext": { "dclm": 0.0013832399854436517, "english": 0.7480533123016357, "fineweb_edu_approx": 1.1212899684906006, "eai_general_math": 0.0011035799980163574, "eai_open_web_math": 0.029192030429840088, "eai_web_code": 0.00027268999838270247 } }
{ "free_decimal_correspondence": { "primary": { "code": "623.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Military engineering and Marine engineering" } }, "secondary": { "code": "620", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "1", "label": "Leftover HTML" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "6", "label": "Indeterminate" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-2,263,024,855,123,809,000
Experience YourListen.com completely ad free for only $1.99 a month. home automation | GadgEon Lifestyle 00:00 00:00 Embed Code (recommended way) Embed Code (Iframe alternative) Please login or signup to use this feature. The concept of lighting automation is relatively new in Kerala, principally in the sphere of home lighting automation and considering the existing scenario of power generation deficiencies across the state and the heavy dependence on the yearly monsoon’s ability to replenish the required water resources, it is a utility that couldn’t have come sooner. Contrary to popular belief, home automation and especially lighting automation, doesn’t necessarily involve a wildly expensive investment and in the course of its’ functioning usually leads to high savings by reducing power consumption. Follow the link for more details: http://gadgeonlifestyle.com/ Licence : All Rights Reserved X
{ "url": "https://yourlisten.com/ramyakr/home-automation-gadgeon-lifestyle", "source_domain": "yourlisten.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "67888", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LJCPZ4MHZUPINIEYVA4RRK4E5RYRFXVW", "WARC-Concurrent-To": "<urn:uuid:a3493e1e-d1b4-4cf8-8d86-c452c86d608b>", "WARC-Date": "2019-10-18T15:12:02Z", "WARC-IP-Address": "104.25.144.22", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:XDVACMEOYCVY4XLMW3E2TKFI3K7YD5QM", "WARC-Record-ID": "<urn:uuid:e94591c4-4563-4601-8d47-ce5c6ee5e042>", "WARC-Target-URI": "https://yourlisten.com/ramyakr/home-automation-gadgeon-lifestyle", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:fb47b768-f11c-44e1-a0ce-67e083f957ce>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-68.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 69, 70, 106, 112, 118, 147, 179, 223, 224, 878, 879, 909, 910, 911 ], "line_end_idx": [ 69, 70, 106, 112, 118, 147, 179, 223, 224, 878, 879, 909, 910, 911, 912 ] }
{ "red_pajama_v2": { "ccnet_original_length": 912, "ccnet_original_nlines": 14, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.329341322183609, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.005988019984215498, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19760479032993317, "rps_doc_frac_unique_words": 0.732824444770813, "rps_doc_mean_word_length": 5.72519063949585, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.371694564819336, "rps_doc_word_count": 131, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.07199999690055847, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -71.83335876464844, "rps_doc_books_importance_length_correction": -71.83335876464844, "rps_doc_openwebtext_importance": -33.003910064697266, "rps_doc_openwebtext_importance_length_correction": -22.61847686767578, "rps_doc_wikipedia_importance": -17.697071075439453, "rps_doc_wikipedia_importance_length_correction": -17.697071075439453 }, "fasttext": { "dclm": 0.006894050166010857, "english": 0.8799847960472107, "fineweb_edu_approx": 1.6263898611068726, "eai_general_math": 0.0005599900032393634, "eai_open_web_math": 0.31267017126083374, "eai_web_code": 0.0000026200000320386607 } }
{ "free_decimal_correspondence": { "primary": { "code": "621.319", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } }, "secondary": { "code": "621.31", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-8,807,246,170,557,230,000
dcsimg Linux Today: Linux News On Internet Time. More on LinuxToday IT Management Linux News for Dec 17, 2008 • Steve Jobs' Health Doesn't Matter (2008-12-17 20:34:44) Cyber Cynic: "But, whether his health has gone downhill or not isn't really what important to the worlds of technology and business. What's important is that, by not showing up to make the keynote speech at Macworld, Jobs appears to no longer be at Apple's helm." • Rambus Redux: The FTC Tries One Last Time (and so do I) (2008-12-17 19:34:44) Standards Blog: "The emotion arises in part because Rambus develops and licenses technology, but does not actually fabricate semiconductors. This has made its stockholders particularly partisan, as its stock has risen and fallen in synchrony with its fortunes in court, and its detractors particularly irate, because they view Rambus not only as a patent troll, but also as one that has gamed the standards development process..." • IBM Lotus Strategist Sees Linux on Netbooks Making Inroads vs. Windows in 2009 (2008-12-17 17:34:44) eWeek: "Linux and open source will start to chip away at Microsoft Windows desktop software thanks to their popularity on netbooks, those ultralight, low-cost laptops." • Easy in Linux, Almost Impossible in Windows (2008-12-17 17:04:44) IT Toolbox: "What really gets me excited about Linux is its ability to recover from disasters. When, in an emergency, a program or service has to be moved from one machine to another in the shortest time possible I would bet on Linux every time. Especially if you do not have the programs install disks. Here is what happened." • Likewise seeks AD Middle Ground (2008-12-17 16:04:44) Practical Technology: "Likewise Software, which specializes in getting Linux and other Unix systems to work with AD (Active Directory) authentication, management, and auditing is offering a middle ground program between its open-source version, Likewise Open, and its enterprise edition, Likewise Enterprise: Likewise Open with Cell Module." • The OpenSuse FAQ Touched me in a Bad Place (2008-12-17 14:04:44) Me and U(buntu): "This FAQ is where OpenSUSE gets its best shot at PR, alternately arguing "there is no problem with the Novell/Microsoft deal" and "OpenSUSE isn't Novell, so even if there were any problems, you can still use us". Of course, both arguments are dishonest, but since the people often think just linking to a FAQ settles the matter, a bit of analysis on this particular FAQ might be worthwhile." • Mandriva Linux Attracts 2,000 Partners (2008-12-17 12:04:44) The VAR Guy: "When it comes to Linux, most U.S. headlines involve Canonical, Novell or Red Hat. But another Linux distribution -- from Mandriva S.A. of Paris, France -- is making a name for itself in the global IT channel" • How to: Sniff Wireless Packets with WireShark (2008-12-17 01:34:44) Wi-Fi Planet: "Over a year ago, however, Ethereal's lead developer (Gerald Combs) re-released the software as WireShark. WireShark provides the same (if not better) functionality as Ethereal. Ethereal doesn't appear to be supported anymore, so use WireShark instead."
{ "url": "https://www.linuxtoday.com/it_management/archives/200812/17", "source_domain": "www.linuxtoday.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "80844", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:AO4SM7K7LBIO6LDG63CTNGEXHFYN7ZMX", "WARC-Concurrent-To": "<urn:uuid:9f048325-20ff-4688-94d6-6c69da23fc40>", "WARC-Date": "2019-10-20T00:23:56Z", "WARC-IP-Address": "104.117.17.184", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:54RWHYPPNTP64AP6ZVRUTRG2USGSPZWN", "WARC-Record-ID": "<urn:uuid:eb2092f7-d6a4-428e-afd8-88df7b9125e5>", "WARC-Target-URI": "https://www.linuxtoday.com/it_management/archives/200812/17", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:3dc1a74f-cc32-4fd3-8e91-7a694d10f58b>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-191.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 7, 49, 50, 51, 52, 53, 54, 55, 56, 57, 76, 77, 119, 120, 180, 448, 449, 531, 966, 967, 1072, 1245, 1246, 1316, 1648, 1649, 1707, 2053, 2054, 2123, 2537, 2538, 2603, 2830, 2831, 2903 ], "line_end_idx": [ 7, 49, 50, 51, 52, 53, 54, 55, 56, 57, 76, 77, 119, 120, 180, 448, 449, 531, 966, 967, 1072, 1245, 1246, 1316, 1648, 1649, 1707, 2053, 2054, 2123, 2537, 2538, 2603, 2830, 2831, 2903, 3174 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3174, "ccnet_original_nlines": 36, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3083573579788208, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.028818439692258835, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.30547550320625305, "rps_doc_frac_unique_words": 0.5878787636756897, "rps_doc_mean_word_length": 4.947474956512451, "rps_doc_num_sentences": 22, "rps_doc_symbol_to_word_ratio": 0.0014409200521185994, "rps_doc_unigram_entropy": 5.334799766540527, "rps_doc_word_count": 495, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.00734994001686573, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -311.54986572265625, "rps_doc_books_importance_length_correction": -311.54986572265625, "rps_doc_openwebtext_importance": -205.35997009277344, "rps_doc_openwebtext_importance_length_correction": -205.35997009277344, "rps_doc_wikipedia_importance": -124.98558807373047, "rps_doc_wikipedia_importance_length_correction": -124.98558807373047 }, "fasttext": { "dclm": 0.004872799851000309, "english": 0.9328998923301697, "fineweb_edu_approx": 1.8930919170379639, "eai_general_math": 0.08690845966339111, "eai_open_web_math": 0.40143853425979614, "eai_web_code": 0.026038529351353645 } }
{ "free_decimal_correspondence": { "primary": { "code": "004.02856", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } }, "secondary": { "code": "658.402856", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-3,460,277,066,031,862,300
Review by chris : Emblem Key Cover JoJo's Bizarre Adventure 04 Gold Part.4 Lingue English Français Italiano Deutsch Русский España Valuta di riferimento Foto e Recensioni 6707 Emblem Key Cover JoJo's Bizarre Adventure 04 Gold Part.4 Emblem Key Cover JoJo's Bizarre Adventure 04 Gold Part.4 5  mercoledì 29 luglio, 2015 di chris  Netherlands   this key cover is ridiculously pretty, and i'm not sure how to explain this well but his face and hair stick out a little, which is super nicely done, honestly worth the money! the only downside would be that it makes your key a tiny bit heavy Copyright © Plamoya Tokyo, Japan Business Hour: 9 am - 5 pm (JST), Monday - Friday excluding National Holidays
{ "url": "https://plamoya.com/it/reviews.html?reviews_id=6707", "source_domain": "plamoya.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "27094", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:KK3DIT7RFVNTV6Q42PIJUAOG5Q65LS7S", "WARC-Concurrent-To": "<urn:uuid:3c20d136-8d35-4318-b6e7-5380a31fef63>", "WARC-Date": "2019-10-13T20:35:52Z", "WARC-IP-Address": "133.242.1.238", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:ATRGBFG3K7LQAMVKBYKMGBHK3HPP36IC", "WARC-Record-ID": "<urn:uuid:b0c94bbe-c6dd-4723-a59b-e4a5130935b2>", "WARC-Target-URI": "https://plamoya.com/it/reviews.html?reviews_id=6707", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:9ba0a29a-5b7e-4505-bf85-3dbfe8013aa5>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 75, 82, 131, 153, 154, 177, 178, 179, 180, 237, 238, 295, 296, 325, 349, 350, 527, 594, 595, 596, 597, 617, 630 ], "line_end_idx": [ 75, 82, 131, 153, 154, 177, 178, 179, 180, 237, 238, 295, 296, 325, 349, 350, 527, 594, 595, 596, 597, 617, 630, 707 ] }
{ "red_pajama_v2": { "ccnet_original_length": 707, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.246478870511055, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.007042250130325556, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.23239436745643616, "rps_doc_frac_unique_words": 0.75, "rps_doc_mean_word_length": 4.818965435028076, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.341921329498291, "rps_doc_word_count": 116, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.24686941504478455, "rps_doc_frac_chars_dupe_6grams": 0.24686941504478455, "rps_doc_frac_chars_dupe_7grams": 0.24686941504478455, "rps_doc_frac_chars_dupe_8grams": 0.24686941504478455, "rps_doc_frac_chars_dupe_9grams": 0.24686941504478455, "rps_doc_frac_chars_top_2gram": 0.057245079427957535, "rps_doc_frac_chars_top_3gram": 0.07513417303562164, "rps_doc_frac_chars_top_4gram": 0.10196779668331146, "rps_doc_books_importance": -63.08726119995117, "rps_doc_books_importance_length_correction": -63.82445526123047, "rps_doc_openwebtext_importance": -25.841291427612305, "rps_doc_openwebtext_importance_length_correction": -26.5784854888916, "rps_doc_wikipedia_importance": -28.05083656311035, "rps_doc_wikipedia_importance_length_correction": -28.78803062438965 }, "fasttext": { "dclm": 0.00004565999915939756, "english": 0.7643289566040039, "fineweb_edu_approx": 0.8951994776725769, "eai_general_math": 0.00032543999259360135, "eai_open_web_math": 0.017210479825735092, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "745.5914", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Decorative arts" } }, "secondary": { "code": "791.4372", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "14", "label": "Reviews/Critiques" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "24", "label": "User Review" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
6,471,085,041,651,817,000
Community Briefs | PostIndependent.com Community Briefs Fly Tying Techniques Local fly tying aficionado and avid fly fisherman Dan LeMoine will teach the basics of making your own fly ties. This free program will be held at the Rifle Branch Library at 6 p.m. Monday, June 29. For more information, call 970-625-3471. Rifle Centennial Park Concert Series lineup announced The City of Rifle announced the Centennial Park Concert Series lineup. Concerts will take place at 6 p.m. every Sunday from June 28 through Aug. 16 at the Centennial Park Stage. The lineup, in order, is Fifty50, Symphony in the Valley (at 8:30 p.m. on Friday, July 3, with fireworks), Exit 42, The Johnny O Band, Dry Hollow, The Caleb Dean Band, Hell Roaring String Band and Wide Load. Food and drink will be available for sale, and the concerts are free. Summer youth art classes in New Castle The New Castle Recreation Department will offer Mighty Makers Youth Art Classes for ages 8-14 through July 16, in partnership with local art educator Lynne Cassidy. The classes will be held on Wednesday and Thursday mornings at The OZ Artists’ Workshop in downtown New Castle from 9:30 a.m. to 1:30 p.m.: Cardboard Creations on July 1 and 2; Recycle Art Designs on July 8 and 9; and Marble Mazes on July 15 and 16. The fee is $45 per class and includes art supplies. Preregistration one week prior to the class is required and can be done online at http://www.newcastlerec.com. Libraries Closed for Independence Day All six branches of the Garfield County Libraries will be closed Saturday, July 4, in observance of Independence Day. The Glenwood Springs and Rifle Branches will resume normal hours on Sunday, July 5, at 1 p.m. The rest of the libraries will resume normal hours on Monday, July 6, at 10 a.m. You can still browse and request books, movies, and more on our website, http://www.gcpld.org, during the closure. Kids’ Theatrical Camp in Rifle to put on ‘Aladdin’ Secret Identity Productions will present “Aladdin the Musical” this summer at the New Ute Events Center in Rifle. This will be a Kids’ Theatrical Camp for the month of July. Forty students ages 8-14 will spend four weeks building sets and costumes and learning dance, singing and acting to put on the performance at the end of the camp. For information on how to be a sponsor or how to sign your child up for the camp, contact Brett Lark with Secret Identity Productions at 970-379-5161. Be Someone’s Hero Take to the skies with comedy duo Wayne & Wingnut. This one-of-a-kind act, presented by ventriloquist Wayne Francis, has life-sized puppets, cartoon voices, jokes, music, and even a banjo made out of a frying pan! These shows will take place on Tuesday, July 7, at 10:30 a.m. at the Carbondale Branch Library and 1:30 p.m. at the Glenwood Springs Branch Library; on Wednesday, July 8, at 10:30 a.m. at the New Castle Branch Library and 1:30 p.m. at the Silt Branch Library; on Thursday, July 9, at 10:30 a.m. at the Rifle Branch Library and 1:30 p.m. at the Parachute Branch Library. For more information about Summer Reading events, visit http://www.gcpld.org. Spanish Storytime The Silt Branch Library offers Spanish Storytime for children ages 3-6. This eight-week program will run through July 30. Stories, songs, and activities will explore camping and the outdoors. This program will be held on Thursdays at 10:30 a.m. For more information, call 970-876-5500. Start a dialogue, stay on topic and be civil. If you don't follow the rules, your comment may be deleted. Announcements See more
{ "url": "https://www.postindependent.com/news/announcements/community-briefs-131/", "source_domain": "www.postindependent.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "96566", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:4FK7VP2RAJACMOIOW2ETZ3HE5LVSARPR", "WARC-Concurrent-To": "<urn:uuid:fe609dff-b8b2-4b0b-a92e-723458839f1a>", "WARC-Date": "2019-10-20T09:16:51Z", "WARC-IP-Address": "52.39.8.212", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:SCZFQ75AIOIWZCE5NJSVTSQ3IFKDWPJU", "WARC-Record-ID": "<urn:uuid:76ddeb20-26e9-4fa3-b060-5047abb5b232>", "WARC-Target-URI": "https://www.postindependent.com/news/announcements/community-briefs-131/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:54c21aa5-0cff-4f45-8660-89a8cbd50c99>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-141.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 39, 40, 57, 58, 79, 80, 320, 321, 375, 376, 554, 555, 763, 764, 834, 835, 874, 875, 1453, 1454, 1492, 1493, 1901, 1902, 1953, 1954, 2068, 2069, 2292, 2293, 2444, 2445, 2463, 2464, 3126, 3127, 3145, 3146, 3432, 3433, 3434, 3480, 3540, 3541, 3542, 3543, 3557, 3558, 3559, 3560, 3561, 3562 ], "line_end_idx": [ 39, 40, 57, 58, 79, 80, 320, 321, 375, 376, 554, 555, 763, 764, 834, 835, 874, 875, 1453, 1454, 1492, 1493, 1901, 1902, 1953, 1954, 2068, 2069, 2292, 2293, 2444, 2445, 2463, 2464, 3126, 3127, 3145, 3146, 3432, 3433, 3434, 3480, 3540, 3541, 3542, 3543, 3557, 3558, 3559, 3560, 3561, 3562, 3570 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3570, "ccnet_original_nlines": 52, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.29072681069374084, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0025062700733542442, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2631579041481018, "rps_doc_frac_unique_words": 0.47403684258461, "rps_doc_mean_word_length": 4.6767168045043945, "rps_doc_num_sentences": 64, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.1018571853637695, "rps_doc_word_count": 597, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.09204871207475662, "rps_doc_frac_chars_dupe_6grams": 0.027936959639191628, "rps_doc_frac_chars_dupe_7grams": 0.027936959639191628, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.019699139520525932, "rps_doc_frac_chars_top_3gram": 0.011461320333182812, "rps_doc_frac_chars_top_4gram": 0.010744989849627018, "rps_doc_books_importance": -398.8858337402344, "rps_doc_books_importance_length_correction": -398.8858337402344, "rps_doc_openwebtext_importance": -209.61611938476562, "rps_doc_openwebtext_importance_length_correction": -209.61611938476562, "rps_doc_wikipedia_importance": -164.06304931640625, "rps_doc_wikipedia_importance_length_correction": -164.06304931640625 }, "fasttext": { "dclm": 0.0000036999999792897142, "english": 0.927902340888977, "fineweb_edu_approx": 1.1854236125946045, "eai_general_math": 0.004494190216064453, "eai_open_web_math": 0.07193464040756226, "eai_web_code": 0.00002384000072197523 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.01", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "025.04", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,108,666,114,685,823,200
How to Have a Perfect Holiday to Vancouver  Vancouver sits on the western coast of Canada in British Columbia and is known for its natural beauty, mountains, parks, modern architecture, and laid-back lifestyle. Just under 10 million tourists visited in 2016, making it one of the most visited cities in Canada. Here are a few essentials to help you plan your perfect holiday to Vancouver. How to Get to Vancouver: The easiest way is to fly in to Vancouver on one of the many daily... Read More Live Like a Londoner – A digital nomad’s guide Whether you are going to London on holiday or for a work assignment (or a little of both), you don’t have to go around looking and acting like a tourist. You can be part of the real culture and get to know London better than you ever would as a tourist. Here are a few recommendations to get you off on the right foot. The first thing you can do before you even leave home: Secure your accommodations. Home From Home makes this easy with... Read More Planning Your 2018 Travel Bucket List! The summer is coming to an end, and before we know it it will be time to put out the Halloween decorations- closely followed by Christmas lights. Most of our travel plans will have been and gone by now, and with things starting to draw to a close now is a good time to start planning next year’s bucket list. Working out where you’d like to go and the things you would like to do- that way there’s plenty of time to get saving and work... Read More Great family activities to see and do on the Isle of Wight Located just 4 miles off the coast of Hampshire and less than 2 hours away from London, the Isle of Wight is the perfect family holiday destination. Popular amongst tourists since Victorian times, the Isle of Wight is famed for its stunning coastal scenery and with plenty attractions and landmarks to explore there is something for the whole family. Holiday cottage experts Blue Chip Holidays talk us through some of the best activities... Read More Tips to Help You Find Cheap Accommodation During Your Travels So you’ve packed your bags, picked a destination and done your research on where you want to go. Whether you’re doing it for the sake of travelling or starting a new life somewhere else, the first thing on your mind should be lodging. Without a place to sleep, you’re going to be in serious trouble. The last thing you want to do is camp out in the streets with a sleeping bag. Not only could it be illegal or get you into trouble, it’s... Read More 5 ways to turn social media into your career In today’s society, one of the best ways to be successful is through social media. A career in social media can be very profitable, and provides unparalleled flexibility in regards to your working hours and the kinds of tasks you have to undertake. It is no wonder that many people, not just those from the younger generation, are turning towards social media in search of a potential career path. There is no one way to find success.... Read More Why Serengeti National Park Is a Must for Your Next African Adventure  No matter where you’ve been on this awe-inspiring planet, you have not seen anything like the Serengeti National Park. It is a return to the world before time began, largely the same as it was millions of years ago. Endless plains stretch beyond the horizon under a sky of unsullied blue. Acacia trees provide umbrellas of shade. Sausage trees festooned with scarlet flowers provide food. Rocky outcrops become havens. Rivers become... Read More Discover Europe: Top 20 Destinations For Uninspired Creatives As a blogger, I am always on the hunt for new sources of inspiration for my work and writing. Over the past few years, I’ve discovered that there is no better way to get inspired than to go off traveling and experience new places and cultures. There is no more inspiring continent than Europe, and many famous authors and artists have found inspiration and motivation for their work in many of the different countries. Are you an... Read More Independent Living On A Budget – Is It Possible? Let’s get one thing straight – upping sticks and travelling around the country (or even the world!) and expecting to do it all for free is just something that can’t happen. There is some expense that has to be spared, and if it’s not coming from you, it’s somebody else who’s footing the bill. With that said, it doesn’t mean that there aren’t tips and tricks to help you get ahead with your savings and ensure that you are spending... Read More 4 Tips for Keeping Your Kids Teeth Healthy on Vacation Whether you’re going off to an exotic locale, or simply going camping with the kids, it is always essential to keep their health a priority throughout the whole ordeal. I say ordeal, because taking care of little ones and their specific needs can be a logistical nightmare depending on where you’re going, especially when it comes to dental health. In this article, we’re going to give you a few tips on how to make sure that your... Read More
{ "url": "http://www.nunomad.com/blog/page/5/", "source_domain": "www.nunomad.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "27291", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:WAARNUKP2BCXUFOEB7AS4INK3PORTZAI", "WARC-Concurrent-To": "<urn:uuid:3a208120-520b-4643-b303-bd38a55b32c0>", "WARC-Date": "2019-10-20T07:20:52Z", "WARC-IP-Address": "104.27.171.32", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:ZIQKP6WZUUKTE3IYMIJCPPXXCR64QDM2", "WARC-Record-ID": "<urn:uuid:d317f70a-d974-4547-817f-1289c1918772>", "WARC-Target-URI": "http://www.nunomad.com/blog/page/5/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:402f476c-5c3e-469f-b430-3086e5bf79b0>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 44, 45, 485, 486, 496, 497, 544, 545, 986, 987, 997, 998, 1037, 1038, 1477, 1478, 1488, 1489, 1548, 1549, 1990, 1991, 2001, 2002, 2064, 2065, 2505, 2506, 2516, 2517, 2562, 2563, 3001, 3002, 3012, 3013, 3084, 3085, 3521, 3522, 3532, 3533, 3595, 3596, 4029, 4030, 4040, 4041, 4090, 4091, 4527, 4528, 4538, 4539, 4594, 4595, 5029, 5030 ], "line_end_idx": [ 44, 45, 485, 486, 496, 497, 544, 545, 986, 987, 997, 998, 1037, 1038, 1477, 1478, 1488, 1489, 1548, 1549, 1990, 1991, 2001, 2002, 2064, 2065, 2505, 2506, 2516, 2517, 2562, 2563, 3001, 3002, 3012, 3013, 3084, 3085, 3521, 3522, 3532, 3533, 3595, 3596, 4029, 4030, 4040, 4041, 4090, 4091, 4527, 4528, 4538, 4539, 4594, 4595, 5029, 5030, 5039 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5039, "ccnet_original_nlines": 58, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.49320387840270996, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0058252401649951935, "rps_doc_frac_lines_end_with_ellipsis": 0.16949152946472168, "rps_doc_frac_no_alph_words": 0.113592229783535, "rps_doc_frac_unique_words": 0.44777777791023254, "rps_doc_mean_word_length": 4.446666717529297, "rps_doc_num_sentences": 45, "rps_doc_symbol_to_word_ratio": 0.009708739817142487, "rps_doc_unigram_entropy": 5.377867221832275, "rps_doc_word_count": 900, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.007996000349521637, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.019990000873804092, "rps_doc_frac_chars_top_3gram": 0.00599699979647994, "rps_doc_frac_chars_top_4gram": 0.010494749993085861, "rps_doc_books_importance": -491.95098876953125, "rps_doc_books_importance_length_correction": -491.95098876953125, "rps_doc_openwebtext_importance": -278.1555480957031, "rps_doc_openwebtext_importance_length_correction": -278.1555480957031, "rps_doc_wikipedia_importance": -206.6629180908203, "rps_doc_wikipedia_importance_length_correction": -206.6629180908203 }, "fasttext": { "dclm": 0.00038427000981755555, "english": 0.9418348073959351, "fineweb_edu_approx": 1.570692539215088, "eai_general_math": 0.0005388900171965361, "eai_open_web_math": 0.11355137825012207, "eai_web_code": 0.00002193000000261236 } }
{ "free_decimal_correspondence": { "primary": { "code": "910.2", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "" } }, "secondary": { "code": "640", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "12", "label": "Listicle" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
719,228,884,518,980,100
England 14-20 Australia, Twickenham, November 17 Woodward slams England's preparation ESPN Staff November 18, 2012 Sir Clive Woodward OBE, Director of Sport for the British Olympic Association speaks during a IOC meetings, Westminster Bridge Park Plaza, London, England, April 6, 2011 Former England boss Sir Clive Woodward believes England were ill-prepared for Saturday's Cook Cup clash with Australia © Getty Images Enlarge Sir Clive Woodward has questioned the thoroughness of England's preparation for Saturday's a 20-14 defeat to Australia. The former England boss turned up the heat on current coach Stuart Lancaster by slamming his side for not taking points when they were on offer in a keenly-contested clash at Twickenham. England opted for quick tap penalties and kicks to the corner for lineouts as they chased the game in the second half in the hope of notching a match-defining try but their gambles did not pay off. Woodward believes that those were the wrong calls to make and insists had they got their preparation right then the result may have been different. "The biggest thing is trying to be smart ahead of the game," Woodward told BBC Radio Five Live's Sportsweek programme. "If you sat down on a Thursday night and gave the players the situation - you are 20-14 down with 22 minutes to go, you have a penalty, the ball is slow, what do you do? - the right decision is to kick for goal and reduce the points to just three. "If you go for the line-out or go for the try you have to score and if you don't you give huge momentum to the defending team, in this case Australia. The key thing is not making decisions in the heat of battle, it is getting these things in players' heads before you go on the pitch, so you know what is going to happen in every single situation. That is the secret to coaching." England must re-group ahead of next weekend's clash with South Africa with New Zealand also set to visit Twickenham next month and Woodward has urged them to "toughen up" if they want to trouble the two best sides in the world. "There is a big opportunity for Stuart Lancaster to make his mark as a coach this week," Woodward said. "He has to turn this around and go into South Africa, when they will be underdogs, to see if they can put in a performance. "You don't get many chances to beat Australia. They were short of six or seven frontline players. This was a big chance lost. They now have a week to put this right. They have a big chance to bounce back. "Hopefully history looks back and this (Australia match) will be a big learning and a big reality check for the whole team. England have to understand international rugby is a very tough business. He (Lancaster) has got to pick a tougher team. International rugby is a tough, uncompromising game and you have to win those battles." © ESPN Sports Media Ltd. Live Sports Communication error please reload the page. • Football • Cricket • Rugby • Days • Hrs • Mins • Secs F1 - Mexican GP • OtherLive >> Golf - Houston Open Snooker - China Open Tennis - Miami Open
{ "url": "http://en.espn.co.uk/england/rugby/story/173318.html", "source_domain": "en.espn.co.uk", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "129768", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:642LXBYPKQ3SOI2PP6ZIXYHBBNYSWCPV", "WARC-Concurrent-To": "<urn:uuid:4820da5a-b365-4c55-ba49-3e3c7c5764df>", "WARC-Date": "2019-10-18T07:33:47Z", "WARC-IP-Address": "23.63.245.26", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:ZUIIKAK3NH4K62D47JUC33HX3TKSADV7", "WARC-Record-ID": "<urn:uuid:870bd668-a80d-4218-85dd-03965c6e1180>", "WARC-Target-URI": "http://en.espn.co.uk/england/rugby/story/173318.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:3b7925ec-8451-4f95-8bd5-15bf93071430>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-179.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 49, 86, 97, 115, 285, 419, 427, 428, 548, 549, 1082, 1083, 1450, 1451, 1832, 1833, 2061, 2062, 2290, 2291, 2496, 2497, 2829, 2830, 2855, 2856, 2868, 2869, 2913, 2914, 2927, 2928, 2940, 2941, 2951, 2952, 2963, 2973, 2984, 2995, 2996, 3016, 3017, 3034, 3035, 3059, 3084 ], "line_end_idx": [ 49, 86, 97, 115, 285, 419, 427, 428, 548, 549, 1082, 1083, 1450, 1451, 1832, 1833, 2061, 2062, 2290, 2291, 2496, 2497, 2829, 2830, 2855, 2856, 2868, 2869, 2913, 2914, 2927, 2928, 2940, 2941, 2951, 2952, 2963, 2973, 2984, 2995, 2996, 3016, 3017, 3034, 3035, 3059, 3084, 3107 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3107, "ccnet_original_nlines": 47, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4065934121608734, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.010989010334014893, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1616954505443573, "rps_doc_frac_unique_words": 0.5222222208976746, "rps_doc_mean_word_length": 4.475925922393799, "rps_doc_num_sentences": 25, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.169151782989502, "rps_doc_word_count": 540, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.008274720050394535, "rps_doc_frac_chars_top_3gram": 0.019859330728650093, "rps_doc_frac_chars_top_4gram": 0.017376910895109177, "rps_doc_books_importance": -299.8158874511719, "rps_doc_books_importance_length_correction": -299.8158874511719, "rps_doc_openwebtext_importance": -131.83056640625, "rps_doc_openwebtext_importance_length_correction": -131.83056640625, "rps_doc_wikipedia_importance": -90.61625671386719, "rps_doc_wikipedia_importance_length_correction": -90.61625671386719 }, "fasttext": { "dclm": 0.0032403499353677034, "english": 0.9731122851371765, "fineweb_edu_approx": 1.152910590171814, "eai_general_math": 0.002966230036690831, "eai_open_web_math": 0.15769565105438232, "eai_web_code": 0.00017148000188171864 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.33401", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "14", "label": "Reviews/Critiques" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-5,039,249,061,483,035,000
Tags , , It’s Shakes’s birthday today! Help me celebrate 🌸🎶🎸🎩 Earth would be a sad and joyless place without the sweet melody of his verse! And heaven too! Nor would we know to treasure earth if it weren’t for the poetry that exalts it! One of my fave sonnets on the immortal youth of love and the process by which all beauty fades and loses the sweet hue of the moment that bred it! 104 To me, fair friend, you never can be old, For as you were when first your eye I ey’d, Such seems your beauty still. Three winters cold Have from the forests shook three summers’ pride, Three beauteous springs to yellow autumn turn’d In process of the seasons have I seen, Three April perfumes in three hot Junes burn’d, Since first I saw you fresh, which yet are green. Ah, yet doth beauty, like a dial hand, Steal from his figure, and no pace perceiv’d, So your sweet hue, which methinks still doth stand, Hath motion, and mine eye may be deceiv’d; For fear of which, hear this, thou age unbred: Ere you were born was beauty’s summer dead Digiprove sealCopyright secured by Digiprove © 2019 Viola Timm Advertisements
{ "url": "https://designwithin.net/2019/04/23/shakespeare-day/", "source_domain": "designwithin.net", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "70003", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:JRNQBIFAN5LQDX4ZJGRVXCOMAIMIA5C4", "WARC-Concurrent-To": "<urn:uuid:88bf2530-88e6-451a-b372-5d87729c16c9>", "WARC-Date": "2019-10-17T12:43:27Z", "WARC-IP-Address": "208.113.137.75", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:TNJVOIKVITXJKWLCJMUXUYO3KZIVHRP4", "WARC-Record-ID": "<urn:uuid:96ac63bc-b652-4d21-b7bb-1e7b0f56e6cf>", "WARC-Target-URI": "https://designwithin.net/2019/04/23/shakespeare-day/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e4932bfa-034e-44a0-afae-6b5fab9a0cc3>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 5, 6, 10, 11, 64, 65, 159, 160, 241, 242, 389, 390, 394, 395, 437, 438, 482, 483, 532, 533, 583, 584, 632, 633, 672, 673, 721, 722, 772, 773, 812, 813, 859, 860, 912, 913, 956, 957, 1004, 1005, 1036, 1037, 1049, 1050, 1113 ], "line_end_idx": [ 5, 6, 10, 11, 64, 65, 159, 160, 241, 242, 389, 390, 394, 395, 437, 438, 482, 483, 532, 533, 583, 584, 632, 633, 672, 673, 721, 722, 772, 773, 812, 813, 859, 860, 912, 913, 956, 957, 1004, 1005, 1036, 1037, 1049, 1050, 1113, 1127 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1127, "ccnet_original_nlines": 45, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3840000033378601, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.012000000104308128, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1720000058412552, "rps_doc_frac_unique_words": 0.693069338798523, "rps_doc_mean_word_length": 4.321782112121582, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.763809680938721, "rps_doc_word_count": 202, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.018327610567212105, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -97.12210845947266, "rps_doc_books_importance_length_correction": -97.12210845947266, "rps_doc_openwebtext_importance": -48.443119049072266, "rps_doc_openwebtext_importance_length_correction": -42.616058349609375, "rps_doc_wikipedia_importance": -18.403318405151367, "rps_doc_wikipedia_importance_length_correction": -18.403318405151367 }, "fasttext": { "dclm": 0.1074833869934082, "english": 0.9484087228775024, "fineweb_edu_approx": 1.8789851665496826, "eai_general_math": 0.030951259657740593, "eai_open_web_math": 0.11013585329055786, "eai_web_code": 0.00018494999676477164 } }
{ "free_decimal_correspondence": { "primary": { "code": "821.01", "labels": { "level_1": "Literature", "level_2": "English literature", "level_3": "English poetry" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "7", "label": "Creative Writing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,548,336,471,778,912,000
Tickets Purchasing tickets online and in advance guarantees admission, weather permitting. Event Dates: Fri, Oct 25 Haunted Trail 35.00 Haunted Town 25.00 Combo 55.00 FastPass 45.00 Sat, Oct 26 Haunted Trail 35.00 Haunted Town 25.00 Combo 55.00 FastPass 45.00 Sun, Oct 27 Haunted Trail 25.00 Haunted Town 25.00 Combo 45.00 FastPass 35.00 Thu, Oct 31 Haunted Trail 25.00 Haunted Town 25.00 Combo 45.00 Fri, Nov 1 Haunted Trail 25.00 Haunted Town 25.00 Combo 40.00 Sat, Nov 2 Haunted Trail 25.00 Haunted Town 25.00 Combo 40.00 What am I Buying? What do you get with your trail pass? Your HAUNTED TRAIL PASS is your ticket into ONE of the two trails! If you wish to hike the SECOND WOODS TRAIL or visit THE TOWN, you should purchase the COMBO PASS, which is good for two attractions. Tickets prices increase $5 on day of event. After your first trail, you'll return to the Front Circle waiting area. At that point, you may decide you’d like to go through the other trail. IF YOU PURCHASED A COMBO PASS, YOU ARE ALL SET TO GO TO THE TOWN OR TO WALK THE SECOND WOODS TRAIL. IF YOU PURCHASED A TRAIL PASS, your second attraction is NOT INCLUDED. You can purchase a “2nd Trail Pass” ON-SITE at TICKETS in the front circle. FAQS DO I NEED TO PRINT OUT MY TICKET? You must bring your ticket with you, either as an image on your phone or as a printed ticket. When you arrive at MHF, we'll scan your ticket barcode and give you a numbered writsband. The number on your WRIST BAND will be called when it’s your turn to enter the trail. For more FAQ's visit https://www.markoffshauntedforest.com/faq
{ "url": "https://app.calleva.org/tickets/", "source_domain": "app.calleva.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "33194", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:RJNYAQP62ZLOUEFE3FSBHFQUOAK4G3MG", "WARC-Concurrent-To": "<urn:uuid:ba1f3f9c-395e-4797-bbf7-ce73bc8c0fa0>", "WARC-Date": "2019-10-21T18:00:54Z", "WARC-IP-Address": "50.116.48.28", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:6HRJ7FLC3A3BF7LS3JZWAS5GJFHNI46V", "WARC-Record-ID": "<urn:uuid:e6ea8b6d-fdc2-4db3-9d29-fb178f2cf2ee>", "WARC-Target-URI": "https://app.calleva.org/tickets/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ccc2a279-aeff-45c5-a65a-9e831fe4f873>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-191.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 8, 9, 92, 93, 106, 107, 119, 139, 158, 170, 185, 197, 217, 236, 248, 263, 275, 295, 314, 326, 341, 353, 373, 392, 404, 415, 435, 454, 466, 477, 497, 516, 528, 529, 547, 548, 830, 831, 1075, 1076, 1223, 1224, 1229, 1230, 1533, 1534 ], "line_end_idx": [ 8, 9, 92, 93, 106, 107, 119, 139, 158, 170, 185, 197, 217, 236, 248, 263, 275, 295, 314, 326, 341, 353, 373, 392, 404, 415, 435, 454, 466, 477, 497, 516, 528, 529, 547, 548, 830, 831, 1075, 1076, 1223, 1224, 1229, 1230, 1533, 1534, 1596 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1596, "ccnet_original_nlines": 46, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2216358780860901, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.1530342996120453, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.30079156160354614, "rps_doc_frac_unique_words": 0.47703179717063904, "rps_doc_mean_word_length": 4.385159015655518, "rps_doc_num_sentences": 39, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.48671817779541, "rps_doc_word_count": 283, "rps_doc_frac_chars_dupe_10grams": 0.08380337804555893, "rps_doc_frac_chars_dupe_5grams": 0.24496373534202576, "rps_doc_frac_chars_dupe_6grams": 0.21273167431354523, "rps_doc_frac_chars_dupe_7grams": 0.21273167431354523, "rps_doc_frac_chars_dupe_8grams": 0.21273167431354523, "rps_doc_frac_chars_dupe_9grams": 0.08380337804555893, "rps_doc_frac_chars_top_2gram": 0.06768734753131866, "rps_doc_frac_chars_top_3gram": 0.07252216339111328, "rps_doc_frac_chars_top_4gram": 0.09669621288776398, "rps_doc_books_importance": -139.10728454589844, "rps_doc_books_importance_length_correction": -125.54647827148438, "rps_doc_openwebtext_importance": -72.80136108398438, "rps_doc_openwebtext_importance_length_correction": -72.80136108398438, "rps_doc_wikipedia_importance": -57.01769256591797, "rps_doc_wikipedia_importance_length_correction": -43.30070495605469 }, "fasttext": { "dclm": 0.0007225900189951062, "english": 0.8692552447319031, "fineweb_edu_approx": 0.8837639093399048, "eai_general_math": 0.003488660091534257, "eai_open_web_math": 0.08382540941238403, "eai_web_code": 0.0004813699924852699 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.52", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "9", "label": "FAQ" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,890,574,081,440,541,700
Accesoalanube.com - Top Interior Design Archive with tag: oversized edison bulbs 2700k Home » Architecture Architecture: Ll Bean Percale Sheets Contemporary Home Interior Ideas Pertaining To 14 of Ll Bean Percale Sheets Architecture Ll Bean Percale Sheets September 05th, 2018 Architecture: Dimex Chair Mat Brilliant For 17 of Dimex Chair Mat Architecture Dimex Chair Mat September 04th, 2018 Architecture: Oversized Edison Bulb Modern Bulbs Event Rentals For 11 of Oversized Edison Bulb Architecture Oversized Edison Bulb August 31st, 2018 Architecture: B10 Light Bulb Contemporary Globe Electric 4 5W 40W Equivalent E12 Warm White Energy Star With Regard To 14 of B10 Light Bulb Architecture B10 Light Bulb September 05th, 2018 Architecture: Usm Modular Furniture Brilliant USM ECC HabitusLiving Collection Design Product Regarding 8 of Usm Modular Furniture Architecture Usm Modular Furniture September 04th, 2018 Architecture: Mirror Shapes For The Wall New Decorating Your With Accent Mirrors Touch Of Class In 15 of Mirror Shapes For The Wall Architecture Mirror Shapes For The Wall September 04th, 2018 Architecture: All In One Game Table Stylish Air King Dragon 13 1 Multi Games For 11 of All In One Game Table Architecture All In One Game Table September 04th, 2018 Architecture: Hvac Intake Vent Brilliant Covers Cover Exterior Home And Living Picture Ideas Regarding 18 of Hvac Intake Vent Architecture Hvac Intake Vent September 05th, 2018 Designs of October, 2019 Any content trademark/s or other material that might be found on this simains the copyright of its respective owner/s. While using this site, you agree to have read and accepted our terms of use, cookie and privacy policy. Copyright © 2019 Accesoalanube.com. All Rights Reserved. web statistics
{ "url": "http://accesoalanube.com/tag/oversized-edison-bulbs-2700k/", "source_domain": "accesoalanube.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "59430", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CL227VAJ6IMLEPWDAABJAVD7MNE4IOU2", "WARC-Concurrent-To": "<urn:uuid:84863682-ea12-42f7-a342-76d11aef0132>", "WARC-Date": "2019-10-17T18:11:28Z", "WARC-IP-Address": "104.31.65.131", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:EPOWC5R6GBBEWRGVBAINDVXLAQARFZLI", "WARC-Record-ID": "<urn:uuid:ec2ed1d6-57d0-4f55-af49-4350a379b264>", "WARC-Target-URI": "http://accesoalanube.com/tag/oversized-edison-bulbs-2700k/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:76524400-a0fa-499d-9928-653be93e19cf>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-68.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 40, 41, 88, 89, 109, 222, 235, 258, 279, 345, 358, 374, 395, 490, 503, 504, 526, 527, 545, 685, 698, 713, 734, 865, 878, 900, 921, 1053, 1066, 1093, 1114, 1223, 1236, 1258, 1279, 1405, 1418, 1435, 1456, 1457, 1482, 1483, 1706, 1763, 1767 ], "line_end_idx": [ 40, 41, 88, 89, 109, 222, 235, 258, 279, 345, 358, 374, 395, 490, 503, 504, 526, 527, 545, 685, 698, 713, 734, 865, 878, 900, 921, 1053, 1066, 1093, 1114, 1223, 1236, 1258, 1279, 1405, 1418, 1435, 1456, 1457, 1482, 1483, 1706, 1763, 1767, 1777 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1777, "ccnet_original_nlines": 45, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1111111119389534, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.026143789291381836, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.16993464529514313, "rps_doc_frac_unique_words": 0.5054945349693298, "rps_doc_mean_word_length": 5.38095235824585, "rps_doc_num_sentences": 7, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.617218971252441, "rps_doc_word_count": 273, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.15452688932418823, "rps_doc_frac_chars_dupe_6grams": 0.08577263355255127, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.0762423425912857, "rps_doc_frac_chars_top_3gram": 0.046289991587400436, "rps_doc_frac_chars_top_4gram": 0.07896527647972107, "rps_doc_books_importance": -170.92970275878906, "rps_doc_books_importance_length_correction": -164.1027069091797, "rps_doc_openwebtext_importance": -85.64490509033203, "rps_doc_openwebtext_importance_length_correction": -85.64490509033203, "rps_doc_wikipedia_importance": -62.05880355834961, "rps_doc_wikipedia_importance_length_correction": -60.133949279785156 }, "fasttext": { "dclm": -0.000009890000001178123, "english": 0.7432830929756165, "fineweb_edu_approx": 0.9442904591560364, "eai_general_math": 0.00003374000152689405, "eai_open_web_math": 0.01728910021483898, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "690.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "" } }, "secondary": { "code": "621.312", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
869,208,823,246,351,600
Listen Back- Podcasts Have you missed an interview or a show? We upload many of our talk shows and individual interviews on various social media and podcasting platforms: Podcasts We upload the following podcasts on a weekly basis including • An Spota Dubh (sports show), • Scoth na Seachtaine (top interviews of the week), • Ardchathair (magazine show about life in Dublin) and • Fada is Fairsing (international news and stories for Irish abroad). These podcasts are available as playlists on Soundcloud and are also available on iTunes, Stitcher and Spotify, Music shows Music shows have their own individual Mixcloud pages, run by the presenters. Individual Interviews You can listen back to individual interviews from other shows on our Soundcloud page along with documentaries, dramas and other great audio content! Podcasts- new shows Would you like to present a new podcast? Are you looking to rent a studio to record a podcast in Dublin? Contact us today.   Live now! See what's coming next... RECENT TWEETS Raidió na Life ar Instagram Rob Carey Rob Carey presents the weekly singer-songwriter show, Scríbhneoirí na n-amhrán every Sunday on Raidió na Life. Read more Gráinne Ní Shearcaigh Is as Droichead Átha , i gcontae Lú do Ghráinne Read more Purchase a share Support Raidió na Life by purchasing a share or making a donation Purchase
{ "url": "http://www.raidionalife.ie/en/listen-back/", "source_domain": "www.raidionalife.ie", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "73441", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:NCY3DYTJLD3J6FU6LJZGKFKL5QEEV7OX", "WARC-Concurrent-To": "<urn:uuid:caf3bf30-7a2b-4bed-b83e-c40c038a9edf>", "WARC-Date": "2019-10-21T13:45:30Z", "WARC-IP-Address": "78.153.214.13", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:EPNZIS3QNPGSED3GD2MDNJXH32PJX6JZ", "WARC-Record-ID": "<urn:uuid:840021df-753b-4df0-b3cb-528bbb46895d>", "WARC-Target-URI": "http://www.raidionalife.ie/en/listen-back/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4780930c-eb29-4cf1-ba34-4dbb0adadc6d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 22, 23, 172, 173, 182, 243, 244, 277, 331, 388, 460, 461, 573, 574, 586, 663, 664, 686, 835, 836, 856, 979, 980, 982, 983, 993, 1019, 1033, 1034, 1062, 1063, 1073, 1194, 1216, 1274, 1291, 1357 ], "line_end_idx": [ 22, 23, 172, 173, 182, 243, 244, 277, 331, 388, 460, 461, 573, 574, 586, 663, 664, 686, 835, 836, 856, 979, 980, 982, 983, 993, 1019, 1033, 1034, 1062, 1063, 1073, 1194, 1216, 1274, 1291, 1357, 1365 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1365, "ccnet_original_nlines": 37, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3174603283405304, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.007936510257422924, "rps_doc_frac_lines_end_with_ellipsis": 0.02631578966975212, "rps_doc_frac_no_alph_words": 0.1309523731470108, "rps_doc_frac_unique_words": 0.6136363744735718, "rps_doc_mean_word_length": 5.004545211791992, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0.003968250006437302, "rps_doc_unigram_entropy": 4.695754528045654, "rps_doc_word_count": 220, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.054495908319950104, "rps_doc_frac_chars_top_3gram": 0.03542234003543854, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -114.5730209350586, "rps_doc_books_importance_length_correction": -114.57270050048828, "rps_doc_openwebtext_importance": -62.33137893676758, "rps_doc_openwebtext_importance_length_correction": -62.33137893676758, "rps_doc_wikipedia_importance": -56.48796463012695, "rps_doc_wikipedia_importance_length_correction": -56.233787536621094 }, "fasttext": { "dclm": 0.0000014299999975264654, "english": 0.8260590434074402, "fineweb_edu_approx": 0.8536984324455261, "eai_general_math": 0.000008580000212532468, "eai_open_web_math": 0.029795169830322266, "eai_web_code": 0.000024679999114596285 } }
{ "free_decimal_correspondence": { "primary": { "code": "025.042", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } }, "secondary": { "code": "780", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,117,669,410,354,469,500
  Car Accident Lawyers in Beverly Hills Car Accident Lawyers in Beverly Hills Car Accident Scene If you’ve recently been in an auto accident, you may have concerns about not only having to recover any injuries you suffered and repairing your car but also having to work with insurance companies. If you were the victim in a vehicle accident, the lawyers at One Law Group believe that you should also think about whether hiring a lawyer who specializes in auto accidents could help you recover damages to help you pay for bills related to the accident and pay you for pain and suffering. In the case that an accident is serious enough to cause fatal or severe injuries, or if any sort of substance was involved, the person who is at fault will also be prosecuted. For other types of car accidents, the other driver, your insurance companies, and yourself will have to deal with the question of who is going to pay the medical bills and car repair expenses. SO, these types of case will eventually be resolved in court. Causes of Automobile Accidents There is a plethora of causes of automobile accidents and some of the most common include: • Distracted drivers: talking on the phone or texting, rubbernecking, changing music, or distracted by passengers • Drowsy drivers: those who have been driving for more than two hours, driving late at night or after eating a heavy meal, or those who take medicines can cause drowsiness • Impaired drivers: drunk or high drivers, even if they aren’t over the legal limit • Speeding • Aggressive driving: tailgating, failing to yield, yelling at other drivers, disregarding traffic signals or changing lanes frequently or with signaling • Weather: rain, snow, fog, ice, sleet, and wind – any sort of weather change If You Are an Automobile Accident Victim Victims in an automobile accident may the driver of the car, passengers, by-standers, and even the spouse of an injured person if the person’s injuries are severe enough. Car accident victims may be able to receive compensation from the other driver, the car’s owner, and even the driver’s employer. They are generally required to pay for damage to your car, current and future medical bills, and any permanent injuries you could have suffered. You may even be able to get punitive damages, which are designed to penalize the other driver for their action. If the other driver’s insurance company contacts you, you don’t need to provide them with any information other than your basic contact information. Do not feel pressured into telling giving them a description of your injuries. The personal injury lawyers from One Law Group know how to handle auto accident injuries and will be able to help you with the negotiation between the other driver’s insurance company and can determine whether or not your case should be heard in court. No Comments Sorry, the comment form is closed at this time.
{ "url": "https://www.onelawgroup.com/auto-accidents/car-accident-lawyers-in-beverly-hills/", "source_domain": "www.onelawgroup.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "80673", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:FFSTZEYZOHKGW4TVY4OCH4KUPXNEA363", "WARC-Concurrent-To": "<urn:uuid:f893076e-951f-4e10-94ad-ffda6f124c33>", "WARC-Date": "2019-10-19T03:11:24Z", "WARC-IP-Address": "198.71.63.193", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:DS5PBGLCUZAFVBOJULUOPXRA635KMM7G", "WARC-Record-ID": "<urn:uuid:1270015f-7063-455b-8ed9-82d927fd8097>", "WARC-Target-URI": "https://www.onelawgroup.com/auto-accidents/car-accident-lawyers-in-beverly-hills/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f52faca2-2c5f-4167-85a9-2201eb5d26d0>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 2, 3, 41, 42, 80, 81, 100, 101, 591, 592, 1023, 1024, 1055, 1056, 1147, 1148, 1264, 1438, 1524, 1537, 1693, 1773, 1774, 1815, 1816, 1987, 1988, 2374, 2375, 2856, 2857, 2869, 2870 ], "line_end_idx": [ 2, 3, 41, 42, 80, 81, 100, 101, 591, 592, 1023, 1024, 1055, 1056, 1147, 1148, 1264, 1438, 1524, 1537, 1693, 1773, 1774, 1815, 1816, 1987, 1988, 2374, 2375, 2856, 2857, 2869, 2870, 2917 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2917, "ccnet_original_nlines": 33, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4535714387893677, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0017857099883258343, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11964286118745804, "rps_doc_frac_unique_words": 0.4541751444339752, "rps_doc_mean_word_length": 4.780040740966797, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.976062774658203, "rps_doc_word_count": 491, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.05922453850507736, "rps_doc_frac_chars_dupe_6grams": 0.03195568919181824, "rps_doc_frac_chars_dupe_7grams": 0.03195568919181824, "rps_doc_frac_chars_dupe_8grams": 0.03195568919181824, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.01704302988946438, "rps_doc_frac_chars_top_3gram": 0.01789519004523754, "rps_doc_frac_chars_top_4gram": 0.01704302988946438, "rps_doc_books_importance": -300.2196044921875, "rps_doc_books_importance_length_correction": -300.2196044921875, "rps_doc_openwebtext_importance": -158.14451599121094, "rps_doc_openwebtext_importance_length_correction": -158.14451599121094, "rps_doc_wikipedia_importance": -116.83102416992188, "rps_doc_wikipedia_importance_length_correction": -116.83102416992188 }, "fasttext": { "dclm": 0.014057219959795475, "english": 0.957250714302063, "fineweb_edu_approx": 1.3748193979263306, "eai_general_math": 0.004235509783029556, "eai_open_web_math": 0.09028542041778564, "eai_web_code": 0.00042575999395921826 } }
{ "free_decimal_correspondence": { "primary": { "code": "346.24", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "Law — Great Britain" } }, "secondary": { "code": "346.2", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "Law — Great Britain" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
3,331,680,278,244,460,000
Facebook Aims To Train 1 Million People And Small Business Owners With Digital Skills By 2020 Tweet This Facebook Technology has changed the way we learn and teach. Any type of class, prior to the digital era was restricted to brick and mortar, professional lectures, and in-person discussions. Today, there are various ways of delivering information, learning and even engaging with other students. Classes no longer have to be designed in the same manner, and students have a wide range of learning platforms to choose from online. Today, teachers and students have a digital toolbox which has changed the way we deliver and process information around the globe. According to Online College Plan, over the past decade, online education has become a critical resource for students who are returning to school and those who are just beginning their college education. Today, close to 30% of Americans currently in school take at least some distance education classes, and close to 15% of students take online courses to obtain their degree. Also, adult learners and corporations are using online learning tools for professional development, personal learning growth, and further certification and certifications. Many of these learning platforms provide free or low cost learning services. For example, the online learning platform Khan Academy has been translated into dozens of languages, and every year 100 million people sign on to learn, acquire test prep tools, and find answers to various problems and questions. Today, we’re beginning to see online education as a critical resource in almost every home for personal growth, within the academic field, through nonprofit organizations and the corporate world. Given these stats, there is still a lack of content and training in critical areas that can help learners take what they've cultivated, and apply those skills to the real world. To accommodate the rapid changes we're seeing within in the workforce, it is imperative that every person who is either entering the workforce, runs a business, or has been working for decades takes time to become a life-long learner. Whether someone wants to work for a company, make a career change, or become an entrepreneur, learning and growth must always be at the forefront. At the end of 2018, Facebook announced their new platform-Learn With Facebook, which is a career development site that focuses on learning the hard and soft skills people need to advance in today’s digital workforce. I had the chance to talk with Fatima Saliu, who is the Head of Social Impact Marketing at Facebook. In this interview which has been edited and condensed, we talk about the new platform, the courses, partnerships, and the goal of helping a vast amount of people by 2020. Robyn Shulman: Can you give me a high-level overview of Learn with Facebook? Fatima Saliu: Learn with Facebook is a career development site, which provides an introductory understanding of the skills that people need to get ahead in the evolving digital workforce, and suggests jobs that are relevant to those skills. Shulman: What does the program offer right now? Saliu: The program offers a range of free online courses in digital marketing hard skills and job preparation and career-focused soft skills. Facebook Shulman: Who can benefit from the program? Saliu: Learn with Facebook is for anyone looking for an introductory set of skills to help them find a new job, make a career change, return to the workforce or improve in their current role. The courses teach skills that are applicable to a range of jobs in the digital economy including digital marketing, customer service, and data analyst roles, among others. Shulman: What was the motivation behind creating the free education and training resource? Saliu: In June of 2018, Facebook made a pledge to train 1 million people and small businesses in the US in digital skills by 2020. We want to give individuals and companies the tools they need to flourish in an increasingly digital economy. One of the ways we are fulfilling this training pledge is through online initiatives, which includes Learn with Facebook. Shulman: When and where did you first launch the program, and how many users are taking advantage of the tools? Saliu: Learn with Facebook launched in the US in November 2018 after launching in India (November 2017), France (May 2018) and Germany (May 2018). We're seeing great results so far in these four global markets. Shulman: What are the types of classes you offer right now, and what do you plan on delivering or possibly adding in the future? Saliu: We launched Learn with Facebook in the US with 13 courses that include “The Power of Coding,” “Ace Your Interview,” “Maximize Your Marketing with Analytics,” and Manage Your Content Marketing.” Shulman: What do these classes highlight? Saliu: The courses feature case studies, insider tips and resources from industry experts - and are completely free to access. We created these first lessons based on the knowledge of our own internal experts and industry experts that helped us prepare for launch. Facebook We will continue to invest in Learn with Facebook and have plans to update the site with new lessons and product experiences based on feedback from our community of learners. Shulman: How many online classes do you offer at the moment in the US? Saliu: 13 courses. Shulman: Who do you think can benefit the most from Learn with Facebook? Saliu: Learn with Facebook is for anyone looking for an introductory set of skills to help them find a new job, make a career change, return to the workforce or improve in their current role. The courses teach skills that benefit people looking for a range of jobs in the digital economy including digital marketing, customer service, and data analyst roles, among others. Shulman: Any exciting developments you’d like to share as Learn with Facebook takes off? Saliu: One exciting element of our US launch is our partnership with the Goodwill Community Foundation: Facebook and the Goodwill Community Foundation are partnering to scale Learn with Facebook's training across the US. We'll work closely to curate training resources for individuals of all backgrounds and education levels. Shulman: What role does Goodwill play in Learn with Facebook? Saliu: Specifically, Goodwill will serve as a thought partner in the delivery and content development for the new Learn with Facebook platform, and share Learn with Facebook within the Goodwill network. In addition, Learn with Facebook will connect users with the extensive GCF Global online resources. Through this partnership, the goal is that Goodwill Community Foundation and Facebook will work together to help individuals of all backgrounds and education levels break into the digital economy. Shulman: You have a significant goal to train 1 million people and small business owners across the US by 2020. How are you scaling such a massive initiative into practice? Saliu: At Facebook, we are committed to helping reverse the skills gap in America by giving individuals and companies the tools they need to flourish in an increasingly digital economy. To turn our 1 million trained pledge into a reality, we're working alongside partners to scale both in-person and online digital skills training. Shulman: Where can we find more information about these offerings? Saliu: You can find details on different programs here: • Expanding in-person training programs: Community Boost, a free event that offers digital skills training to small businesses and job seekers, visited 50 US cities over the course of 2018. We plan to continue hosting these in-person trainings in 2019. • Creating more local partnerships: To date, Facebook has partnered with 100 local organizations in the U.S to provide continued training for small businesses and job seekers. Together with Pathstream, we're working with 20 community colleges to create digital marketing certificate programs to prepare graduates for careers in the digital world. • Building national partnerships: In August of 2018, we announced a new partnership with the National Urban League to offer small businesses trainings at 13 of the League's largest entrepreneurship hubs. We're excited to kick off this work with the National Urban League shortly. • Doubling down on eLearning resources including Facebook Blueprint & Learn with Facebook: We believe in providing educational resources digitally, as well as in-person, to business owners and individuals. • Blueprint: We are constantly expanding Blueprint, a free eLearning program designed to train small businesses in digital advertising. Shulman: Can you share an example of a learning pod that is currently running? Saliu: Absolutely! I'd be happy to tell you more about our work with community colleges including Central New Mexico Community College. As mentioned above, we are establishing 20 partnerships with community colleges across the US as part of Facebook's larger training pledge. The first of the 20 colleges we created a partnership with was Central New Mexico Community College (CNM). We’re developing a new Digital Marketing Certificate program in partnership with the college, which is the largest higher education institution in the state for undergraduate enrollment. The program offers participants the chance to gain knowledge and skills that will prepare them to succeed as professionals in digital marketing and social media strategy. Shulman: Are Facebook employees teaching the classes or can anyone teach them? Saliu: For our community college partnerships specifically, professors at those schools teach the courses. Shulman: What about the Learn with Facebook lessons? Saliu: For Learn with Facebook, lessons are created by Facebook execs including Amy Hayes our VP, Global Learning & Development, as well as industry experts including Igee Okafaor who is a content-creation wiz and has built his entire career online. Shulman: Finally, where can we follow updates about the program offerings? Saliu: You can follow all of our updates tied to Learn with Facebook here. For larger Facebook updates, please check our Newsroom here. Follow me on Twitter or LinkedIn. Check out my website. I am honored to be named LinkedIn's #1 Top Voice in Education. I am a certified K-9, ESL and Writing teacher. I am also the founder of EdNews Daily, an educatio...
{ "url": "https://www.forbes.com/sites/robynshulman/2019/02/16/facebook-aims-to-train-1-million-people-and-small-business-owners-with-digital-skills-by-2020/", "source_domain": "www.forbes.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "445671", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HC6Q3AA57BOUCBNE4KUBQVQGNA2M5HM4", "WARC-Concurrent-To": "<urn:uuid:b03384ba-5fde-4de7-889a-65581aea0eef>", "WARC-Date": "2019-10-23T02:49:38Z", "WARC-IP-Address": "151.101.250.49", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:KNM2Q7TTIGRD3PGHUFQ6QQ7D7YNVENAV", "WARC-Record-ID": "<urn:uuid:399a5603-57cc-4d58-9604-e73b5881df62>", "WARC-Target-URI": "https://www.forbes.com/sites/robynshulman/2019/02/16/facebook-aims-to-train-1-million-people-and-small-business-owners-with-digital-skills-by-2020/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:8c23a5ff-857c-4be4-be60-c126e27de15d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-81.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 94, 95, 106, 115, 116, 667, 668, 1044, 1045, 1524, 1525, 1721, 1722, 1900, 1901, 2136, 2137, 2284, 2285, 2502, 2503, 2774, 2775, 2852, 2853, 3094, 3095, 3143, 3144, 3286, 3287, 3296, 3297, 3340, 3341, 3533, 3534, 3706, 3707, 3798, 3799, 3930, 3931, 4163, 4164, 4276, 4277, 4488, 4489, 4618, 4619, 4820, 4821, 4863, 4864, 5129, 5130, 5139, 5140, 5315, 5316, 5387, 5388, 5407, 5408, 5481, 5482, 5855, 5856, 5945, 5946, 6050, 6051, 6273, 6274, 6336, 6337, 6640, 6641, 6838, 6839, 7012, 7013, 7199, 7200, 7346, 7347, 7414, 7415, 7471, 7472, 7727, 8076, 8358, 8566, 8704, 8705, 8784, 8785, 8921, 8922, 9169, 9170, 9528, 9529, 9608, 9609, 9716, 9717, 9770, 9771, 10021, 10022, 10097, 10098, 10234, 10235, 10291, 10292, 10402, 10403, 10404 ], "line_end_idx": [ 94, 95, 106, 115, 116, 667, 668, 1044, 1045, 1524, 1525, 1721, 1722, 1900, 1901, 2136, 2137, 2284, 2285, 2502, 2503, 2774, 2775, 2852, 2853, 3094, 3095, 3143, 3144, 3286, 3287, 3296, 3297, 3340, 3341, 3533, 3534, 3706, 3707, 3798, 3799, 3930, 3931, 4163, 4164, 4276, 4277, 4488, 4489, 4618, 4619, 4820, 4821, 4863, 4864, 5129, 5130, 5139, 5140, 5315, 5316, 5387, 5388, 5407, 5408, 5481, 5482, 5855, 5856, 5945, 5946, 6050, 6051, 6273, 6274, 6336, 6337, 6640, 6641, 6838, 6839, 7012, 7013, 7199, 7200, 7346, 7347, 7414, 7415, 7471, 7472, 7727, 8076, 8358, 8566, 8704, 8705, 8784, 8785, 8921, 8922, 9169, 9170, 9528, 9529, 9608, 9609, 9716, 9717, 9770, 9771, 10021, 10022, 10097, 10098, 10234, 10235, 10291, 10292, 10402, 10403, 10404, 10457 ] }
{ "red_pajama_v2": { "ccnet_original_length": 10457, "ccnet_original_nlines": 122, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3678220510482788, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.010863940231502056, "rps_doc_frac_lines_end_with_ellipsis": 0.008130080066621304, "rps_doc_frac_no_alph_words": 0.14485256373882294, "rps_doc_frac_unique_words": 0.3271084427833557, "rps_doc_mean_word_length": 5.110240936279297, "rps_doc_num_sentences": 82, "rps_doc_symbol_to_word_ratio": 0.0010346600320190191, "rps_doc_unigram_entropy": 5.523395538330078, "rps_doc_word_count": 1660, "rps_doc_frac_chars_dupe_10grams": 0.08605445921421051, "rps_doc_frac_chars_dupe_5grams": 0.14299187064170837, "rps_doc_frac_chars_dupe_6grams": 0.11022043973207474, "rps_doc_frac_chars_dupe_7grams": 0.11022043973207474, "rps_doc_frac_chars_dupe_8grams": 0.0961923822760582, "rps_doc_frac_chars_dupe_9grams": 0.0961923822760582, "rps_doc_frac_chars_top_2gram": 0.026877280324697495, "rps_doc_frac_chars_top_3gram": 0.03607213869690895, "rps_doc_frac_chars_top_4gram": 0.010373690165579319, "rps_doc_books_importance": -801.2896118164062, "rps_doc_books_importance_length_correction": -801.2896118164062, "rps_doc_openwebtext_importance": -437.1911315917969, "rps_doc_openwebtext_importance_length_correction": -437.1911315917969, "rps_doc_wikipedia_importance": -286.1575012207031, "rps_doc_wikipedia_importance_length_correction": -286.1575012207031 }, "fasttext": { "dclm": 0.0018186599481850863, "english": 0.951047956943512, "fineweb_edu_approx": 1.8932002782821655, "eai_general_math": 0.0009787100134417415, "eai_open_web_math": 0.025248710066080093, "eai_web_code": 0.0010559000074863434 } }
{ "free_decimal_correspondence": { "primary": { "code": "371.36", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Teachers, Teaching, and School management and organization" } }, "secondary": { "code": "658.4011", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
3,767,378,432,069,231,000
Globe iconLogin iconRecap iconSearch iconTickets icon news MLB News Mattingly expects surge for Puig in fan voting MLB.com LOS ANGELES -- Dodgers right fielder Yasiel Puig is among the National League's leaders in batting average, on-base percentage and slugging percentage, but he's not leading the NL outfield All-Star race. Not yet. View Full Game Coverage LOS ANGELES -- Dodgers right fielder Yasiel Puig is among the National League's leaders in batting average, on-base percentage and slugging percentage, but he's not leading the NL outfield All-Star race. Not yet. View Full Game Coverage "It seems like the guys who were hot in April got the early votes," Dodgers manager Don Mattingly said before Friday night's game with the Pirates. Puig sits fifth in the NL outfield voting, behind Marlins slugger Giancarlo Stanton, the Brewers' Ryan Braun, Pittsburgh's Andrew McCutchen and vote leader Charlie Blackmon of the Rockies. But Puig's bat has heated up after a moderately cool April. He's batting .410/.508/.770 in the month of May, hitting eight of his 11 home runs on the season. Puig is batting .348/.443/.631 overall -- good for second in the league in batting average, on-base percentage and slugging. Mattingly said part of the reason for Puig's current All-Star vote standing could be his polarizing nature. He draws strong opinions -- some positive, some less so. Lyle Spencer is a reporter for MLB.com. Michael Lananna is an associate reporter for MLB.com. Los Angeles Dodgers, Yasiel Puig
{ "url": "https://www.mlb.com/news/mattingly-expects-surge-for-puig-in-fan-voting/c-77515330", "source_domain": "www.mlb.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "371053", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:S56CM27E22QJQESHHOOK7D6ZUNJK4VCF", "WARC-Concurrent-To": "<urn:uuid:47ad4c7f-45c3-4980-bb42-7a6ecb74cf32>", "WARC-Date": "2019-10-18T08:46:40Z", "WARC-IP-Address": "23.6.64.30", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:DJGZBDHDKXJLXWAGF3ZYTWT5JW6QPRCH", "WARC-Record-ID": "<urn:uuid:fbcfcf20-b38e-4794-98c2-f3534188aa1a>", "WARC-Target-URI": "https://www.mlb.com/news/mattingly-expects-surge-for-puig-in-fan-voting/c-77515330", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:96fd6220-4eea-47ab-a08d-b58e11c4d44c>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-242.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 54, 59, 60, 69, 70, 117, 118, 126, 127, 331, 332, 341, 342, 366, 367, 571, 572, 581, 582, 606, 607, 755, 756, 1103, 1104, 1394, 1395, 1489, 1490 ], "line_end_idx": [ 54, 59, 60, 69, 70, 117, 118, 126, 127, 331, 332, 341, 342, 366, 367, 571, 572, 581, 582, 606, 607, 755, 756, 1103, 1104, 1394, 1395, 1489, 1490, 1522 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1522, "ccnet_original_nlines": 29, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.30573248863220215, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03503185138106346, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19745223224163055, "rps_doc_frac_unique_words": 0.5654008388519287, "rps_doc_mean_word_length": 5.080168724060059, "rps_doc_num_sentences": 23, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.643829822540283, "rps_doc_word_count": 237, "rps_doc_frac_chars_dupe_10grams": 0.31561461091041565, "rps_doc_frac_chars_dupe_5grams": 0.35132890939712524, "rps_doc_frac_chars_dupe_6grams": 0.35132890939712524, "rps_doc_frac_chars_dupe_7grams": 0.35132890939712524, "rps_doc_frac_chars_dupe_8grams": 0.31561461091041565, "rps_doc_frac_chars_dupe_9grams": 0.31561461091041565, "rps_doc_frac_chars_top_2gram": 0.024916939437389374, "rps_doc_frac_chars_top_3gram": 0.042358800768852234, "rps_doc_frac_chars_top_4gram": 0.054817281663417816, "rps_doc_books_importance": -143.44598388671875, "rps_doc_books_importance_length_correction": -132.91848754882812, "rps_doc_openwebtext_importance": -72.59933471679688, "rps_doc_openwebtext_importance_length_correction": -72.59933471679688, "rps_doc_wikipedia_importance": -58.24686050415039, "rps_doc_wikipedia_importance_length_correction": -45.43113327026367 }, "fasttext": { "dclm": 0.0005952100036665797, "english": 0.9343380331993103, "fineweb_edu_approx": 0.9875298738479614, "eai_general_math": 0.0003005299950018525, "eai_open_web_math": 0.13125187158584595, "eai_web_code": 0.000011559999620658346 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.35701", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.357", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "5", "label": "Evaluate" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-7,497,627,894,143,173,000
CM Yogi Adityanath speaking at the inauguration programme in Gorakhpur. Photo/ANI CM Yogi Adityanath speaking at the inauguration programme in Gorakhpur. Photo/ANI UP CM inaugurates Rs 9.96 crores worth projects in Gorakhpur ANI | Updated: Aug 31, 2019 05:17 IST Gorakhpur (Uttar Pradesh) [India], Aug 31 (ANI): Chief Minister Yogi Adityanath on Friday inaugurated projects worth Rs 9.96 crores at Ramgarh Tal Lake here. A total of 25 floating cascade fountains, one multimedia floating fountain and a 450 kW solar power plant were inaugurated. "The history and culture of Gorakhpur will be displayed at the Ramgarh Tal Lake through the light and sound program here. This city has retained its original traits in the modern days, but it is the duty of the people and all the leaders of the area to enhance its beauty," Adityanath said These projects have been built under the National Lake Conservation Programme of the Government of India and the Pollution Control and Conservation plan of the Urban Development Department for Ramgarh Tal Lake. (ANI) iocl
{ "url": "https://www.aninews.in/news/national/general-news/up-cm-inaugurates-rs-996-crores-worth-projects-in-gorakhpur20190831051721/", "source_domain": "www.aninews.in", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "63810", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:TIVN4LKM42VESNRE5HLVAU3DX3H6DXOC", "WARC-Concurrent-To": "<urn:uuid:d8ddd6a1-af0d-4107-af3e-26ee1a8630be>", "WARC-Date": "2019-10-14T18:21:05Z", "WARC-IP-Address": "13.126.121.254", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:IEDQDTPNAGE4V2I345S52KI2ZKU2WIYA", "WARC-Record-ID": "<urn:uuid:c7c1692f-74af-49b7-ad29-89bb10bb3d8b>", "WARC-Target-URI": "https://www.aninews.in/news/national/general-news/up-cm-inaugurates-rs-996-crores-worth-projects-in-gorakhpur20190831051721/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b0d8dd4d-7ef7-4c7e-bb76-6c4470b3945c>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-207.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 82, 164, 165, 226, 227, 265, 266, 424, 548, 838, 1055, 1056 ], "line_end_idx": [ 82, 164, 165, 226, 227, 265, 266, 424, 548, 838, 1055, 1056, 1060 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1060, "ccnet_original_nlines": 12, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.27860698103904724, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.05472636967897415, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1840796023607254, "rps_doc_frac_unique_words": 0.5882353186607361, "rps_doc_mean_word_length": 5.0411763191223145, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.331103324890137, "rps_doc_word_count": 170, "rps_doc_frac_chars_dupe_10grams": 0.16102683544158936, "rps_doc_frac_chars_dupe_5grams": 0.16102683544158936, "rps_doc_frac_chars_dupe_6grams": 0.16102683544158936, "rps_doc_frac_chars_dupe_7grams": 0.16102683544158936, "rps_doc_frac_chars_dupe_8grams": 0.16102683544158936, "rps_doc_frac_chars_dupe_9grams": 0.16102683544158936, "rps_doc_frac_chars_top_2gram": 0.023337220773100853, "rps_doc_frac_chars_top_3gram": 0.049008168280124664, "rps_doc_frac_chars_top_4gram": 0.05600932985544205, "rps_doc_books_importance": -81.50121307373047, "rps_doc_books_importance_length_correction": -81.50121307373047, "rps_doc_openwebtext_importance": -47.54804611206055, "rps_doc_openwebtext_importance_length_correction": -35.495975494384766, "rps_doc_wikipedia_importance": -31.059473037719727, "rps_doc_wikipedia_importance_length_correction": -31.059473037719727 }, "fasttext": { "dclm": 0.0012678500497713685, "english": 0.9118437170982361, "fineweb_edu_approx": 1.4014267921447754, "eai_general_math": 0.0037064000498503447, "eai_open_web_math": 0.04005575180053711, "eai_web_code": 0.0005291100242175162 } }
{ "free_decimal_correspondence": { "primary": { "code": "352.3", "labels": { "level_1": "Social sciences", "level_2": "Public administration and Military art and science", "level_3": "Local government" } }, "secondary": { "code": "363.69", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Political activists" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-6,921,633,257,504,103,000
DJ TechTools Chroma Cables Audio Optimized USB-A Straight Cable (Various Colours) $27.90 Or 10 interest free payments from $2.79 What's this? Audio Optimized USB-A to USB-B Cables • Dual slimline ferrites prevent signal dropouts • Gold connectors ensure long cable life • Available in 8 colors and 2 types Ideal for home and professional use where impeccable audio is a must, Chroma Cables complement the modern DJ and music production technology with a streamlined styling that keeps your setup looking fresh and sleek. All cables are not created equal, and ours are engineered from scratch for digital performers, by digital performers. Features: • High-speed USB 2.0 cable • Fully-shielded: protects against interference from club lights and other electrical noise sources • Two ferrite chokes: help eliminate noise in both directions • Gold-plated USB contacts last longer • Includes DJTT velcro strap for easy storage. • Lenght: 59.05" / 150cm • Weight: 0.18lb / 0.08kg" Recently viewed
{ "url": "https://www.mixfoundation.co.nz/products/chroma-cables-audio-optimized-usb-a-straight-cable-various-colours", "source_domain": "www.mixfoundation.co.nz", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "165503", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:DG25OAX3BWI4UZYPEXMQPYNYUINKUXGL", "WARC-Concurrent-To": "<urn:uuid:906fa2be-ad8a-45ec-8d1e-6ff9e8a245b3>", "WARC-Date": "2019-10-23T23:41:26Z", "WARC-IP-Address": "23.227.38.64", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:Q5Y37POAJJYPZXHGKLN7STCOFL7BQ4I5", "WARC-Record-ID": "<urn:uuid:b43d1cfc-2f5d-4013-a793-7c7fc65de975>", "WARC-Target-URI": "https://www.mixfoundation.co.nz/products/chroma-cables-audio-optimized-usb-a-straight-cable-various-colours", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:53055fd6-ce96-4907-be01-2fc352383b37>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-180.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 13, 14, 83, 84, 91, 144, 145, 183, 184, 235, 278, 316, 317, 650, 651, 661, 690, 792, 856, 897, 946, 973, 1002, 1003 ], "line_end_idx": [ 13, 14, 83, 84, 91, 144, 145, 183, 184, 235, 278, 316, 317, 650, 651, 661, 690, 792, 856, 897, 946, 973, 1002, 1003, 1018 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1018, "ccnet_original_nlines": 24, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19499999284744263, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.054999999701976776, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2800000011920929, "rps_doc_frac_unique_words": 0.7662337422370911, "rps_doc_mean_word_length": 5.214285850524902, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.596990585327148, "rps_doc_word_count": 154, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02988792024552822, "rps_doc_frac_chars_top_3gram": 0.04483187943696976, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -89.91670227050781, "rps_doc_books_importance_length_correction": -89.91670227050781, "rps_doc_openwebtext_importance": -55.401649475097656, "rps_doc_openwebtext_importance_length_correction": -41.5880241394043, "rps_doc_wikipedia_importance": -40.94628143310547, "rps_doc_wikipedia_importance_length_correction": -40.94628143310547 }, "fasttext": { "dclm": 0.00007616999937454239, "english": 0.8610854148864746, "fineweb_edu_approx": 1.040000319480896, "eai_general_math": 0.0001971099991351366, "eai_open_web_math": 0.01751375012099743, "eai_web_code": -0.000007870000445109326 } }
{ "free_decimal_correspondence": { "primary": { "code": "781.7", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Music theory" } }, "secondary": { "code": "621.392", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,567,514,205,465,899,000
Register Login Contact Us I Am Wanting Sexy Chat Dating Ireland women Horny Grannies Wants Women Desperate To Fuck Horney Singles Ready Exclusive Dating Dating Ireland women Online: Now About Seeking for a kinky native fwb. Waiting for wealthy man College studentE mail me with your information. Alethea Age: 36 Relationship Status: Divorced Seeking: Searching Horny People City: Norwich Hair: Soft Relation Type: Sexy Horny Want Dating Black Views: 5609 submit to reddit You can find the perfect mail order bride from Ireland who you can have fun. I Seeking Real Swingers dating Ireland women All of the lonely nights in your life will be a thing of the past. Ireland is located in Western Europe. Ireland has mild winters and cool summers. I am Cancer, cm 5' 1''. Hello, I am eager to meet someone who is looking for change, adventure and challenge that centres on music, art, and spritual growth. 27 things you should know before dating an Irish girl Suster41 y. I am Aries, cm 5' 7''59 kg lbs. I Irwland a dating Ireland women woman who is not interested in being a serial dater, but am looking for that one person with whom I can develop a growing and ever-deepening relationship. Yes, someday hopefully sooner than later see myse. Sunshine30 y. I am Aquarius, cm 5' 5''60 kg lbs. Looking for chat if intrested just text me: Amieegal31 y. Dating Ireland women I am Aquarius, cm 6' 0''. Hey I'm amiee my snap is amieegal80 so hit me up here or. Maximus Sex Advertisement - Continue Reading Below. More From Relationships. This story about Heath Ledger is just too womeen. How to break up with someone in the kindest way. How to tell if you're dating Ireland women a narcissist. Irish Brides – Meet Hot Irish Women for Marriage & Dating Online | BrightBrides Is Black Mirror returning to 'San Junipero'? This dating Ireland women what it really means to be asexual. Bella Thorne has come out as pansexual. First, if a man enjoys eating well, an Irish woman is the way Irelandd go. Irish women can cook very, very. Their families pass down Irish cooking from generation to generation and not only will you be satisfied at every meal, but you will also be eating hot women in portland meals that will keep dxting on the right track. Second, make sure that you realize that your new Irish bride will probably have strong religious values. Dating Ireland women Seeking Horny People Sometimes, this can be a quite a big deal in newly formed relationships, so it is a sound dating Ireland women to ask when mwm seeking college hottie are first starting to talk. Third, the language will be something you will have to get used to. Although Irish women aian dating English and, often, other languages dating Ireland women well, they have their very own element of slang. Irish culture is unique: Finally, Irish women love to be loved. If you are merely looking for Irish brides for sale, you may want to reconsider your choice. Irish women dating Ireland women tough, but they are one of the most loving women on earth. They want to be shown that they are appreciated and loved for who they Irealnd and where they come. Online Dating in Ireland | Date men and women in Ireland | Badoo They want a man that they can be committed to, have fun with, and potentially womwn a family. Everything dating Ireland women horny native a small gift to show your affection to paying attention to every detail about her will make her love for you even stronger. Wow Honest Great Looking Laidback Guy Irelanv There are many dating agencies out there that specialize in helping you to meet an Irish woman online. You may be wondering, is it legal? Irish women - Irish Girls - Irish Ladies What is the cost? How do you even start off trying to meet a beautiful Irish woman? At most sites, it is dating Ireland women easy as registering a profile and filling out a simple questionnaire. A good agency will ask you many questions so that they can find the best match based on the dating Ireland women provided. Irish women are looking for the same thing escorts busselton men are: Sure, there are some scammers dating Ireland women. But, finding a reputable dating agency that will validate the individuals that are seeking mates will help to prevent either party from being scammed or hurt.
{ "url": "https://epidemic613.com/dating-ireland-women.html", "source_domain": "epidemic613.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "15773", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MIIG6JNLUMTV4SLA2QQXQ6F6HNFQUY6T", "WARC-Concurrent-To": "<urn:uuid:05f21f5a-4a5f-4949-962b-781bd3caf97f>", "WARC-Date": "2019-10-23T04:59:36Z", "WARC-IP-Address": "104.28.21.101", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:LELV2APQPWRK4Z4ITWRPML3XQCKLM5K6", "WARC-Record-ID": "<urn:uuid:f30518bd-a6db-4cf9-8510-aaa113e2c20f>", "WARC-Target-URI": "https://epidemic613.com/dating-ireland-women.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ffdb41c1-607b-4f2f-92fd-a87d5cfdc610>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-191.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 26, 27, 71, 72, 155, 156, 157, 178, 179, 191, 192, 198, 199, 303, 304, 312, 320, 350, 382, 396, 407, 451, 452, 464, 465, 482, 483, 560, 561, 585, 586, 913, 914, 968, 969, 1201, 1202, 1267, 1268, 1361, 1362, 1383, 1384, 1468, 1469, 1481, 1482, 1703, 1704, 1784, 1785, 2007, 2008, 2363, 2364, 2406, 2407, 2653, 2654, 3042, 3043, 3143, 3144, 3209, 3210, 3473, 3474, 3512, 3513, 3659, 3660, 3701, 3702, 3898, 3899 ], "line_end_idx": [ 26, 27, 71, 72, 155, 156, 157, 178, 179, 191, 192, 198, 199, 303, 304, 312, 320, 350, 382, 396, 407, 451, 452, 464, 465, 482, 483, 560, 561, 585, 586, 913, 914, 968, 969, 1201, 1202, 1267, 1268, 1361, 1362, 1383, 1384, 1468, 1469, 1481, 1482, 1703, 1704, 1784, 1785, 2007, 2008, 2363, 2364, 2406, 2407, 2653, 2654, 3042, 3043, 3143, 3144, 3209, 3210, 3473, 3474, 3512, 3513, 3659, 3660, 3701, 3702, 3898, 3899, 4302 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4302, "ccnet_original_nlines": 75, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 10, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3754386007785797, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.012865499593317509, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13801169395446777, "rps_doc_frac_unique_words": 0.4852546751499176, "rps_doc_mean_word_length": 4.563002586364746, "rps_doc_num_sentences": 46, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.342617988586426, "rps_doc_word_count": 746, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.057285550981760025, "rps_doc_frac_chars_top_3gram": 0.07931844890117645, "rps_doc_frac_chars_top_4gram": 0.01351351011544466, "rps_doc_books_importance": -390.91546630859375, "rps_doc_books_importance_length_correction": -390.91546630859375, "rps_doc_openwebtext_importance": -246.85540771484375, "rps_doc_openwebtext_importance_length_correction": -246.85540771484375, "rps_doc_wikipedia_importance": -185.1822052001953, "rps_doc_wikipedia_importance_length_correction": -185.1822052001953 }, "fasttext": { "dclm": 0.0017852799501270056, "english": 0.9338310956954956, "fineweb_edu_approx": 0.8815246820449829, "eai_general_math": 0.00012194999726489186, "eai_open_web_math": 0.03716915845870972, "eai_web_code": -0.0000033399999210814713 } }
{ "free_decimal_correspondence": { "primary": { "code": "306.852", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } }, "secondary": { "code": "306.8520941", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-196,254,085,123,845,570
Nioxin - System Kit 4 Sale Nioxin €34.99 €33.99 Who is it for? Thinning, Fine, Treated Introduction Nioxin System 4 Kit is a complete professional thickening treatment for coloured hair with progressed thinning. Helps you achieve thicker, fuller-looking hair and restore moisture balance. System 4... Nioxin - System Kit 2 Sale Nioxin €34.99 €33.99 Who is it for? Noticeably thinning, Fine hair Introduction NIOXIN Hair System Kit 2 amplifies hair texture while refreshing the scalp, delivering a healthy shine and protecting against breakage. Cystine amino acids help provide thicker-looking hair by... The Ordinary €17.90 Who is it for? Hair loss/ thinning Introduction The concentrated formula of The Ordinary Multi-Peptide Serum for Hair Density is designed to support hair health so that it looks thicker, denser, fuller and healthier. Transforms the hair,... Actyva €13.95 Who is it for? Thin hair Introduction This shampoo cleanses, regenerates and helps to prevent hair loss, counteracting the damaging effects of free radicals. Provides a deep yet gentle cleanse, delivering a delightfully fresh and clean sensation... Nioxin - System Kit 3 Sale Nioxin €34.99 €33.99 Who is it for? Hair loss/ thinning Introduction Nioxin’s multi award-winning 3 step system is designed to optimise scalp and hair health, delivering, thicker, fuller, denser looking hair. Nioxin System Kits Cleanse, Optimise and Treat, enabling... Nioxin Scalp Recovery 3-Step System Kit Sale Nioxin €49.95 €47.45 Who is it for? People with dandruff How to use  Step 1: NIOXIN Scalp Recovery™ Purifying Cleanser (anti-dandruff shampoo) Step 2: NIOXIN Scalp Recovery™ Moisturizing Conditioner (leaves hair nourished and moisturised) ... Nioxin Cleanser 4 - 300ml Sale Nioxin €21.99 €20.50 Who is it for? Thinning, chemically treated hair Introduction This Nioxin shampoo is designed to remove oil and debris such as sebum, fatty acids and environmental residue, which can block hair follicles. Gently removes product build up,... Nioxin - System Kit 1 (Normal to Thin Hair) Sale Nioxin €34.99 €33.99 Who is it for? Fine, Thinning hair Introduction Nioxin System 1 is a specially formulated hair thickening treatment that delivers denser-looking hair. It reduces hair loss due to breakage and strengthens the hair, while refreshing the scalp and... Nioxin Cleanser 2 - 300ml (Shampoo) Sale Nioxin €21.99 €20.50 Who is it for? Normal to Fine, Thinning Hair Introduction: Nioxin System 2 Cleanser Shampoo removes oil and debris such as sebum, fatty acids and environmental residue which can block hair follicles. It gently clears nutrient pathways to your scalp... Nioxin Scalp Revitaliser 4 300ml Sale Nioxin €25.99 €23.99 Suitable For Fine, Noticeably thinning, Chemically treated hair Description System 4 Scalp Revitaliser Conditioner will improve the hair’s resilience and control moisture balance. This smoothing conditioner will amplify your hair's texture whilst... Sale Nioxin €73.30 €49.99 Suitable For Fine, Thin looking, natural hair Description This Shampoo is designed to remove oil and debris such as sebum, fatty acids and environmental residue which can block hair follicles. It gently removes product build up, clearing nutrient... Nioxin Cleanser 3 - 300ml (Shampoo) Sale Nioxin €21.99 €20.50 Suitable For Coloured Hair with Light Thinning Description Preparing the scalp and hair for a complete hair thickening treatment, Nioxin's System 3 Cleanser for Coloured Hair with Light Thinning features Glyco-Shield 2.0 technology to help remove sebum,... Nioxin Cleanser 3 - 1000ml Sale Nioxin €73.30 €49.99 Suitable For Fine, Noticeably thinning, Chemically treated hair Description Nioxin Cleanser 3 shampoo is designed to remove oil and debris such as sebum, fatty acids and environmental residue which can block hair follicles. It gently removes product... Nioxin Scalp Revitaliser 2 - 300ml (Conditioner) Sale Nioxin €25.99 €23.99 Nioxin Scalp Revitaliser 2 - 300ml (Conditioner) Suitable for: Fine, thinning hair Description: Nioxin Scalp Revitaliser System 2 is a gentle conditioner that will delicately furnish sustenance and hydration to the hair supplying you with long continuing... Nioxin Scalp Revitaliser 3 - 300ml (Conditioner) Sale Nioxin €25.99 €23.99 Nioxin Scalp Revitaliser 3 - 300ml (Conditioner) Suitable for: Normal to Thin looking, Coloured hair Description: Step two in your NIOXIN three step system. A daily volumizing hair and scalp conditioner that safeguards the scalp from drying chemical... Nioxin Cleanser 4 - 1000ml (Shampoo) Sale Nioxin €73.30 €49.99 Suitable For Thinning, fine, chemically treated hair.   Description Volumising cleanser helps to remove follicle-clogging sebum, fatty acids and environmental residues from the scalp and hair. Cleanses to provide thicker-looking hair.  ... Nioxin Diaboost Thickening Xtrafusion Treatment 100ml Sale Nioxin €55.99 €49.99 Nioxin Diaboost Thickening Xtrafusion Treatment 100ml Suitable for: All hair types Description: Nioxin Diaboost Thickening Xtrafusion Treatment (100ml) is designed to increase the thickness of your hair and give a fuller appearance. By targeting thinner... Actyva €46.50 Actyva P Fac lot Donna 6mlx12 Suitable For Thin hair Description Formula designed for targeted treatment against hair loss in women, enriched with plant stem cells from grapes. Results of effectiveness test*: Thicker hair in 63% of cases Average...
{ "url": "https://www.beautyfeatures.ie/hair/?_bc_fsnf=1&amp;brand%5B%5D=164&amp;brand%5B%5D=131&amp;brand%5B%5D=170&Hair+Type%5B%5D=Hair%20Loss%2FThinning&Hair+Type%5B%5D=Grey", "source_domain": "www.beautyfeatures.ie", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "230307", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:Q3ZKIQNW6ZKTSCPFDQRVKD3T5SI65BKK", "WARC-Concurrent-To": "<urn:uuid:e87519a5-4f8d-4016-ac0c-104aca4f13e0>", "WARC-Date": "2019-10-23T18:19:03Z", "WARC-IP-Address": "35.241.7.148", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:F46JKXAHLXNWNWCCDDKGDPKMAO4KVFES", "WARC-Record-ID": "<urn:uuid:03d5cb48-5ea5-4bdb-88e8-d669806044d1>", "WARC-Target-URI": "https://www.beautyfeatures.ie/hair/?_bc_fsnf=1&amp;brand%5B%5D=164&amp;brand%5B%5D=131&amp;brand%5B%5D=170&Hair+Type%5B%5D=Hair%20Loss%2FThinning&Hair+Type%5B%5D=Grey", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f777aeeb-e830-424f-807b-4ddeff2d8093>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-144.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 22, 27, 34, 48, 301, 323, 328, 335, 349, 604, 617, 624, 865, 872, 879, 1128, 1150, 1155, 1162, 1176, 1424, 1464, 1469, 1476, 1490, 1712, 1738, 1743, 1750, 1764, 2005, 2049, 2054, 2061, 2075, 2323, 2359, 2364, 2371, 2385, 2637, 2670, 2675, 2682, 2696, 2946, 2951, 2958, 2972, 3222, 3258, 3263, 3270, 3284, 3541, 3568, 3573, 3580, 3594, 3847, 3896, 3901, 3908, 3922, 4180, 4229, 4234, 4241, 4255, 4508, 4545, 4550, 4557, 4571, 4811, 4865, 4870, 4877, 4891, 5148, 5155, 5162 ], "line_end_idx": [ 22, 27, 34, 48, 301, 323, 328, 335, 349, 604, 617, 624, 865, 872, 879, 1128, 1150, 1155, 1162, 1176, 1424, 1464, 1469, 1476, 1490, 1712, 1738, 1743, 1750, 1764, 2005, 2049, 2054, 2061, 2075, 2323, 2359, 2364, 2371, 2385, 2637, 2670, 2675, 2682, 2696, 2946, 2951, 2958, 2972, 3222, 3258, 3263, 3270, 3284, 3541, 3568, 3573, 3580, 3594, 3847, 3896, 3901, 3908, 3922, 4180, 4229, 4234, 4241, 4255, 4508, 4545, 4550, 4557, 4571, 4811, 4865, 4870, 4877, 4891, 5148, 5155, 5162, 5410 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5410, "ccnet_original_nlines": 82, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.16920152306556702, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.005703419912606478, "rps_doc_frac_lines_end_with_ellipsis": 0.21686747670173645, "rps_doc_frac_no_alph_words": 0.2956273853778839, "rps_doc_frac_unique_words": 0.29657796025276184, "rps_doc_mean_word_length": 5.5576677322387695, "rps_doc_num_sentences": 78, "rps_doc_symbol_to_word_ratio": 0.017110269516706467, "rps_doc_unigram_entropy": 4.812946319580078, "rps_doc_word_count": 789, "rps_doc_frac_chars_dupe_10grams": 0.10376282781362534, "rps_doc_frac_chars_dupe_5grams": 0.348004549741745, "rps_doc_frac_chars_dupe_6grams": 0.3295325040817261, "rps_doc_frac_chars_dupe_7grams": 0.22850626707077026, "rps_doc_frac_chars_dupe_8grams": 0.21596351265907288, "rps_doc_frac_chars_dupe_9grams": 0.1598631739616394, "rps_doc_frac_chars_top_2gram": 0.034207530319690704, "rps_doc_frac_chars_top_3gram": 0.014367160387337208, "rps_doc_frac_chars_top_4gram": 0.0205245204269886, "rps_doc_books_importance": -387.3914794921875, "rps_doc_books_importance_length_correction": -387.3914794921875, "rps_doc_openwebtext_importance": -259.8035583496094, "rps_doc_openwebtext_importance_length_correction": -259.8035583496094, "rps_doc_wikipedia_importance": -132.59185791015625, "rps_doc_wikipedia_importance_length_correction": -132.59185791015625 }, "fasttext": { "dclm": 0.012676780112087727, "english": 0.828052818775177, "fineweb_edu_approx": 1.152482509613037, "eai_general_math": 0.0002608899958431721, "eai_open_web_math": 0.014623399823904037, "eai_web_code": 0.000013109999599691946 } }
{ "free_decimal_correspondence": { "primary": { "code": "646.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Clothing and dress, Fashion, and Beauty, Personal" } }, "secondary": { "code": "613.69", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Health and Hygiene" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-6,332,188,297,560,920,000
Universe Says: FULL STOP It's been the most intense and transformative month of my young 55-year-old life. I felt at times like my skin was being burnt away by the velocity of the change underway. The pace of change, conflict, resolution, conflict, opportunity, and so on, was exhausting. I stopped drinking coffee because I didn't need any stimulants. I adjusted my psyche meds to reduce activation. Continue Reading Life Coach Austin Texas: Parenting Coach, Divorce Coach, & Dating Coach As my life has been moving in recent years, my passion for helping and guiding single parents through the hardships of divorce, depression, recovery, addiction, and ultimately renewed belief in a future relationship, I am announcing today that my services as a single parenting coach/wingman/confidant/cheerleader are now official and I've got slots open. Continue Reading There’s Something Missing: On Moods and Chemicals in my Brain The moods roll in and out as if on tides. There is no controlling the bio-rhythm of our energy overall, it's really just how we respond to the varying levels of energy. And over the past several months a low-energy day was just passing through. Yesterday, the low-energy had the feeling of maybe sticking around for a bit. That got me a bit worried. Continue Reading The Head and the Heart: Getting In-Sync In Love It's rare when we get the head and the heart to come into sync about another person. Sometimes it's one thing, a serious physical attraction for example, that sets us off, but the other person fails in one of our additional criteria. One thing I'm certain of, I cannot distinguish attraction from an online dating profile. Continue Reading Close Menu Do NOT follow this link or you will be banned from the site!
{ "url": "https://wholeparentbook.com/category/health-and-fitness/page/20/", "source_domain": "wholeparentbook.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "100058", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ERI5LBNFIXUMQOIOFQ3PHIMG6AXTKLQO", "WARC-Concurrent-To": "<urn:uuid:1ad23e2d-e55e-4cde-85d7-06e230b8b83f>", "WARC-Date": "2019-10-19T11:25:39Z", "WARC-IP-Address": "104.27.139.96", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:FU2NET4NBULG2PWFCCX2XRRFUEIG4OZM", "WARC-Record-ID": "<urn:uuid:a6145e9d-8fbf-4478-a454-4e5dac90a399>", "WARC-Target-URI": "https://wholeparentbook.com/category/health-and-fitness/page/20/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f7a13291-2610-46bc-94cf-c4bfbb74521a>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-191.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 25, 26, 402, 403, 420, 421, 493, 494, 850, 851, 868, 869, 931, 932, 1282, 1283, 1300, 1301, 1349, 1350, 1673, 1674, 1691, 1702 ], "line_end_idx": [ 25, 26, 402, 403, 420, 421, 493, 494, 850, 851, 868, 869, 931, 932, 1282, 1283, 1300, 1301, 1349, 1350, 1673, 1674, 1691, 1702, 1762 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1762, "ccnet_original_nlines": 24, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37808218598365784, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.030136989429593086, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.15890410542488098, "rps_doc_frac_unique_words": 0.6426116824150085, "rps_doc_mean_word_length": 4.824742317199707, "rps_doc_num_sentences": 15, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.93145227432251, "rps_doc_word_count": 291, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.025641029700636864, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04273504018783569, "rps_doc_frac_chars_top_3gram": 0.01424500998109579, "rps_doc_frac_chars_top_4gram": 0.018518520519137383, "rps_doc_books_importance": -166.66038513183594, "rps_doc_books_importance_length_correction": -158.54844665527344, "rps_doc_openwebtext_importance": -87.69232940673828, "rps_doc_openwebtext_importance_length_correction": -87.69232940673828, "rps_doc_wikipedia_importance": -73.03860473632812, "rps_doc_wikipedia_importance_length_correction": -69.52337646484375 }, "fasttext": { "dclm": 0.0014413000317290425, "english": 0.9600566029548645, "fineweb_edu_approx": 0.8223657608032227, "eai_general_math": 0.002291260054334998, "eai_open_web_math": 0.16540378332138062, "eai_web_code": 0.00022309999621938914 } }
{ "free_decimal_correspondence": { "primary": { "code": "158.1", "labels": { "level_1": "Philosophy and psychology", "level_2": "Psychology", "level_3": "" } }, "secondary": { "code": "616.85", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Pathology and Diseases" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "2", "label": "About (Personal)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-9,214,989,089,327,827,000
Entertainment Magazine 20 YEARS AGO: Hefner - Hymn For The Cigarettes Posted on the 12 February 2019 by Rw/ff @rwffmusic 20 YEARS AGO: Hefner - Hymn For The CigarettesAn excellent single from Hefner's second full length album 'The Fidelity Wars', released in January 1999. The indie combo recorded the LP in London over a period of twelve days at Roundhouse Studios.  Formed in 1995, the East London group would release five studio albums before splitting in 2002. Since then they have played together only once, for a tribute to legendary DJ John Peel, who was a strong supporter of theirs.  Frontman Darren Hayman has released various solo records following the demise of the band.  Follow Rewind/Fast Forward:TWITTERFACEBOOK Back to Featured Articles on Logo Paperblog Magazines
{ "url": "https://en.paperblog.com/20-years-ago-hefner-hymn-for-the-cigarettes-2005937/", "source_domain": "en.paperblog.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "33996", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:G6FYPYJRDD23J2R3GIPMPNWNGWYY7Z3T", "WARC-Concurrent-To": "<urn:uuid:11e24152-7c9b-4678-a0b6-51658af744e3>", "WARC-Date": "2019-10-16T14:59:33Z", "WARC-IP-Address": "104.24.122.50", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:UQWT4ABY6EBFS54VBMZBJH7CHYIM6SJZ", "WARC-Record-ID": "<urn:uuid:6ae12f2c-611e-46ce-ab9d-7c338872b37a>", "WARC-Target-URI": "https://en.paperblog.com/20-years-ago-hefner-hymn-for-the-cigarettes-2005937/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:8cddd475-af4d-4ef9-ad44-665f5c9c2a8e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-193.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 23, 24, 71, 72, 123, 370, 371, 596, 597, 598, 690, 691, 692, 735, 736, 780, 781 ], "line_end_idx": [ 23, 24, 71, 72, 123, 370, 371, 596, 597, 598, 690, 691, 692, 735, 736, 780, 781, 790 ] }
{ "red_pajama_v2": { "ccnet_original_length": 790, "ccnet_original_nlines": 17, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.28082191944122314, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.047945208847522736, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1780821830034256, "rps_doc_frac_unique_words": 0.7886179089546204, "rps_doc_mean_word_length": 5.154471397399902, "rps_doc_num_sentences": 6, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.424506664276123, "rps_doc_word_count": 123, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.08201892673969269, "rps_doc_frac_chars_dupe_6grams": 0.08201892673969269, "rps_doc_frac_chars_dupe_7grams": 0.08201892673969269, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.022082019597291946, "rps_doc_frac_chars_top_3gram": 0.031545739620923996, "rps_doc_frac_chars_top_4gram": 0.05047319084405899, "rps_doc_books_importance": -55.901161193847656, "rps_doc_books_importance_length_correction": -55.901161193847656, "rps_doc_openwebtext_importance": -28.719810485839844, "rps_doc_openwebtext_importance_length_correction": -28.71967887878418, "rps_doc_wikipedia_importance": -32.41877365112305, "rps_doc_wikipedia_importance_length_correction": -32.41877365112305 }, "fasttext": { "dclm": 0.0009465800249017775, "english": 0.8988266587257385, "fineweb_edu_approx": 1.0093764066696167, "eai_general_math": 0.00024336999922525138, "eai_open_web_math": 0.030622119084000587, "eai_web_code": 0.0000014299999975264654 } }
{ "free_decimal_correspondence": { "primary": { "code": "782.4216", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } }, "secondary": { "code": "780.92", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-2,887,646,709,303,339,500
privacy Articles Padlock on a fence 4 Keys to Protecting Your Data in a DevOps World It may seem like the desires for end-to-end DevOps and protection of sensitive data are in conflict, but if done correctly, they can be two sides of the same coin. DevOps processes such as version control and delivery automation introduce the very measures needed to properly protect production data. The key to keeping data safe while using it during your DevOps process is to focus on these four areas. Tom Austin's picture Tom Austin CMCrossroads is a TechWell community. Through conferences, training, consulting, and online resources, TechWell helps you develop and deliver great software every day.
{ "url": "https://www.cmcrossroads.com/other-keywords/privacy", "source_domain": "www.cmcrossroads.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "54842", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:L6LQASCK6MIUAG3XOYAVMZGKGNAF345O", "WARC-Concurrent-To": "<urn:uuid:0ce10221-faa6-4a18-86ea-2e1c7db3366d>", "WARC-Date": "2019-10-21T15:34:19Z", "WARC-IP-Address": "104.24.29.101", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:JQ55NWIKLG3T55EA26F7R27SZRDZZ5JL", "WARC-Record-ID": "<urn:uuid:0ac75920-3771-43bb-8a95-45d4f2a42723>", "WARC-Target-URI": "https://www.cmcrossroads.com/other-keywords/privacy", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ce80e59a-aafe-4b9e-aaba-5f09ac5878dd>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 8, 9, 18, 19, 87, 88, 493, 494, 526, 527, 565, 566 ], "line_end_idx": [ 8, 9, 18, 19, 87, 88, 493, 494, 526, 527, 565, 566, 695 ] }
{ "red_pajama_v2": { "ccnet_original_length": 695, "ccnet_original_nlines": 12, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3798449635505676, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11627907305955887, "rps_doc_frac_unique_words": 0.7767857313156128, "rps_doc_mean_word_length": 5.035714149475098, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.342498302459717, "rps_doc_word_count": 112, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -69.09125518798828, "rps_doc_books_importance_length_correction": -71.64673614501953, "rps_doc_openwebtext_importance": -27.014062881469727, "rps_doc_openwebtext_importance_length_correction": -29.569543838500977, "rps_doc_wikipedia_importance": -23.474912643432617, "rps_doc_wikipedia_importance_length_correction": -26.030393600463867 }, "fasttext": { "dclm": 0.008839249610900879, "english": 0.9245875477790833, "fineweb_edu_approx": 2.3327407836914062, "eai_general_math": 0.03471570834517479, "eai_open_web_math": 0.05762910842895508, "eai_web_code": 0.009791020303964615 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.82", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "005.1", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "10", "label": "Knowledge Article" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-8,942,996,874,923,676,000
Supreme Small Double Memory Foam Mattress Supreme Small Double Memory Foam Mattress £467.50 • Uses the highest quality Memory foam & Reflex • 3 layer construction for exceptional comfort • Amazing value for money • Medium firmness (7/10) • 10 year guarantee • Supplied with luxury Cool plus cover Supreme Small Double Memory Foam Mattress Size 75 x 48″ – 190 x 122cm • Feefo Reviews • Description • Notice: Undefined index: title in /home/bmmattresses/public_html/wp-content/themes/porto/woocommerce/single-product/tabs/tabs.php on line 35 Description One of the most exceptional memory form mattress products available for this price, a king size memory foam mattress made with our Supreme foam is hard to beat. There is a luxurious 1” soft layer to offer extreme comfort, followed by 3” of high density 70kg Supreme memory foam offering unbeatable quality and support. A base layer of 4″ supportive, high density reflex foam is applied to give maximum support to the softer comfort layers on top, providing a long lasting, high quality mattress. This mattress is on par with any market leading product, often at a fraction of the cost. Owners of memory foam mattresses often claim that they provide the best sleep they have ever had and they notice the difference to how they feel physically. The benefits of a quality foam mattress can transform your sleep. Price is an essential part of the mattress buying process and when compared to other market leading products, there is little doubt this is the best value for money, including free delivery and a ‘Cool Plus’ cover. Notice: Undefined index: callback in /home/bmmattresses/public_html/wp-content/themes/porto/woocommerce/single-product/tabs/tabs.php on line 50 Warning: call_user_func() expects parameter 1 to be a valid callback, no array or string given in /home/bmmattresses/public_html/wp-content/themes/porto/woocommerce/single-product/tabs/tabs.php on line 50
{ "url": "https://www.bodymouldmattresses.co.uk/memory-foam/mattresses/small-double-surpreme/", "source_domain": "www.bodymouldmattresses.co.uk", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "113004", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MSKW62DVXPHT52CRHORXGWEQBMZNSSJ3", "WARC-Concurrent-To": "<urn:uuid:51ada299-1378-46c3-b1e7-87a359e03087>", "WARC-Date": "2019-10-15T06:03:03Z", "WARC-IP-Address": "139.162.229.164", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:NC6RMSAUAJCLSYKBRAW6GVQAHZAWSGMO", "WARC-Record-ID": "<urn:uuid:bfd6d60d-2146-4fb3-8415-59854b786781>", "WARC-Target-URI": "https://www.bodymouldmattresses.co.uk/memory-foam/mattresses/small-double-surpreme/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c6c904f4-14a9-45c4-9cc2-b63a4fea18f0>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-242.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 42, 43, 85, 86, 94, 95, 145, 194, 222, 249, 271, 312, 313, 360, 361, 384, 385, 403, 419, 420, 565, 566, 578, 579, 1603, 1604, 1605, 1749, 1750 ], "line_end_idx": [ 42, 43, 85, 86, 94, 95, 145, 194, 222, 249, 271, 312, 313, 360, 361, 384, 385, 403, 419, 420, 565, 566, 578, 579, 1603, 1604, 1605, 1749, 1750, 1954 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1954, "ccnet_original_nlines": 29, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2360406070947647, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0025380700826644897, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.25126904249191284, "rps_doc_frac_unique_words": 0.5441696047782898, "rps_doc_mean_word_length": 5.5441694259643555, "rps_doc_num_sentences": 12, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.721369743347168, "rps_doc_word_count": 283, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.18483109772205353, "rps_doc_frac_chars_dupe_6grams": 0.06883364915847778, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04461440071463585, "rps_doc_frac_chars_top_3gram": 0.045889098197221756, "rps_doc_frac_chars_top_4gram": 0.045889098197221756, "rps_doc_books_importance": -182.8463897705078, "rps_doc_books_importance_length_correction": -182.8463897705078, "rps_doc_openwebtext_importance": -115.60912322998047, "rps_doc_openwebtext_importance_length_correction": -115.60912322998047, "rps_doc_wikipedia_importance": -64.47315216064453, "rps_doc_wikipedia_importance_length_correction": -64.47315216064453 }, "fasttext": { "dclm": 0.000198540001292713, "english": 0.8321159482002258, "fineweb_edu_approx": 0.8707966804504395, "eai_general_math": 0.000262679997831583, "eai_open_web_math": 0.03553450107574463, "eai_web_code": 0.00000810999972600257 } }
{ "free_decimal_correspondence": { "primary": { "code": "684.2", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Handicraft and Occupations", "level_3": "Woodwork and Furniture" } }, "secondary": { "code": "640.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "15", "label": "E-Commerce/Marketplace" } }, "extraction_artifacts": { "primary": { "code": "1", "label": "Leftover HTML" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-63,909,696,031,820,100
Kimball County Unclaimed Property Search for Kimball County NE unclaimed property. An unclaimed property search can provide information on unclaimed life insurance, unpaid life insurance claims, tax overpayments, property transfers, gift deeds, wills, beneficiaries, money owed by the government, unclaimed money, and property deeds in a will. The Kimball County Clerk Office maintains public records for a county or local government, including records on unclaimed property. This can include property transferred through a will or gift deed, overpayments on taxes or tax refunds, or other moneys owed by the government. An unclaimed property search in Kimball County can find money or property that has not been claimed by an individual or a relative. The Clerk Office may provide an online database to find unclaimed property in Kimball County Nebraska. Dix Village Clerk Dix NE 119 Myrtle Street 69133 308-682-5279 Kimball County Clerk Kimball NE 114 East 3rd Street 69145 308-235-2831 The Kimball County Recorder of Deeds preserves real estate documents for a county or local government as part of their job to ensure the accuracy of land, property, and property tax records. Recorders of Deeds may also provide information on Kimball County unclaimed property, including property transferred through a will or gift deed. Unclaimed property information may be available on the Recorder of Deeds website through a searchable database. Kimball County Recorder of Deeds Kimball NE 114 East 3rd Street 69145 308-235-2241 The Kimball County Veterans Affairs Department is a federal agency that provides services to veterans, including providing life insurance to service members. In some cases, policyholders or their beneficiaries may have unclaimed insurance funds which are owed to them, which are considered Kimball County unclaimed property. The Veterans Affairs Department provides an online search database to identify unclaimed life insurance funds owed to people in Kimball County Nebraska. Kimball County Veterans Services Kimball NE 114 East 3rd Street 69145 308-235-3141 Veterans of Foreign Wars Kimball NE 227 South Chestnut Street 69145 308-235-3010
{ "url": "https://www.unclaimed-property.net/ne-kimball-county/", "source_domain": "www.unclaimed-property.net", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "16165", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CZSXT62A7SQP7AWJUYEUV7OYESMUKONV", "WARC-Concurrent-To": "<urn:uuid:543b5d4c-5333-4cab-91c5-8e41ea70ef3a>", "WARC-Date": "2019-10-16T15:26:28Z", "WARC-IP-Address": "95.216.4.56", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:4QFYGXHQMG57MS4O6GCTT2GAXRVLPVNO", "WARC-Record-ID": "<urn:uuid:f7a8f7ff-cc6c-4db5-9520-e1bdfbbc18ca>", "WARC-Target-URI": "https://www.unclaimed-property.net/ne-kimball-county/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:936a7c47-e5ef-4744-aaa4-e9982877687e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-81.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 34, 35, 345, 346, 347, 859, 860, 922, 923, 994, 995, 996, 1445, 1446, 1529, 1530, 1531, 2009, 2010, 2093, 2094 ], "line_end_idx": [ 34, 35, 345, 346, 347, 859, 860, 922, 923, 994, 995, 996, 1445, 1446, 1529, 1530, 1531, 2009, 2010, 2093, 2094, 2174 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2174, "ccnet_original_nlines": 21, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.24064171314239502, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.01604278013110161, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17379678785800934, "rps_doc_frac_unique_words": 0.37962964177131653, "rps_doc_mean_word_length": 5.552469253540039, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.41569709777832, "rps_doc_word_count": 324, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.1567537486553192, "rps_doc_frac_chars_dupe_6grams": 0.1256253570318222, "rps_doc_frac_chars_dupe_7grams": 0.0956086665391922, "rps_doc_frac_chars_dupe_8grams": 0.04558087885379791, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.09394107758998871, "rps_doc_frac_chars_top_3gram": 0.03668705001473427, "rps_doc_frac_chars_top_4gram": 0.050027791410684586, "rps_doc_books_importance": -138.39353942871094, "rps_doc_books_importance_length_correction": -138.39353942871094, "rps_doc_openwebtext_importance": -88.97792053222656, "rps_doc_openwebtext_importance_length_correction": -88.97792053222656, "rps_doc_wikipedia_importance": -36.59212875366211, "rps_doc_wikipedia_importance_length_correction": -36.59212875366211 }, "fasttext": { "dclm": 0.008384469896554947, "english": 0.9006885290145874, "fineweb_edu_approx": 1.549020528793335, "eai_general_math": 0.00010025999654317275, "eai_open_web_math": 0.021588029339909554, "eai_web_code": 0.00005329000123310834 } }
{ "free_decimal_correspondence": { "primary": { "code": "352.4", "labels": { "level_1": "Social sciences", "level_2": "Public administration and Military art and science", "level_3": "Local government" } }, "secondary": { "code": "362.5", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "12", "label": "Government/Political" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
8,026,006,811,925,004,000
Install Titanium TV APK on 🔥 Firestick 🔥 for Free Movies & TV Shows – Aug 2019 Use a VPN while streaming to hide your activities, access more content, and thwart ISP throttling. Best deal – 👉 👈 This is a true discount link that saves almost $20 on the annual plan. This video shows the discount from the link – Read more VPN reviews at If you need a 4k Firestick or anything else from Amazon, please click here – Nvidia Shield Link – Steps 1. On your firestick go to settings, my fire tv, and developer options 2. Turn on ADB Debugging and Apps from Unknown Sources 3. Click the home button and to the left for search. Say or type Downloader 4. Install Downloader and type get.filelinked.com 5. Visit the Stream It All APK store for subscribers by typing 67664537 in Filelinked 6. Click on Titanium TV once to download and again after it is downloaded to install. Let me know if you have feedback. I plan to make a lot more videos of all the best streaming apps for firestick. Best VPN Deal – 👉 👈 Subscribe to the Channel – 🔴 🔴 source Leave a Reply Your email address will not be published. Required fields are marked *
{ "url": "https://www.dtechmarket.com/install-titanium-tv-apk-on-%F0%9F%94%A5-firestick-%F0%9F%94%A5-for-free-movies-tv-shows-aug-2019/", "source_domain": "www.dtechmarket.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "100924", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:AVQDCYGKVBW7X6VZ2D5S2CQPKKRA63EB", "WARC-Concurrent-To": "<urn:uuid:115c0be0-a86f-47d3-8510-07aeb6ab9f31>", "WARC-Date": "2019-10-14T06:19:00Z", "WARC-IP-Address": "104.27.135.12", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:LTELOX6OZRE2GLIRQCSKBIAOUY5EIDHY", "WARC-Record-ID": "<urn:uuid:9e3dab52-1110-499c-8ab2-e27938fdff15>", "WARC-Target-URI": "https://www.dtechmarket.com/install-titanium-tv-apk-on-%F0%9F%94%A5-firestick-%F0%9F%94%A5-for-free-movies-tv-shows-aug-2019/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6c8daf8a-7f2e-421f-b7c3-7d621a9e3ada>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-24.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 79, 80, 81, 82, 197, 198, 315, 316, 341, 342, 419, 420, 441, 442, 448, 519, 574, 650, 700, 786, 872, 873, 986, 987, 1007, 1008, 1039, 1040, 1047, 1048, 1062, 1063 ], "line_end_idx": [ 79, 80, 81, 82, 197, 198, 315, 316, 341, 342, 419, 420, 441, 442, 448, 519, 574, 650, 700, 786, 872, 873, 986, 987, 1007, 1008, 1039, 1040, 1047, 1048, 1062, 1063, 1133 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1133, "ccnet_original_nlines": 32, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3305084705352783, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04661016911268234, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19915254414081573, "rps_doc_frac_unique_words": 0.6303317546844482, "rps_doc_mean_word_length": 4.189573287963867, "rps_doc_num_sentences": 16, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.674902439117432, "rps_doc_word_count": 211, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.022624429315328598, "rps_doc_frac_chars_top_3gram": 0.013574659824371338, "rps_doc_frac_chars_top_4gram": 0.01583709940314293, "rps_doc_books_importance": -116.71548461914062, "rps_doc_books_importance_length_correction": -116.71548461914062, "rps_doc_openwebtext_importance": -61.461421966552734, "rps_doc_openwebtext_importance_length_correction": -56.38661193847656, "rps_doc_wikipedia_importance": -38.602413177490234, "rps_doc_wikipedia_importance_length_correction": -38.602413177490234 }, "fasttext": { "dclm": 0.000009890000001178123, "english": 0.8537788987159729, "fineweb_edu_approx": 0.9062703251838684, "eai_general_math": -0.000009890000001178123, "eai_open_web_math": 0.025306759402155876, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "004.67", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } }, "secondary": { "code": "791.4572", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
6,380,426,062,430,258,000
  Our Mission The Miles Foundation endeavors to honor the legacy of its founder, Ellison Miles, through investments in education that promote the next generation’s success. FUNDING FOCUS AREAS • Early childhood education • Family engagement • Third grade literacy • Character development • Leadership development Our Vision     We envision a future in which children are given the foundation they need to lead a healthy, hopeful, and productive life. • Healthy = socially, physically, & cognitively • Hopeful = optimistic, perseverant, joyful • Productive = self-sufficient, fulfilled Our Core Values     GRATITUDE We don’t take for granted the opportunity and responsibility we’ve been given, so we consistently pursue avenues to deepen our knowledge and maximize our impact. AGILITY We are nimble and adaptable on our path to seeking and implementing practical solutions. TRUST We build long-term relationships based on shared values, we deeply engage in our partnerships, and we treat our team like family. COLLABORATION We believe in the power of working together to innovate and effect lasting change.               Our Grants Read more about our funding profiles and eligibility requirements.  
{ "url": "https://www.milesfdn.org/what-we-do/", "source_domain": "www.milesfdn.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "63856", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:5WYVEQD55C6E5OK2HHJTOG3HTWUDZDGW", "WARC-Concurrent-To": "<urn:uuid:ce0c4726-7cb0-41ac-8d9b-edeaa3cee98d>", "WARC-Date": "2019-10-14T13:02:00Z", "WARC-IP-Address": "198.185.159.144", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:BQMFR7JYQMRAHHGPKBHXFSYSSHDSOOTR", "WARC-Record-ID": "<urn:uuid:d718df62-d50d-4e77-a6fb-3bd900449fb1>", "WARC-Target-URI": "https://www.milesfdn.org/what-we-do/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:a6955221-463d-4424-a1b6-6b6b132309e8>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 2, 3, 15, 16, 175, 176, 196, 197, 227, 228, 250, 251, 276, 277, 303, 304, 331, 332, 343, 344, 346, 348, 349, 472, 473, 523, 524, 570, 571, 615, 616, 632, 633, 635, 637, 638, 648, 649, 811, 812, 820, 821, 910, 911, 917, 918, 1048, 1049, 1063, 1064, 1147, 1149, 1150, 1152, 1154, 1156, 1157, 1159, 1161, 1163, 1164, 1175, 1176, 1243, 1244 ], "line_end_idx": [ 2, 3, 15, 16, 175, 176, 196, 197, 227, 228, 250, 251, 276, 277, 303, 304, 331, 332, 343, 344, 346, 348, 349, 472, 473, 523, 524, 570, 571, 615, 616, 632, 633, 635, 637, 638, 648, 649, 811, 812, 820, 821, 910, 911, 917, 918, 1048, 1049, 1063, 1064, 1147, 1149, 1150, 1152, 1154, 1156, 1157, 1159, 1161, 1163, 1164, 1175, 1176, 1243, 1244, 1245 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1245, "ccnet_original_nlines": 65, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2946859896183014, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03381643071770668, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17391304671764374, "rps_doc_frac_unique_words": 0.6724137663841248, "rps_doc_mean_word_length": 5.586206912994385, "rps_doc_num_sentences": 7, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.480493068695068, "rps_doc_word_count": 174, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -86.60182189941406, "rps_doc_books_importance_length_correction": -86.60182189941406, "rps_doc_openwebtext_importance": -52.378875732421875, "rps_doc_openwebtext_importance_length_correction": -52.378875732421875, "rps_doc_wikipedia_importance": -37.4669189453125, "rps_doc_wikipedia_importance_length_correction": -37.4669189453125 }, "fasttext": { "dclm": 0.000011439999980211724, "english": 0.9016872644424438, "fineweb_edu_approx": 1.1301032304763794, "eai_general_math": 0.00004493999949772842, "eai_open_web_math": 0.10971474647521973, "eai_web_code": 0.027450619265437126 } }
{ "free_decimal_correspondence": { "primary": { "code": "370.0", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "" } }, "secondary": { "code": "362.5", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "1", "label": "About (Org.)" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
2,092,020,006,480,264,700
Exotic meat from Africa - From antelope to zebra meat meat. Exotic meats are gaining popularity and enrich not only the haute cuisine but also found their way into the kitchens of meat lovers and amateur chefs. As a gourmet and exotic meat importer and wholesaler, we constantly pay special attention to freshness, quality and cut, along with country of origin and meat producer to enable us always to offer you a first class product. Gourmet and exotics from Africa Gourmet and exotics from Africa Springbok meat of the highest quality we get from the sparsely populated Namibia, whereas South Africa supplies, due to species-appropriate free-range animal husbandry, excellent ostrich meat, crocodile meat and zebra meat. African crocodile meat Crocodile Crocodile is very healthy because its firm meat has a low fat content, similar to the light colloured chicken or turkey meat. Its low taste of its own and the tender crocodile meat makes it interesting even for beginners with the exotic meat. Show ProduCt African zebra meat Zebra Zebra is very juicy and tender, because the bright red meat is crossed by fine veins of fat. It also has a strong taste. Zebra meat is ideal for frying or grilling. Show ProduCt African springbok meat Springbok The springbok is an African antelope and feeds on natural grasses and herbs, which determine the special taste of the fine-fiber and low-fat springbok meat. Show ProduCt African ostrich meat Ostrich meat Ostrich meat is particularly tender, tasty and has a beneficial fat and cholesterol level. The meat is rich in protein and the taste is similar to beef. Show ProduCt
{ "url": "https://www.jacobsen-fleisch.de/regions/africa", "source_domain": "www.jacobsen-fleisch.de", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "33208", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:OZRE45HMBOI34T2MM2IY25XSH6FYRYAU", "WARC-Concurrent-To": "<urn:uuid:80981c59-fdc5-469d-a006-3eb1ce431f61>", "WARC-Date": "2019-10-18T20:15:32Z", "WARC-IP-Address": "217.160.0.91", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:RCVOZO6EIVLXZ6X234P3YRBFS6L5BX3S", "WARC-Record-ID": "<urn:uuid:a0a1ba1d-79a3-47c6-bb05-0a70fad82a75>", "WARC-Target-URI": "https://www.jacobsen-fleisch.de/regions/africa", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:3bd13086-8010-4ab0-aa69-eff0f0bcea90>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-193.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 60, 61, 212, 213, 437, 438, 470, 471, 503, 504, 728, 729, 752, 753, 763, 764, 890, 891, 1008, 1009, 1022, 1023, 1042, 1043, 1049, 1050, 1171, 1172, 1216, 1217, 1230, 1231, 1254, 1255, 1265, 1266, 1423, 1424, 1437, 1438, 1459, 1460, 1473, 1474, 1565, 1566, 1628, 1629 ], "line_end_idx": [ 60, 61, 212, 213, 437, 438, 470, 471, 503, 504, 728, 729, 752, 753, 763, 764, 890, 891, 1008, 1009, 1022, 1023, 1042, 1043, 1049, 1050, 1171, 1172, 1216, 1217, 1230, 1231, 1254, 1255, 1265, 1266, 1423, 1424, 1437, 1438, 1459, 1460, 1473, 1474, 1565, 1566, 1628, 1629, 1641 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1641, "ccnet_original_nlines": 48, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.33779263496398926, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.09364548325538635, "rps_doc_frac_unique_words": 0.48689138889312744, "rps_doc_mean_word_length": 4.951310634613037, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.383366107940674, "rps_doc_word_count": 267, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.04084720090031624, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.027231469750404358, "rps_doc_frac_chars_top_3gram": 0.04084720090031624, "rps_doc_frac_chars_top_4gram": 0.03177005052566528, "rps_doc_books_importance": -135.053466796875, "rps_doc_books_importance_length_correction": -121.33580017089844, "rps_doc_openwebtext_importance": -69.39608764648438, "rps_doc_openwebtext_importance_length_correction": -69.39608764648438, "rps_doc_wikipedia_importance": -67.6432876586914, "rps_doc_wikipedia_importance_length_correction": -55.06597137451172 }, "fasttext": { "dclm": 0.09089518338441849, "english": 0.9178886413574219, "fineweb_edu_approx": 1.7761485576629639, "eai_general_math": 0.0037592099979519844, "eai_open_web_math": 0.06434065103530884, "eai_web_code": 0.00027496000984683633 } }
{ "free_decimal_correspondence": { "primary": { "code": "641.6", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Cooking and Gastronomy" } }, "secondary": { "code": "639.9", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Hunting, Fishing, Trapping, and Fish culture" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-8,722,420,423,379,306,000
 Naprosyn - Naprosyn over the counter uk, Naprosyn meaning Notice: Undefined index: HTTP_USER_AGENT in /home/content/p3pnexwpnas15_data01/01/3693001/html/wp-content/themes/Divi/functions.php on line 8162 Notice: Undefined index: HTTP_USER_AGENT in /home/content/p3pnexwpnas15_data01/01/3693001/html/wp-content/themes/Divi/functions.php on line 8164 Notice: Undefined index: HTTP_USER_AGENT in /home/content/p3pnexwpnas15_data01/01/3693001/html/wp-content/themes/Divi/functions.php on line 8166 class="home page-template-default page page-id-2 custom-background et_pb_button_helper_class et_non_fixed_nav et_show_nav et_secondary_nav_enabled et_secondary_nav_two_panels et_pb_side_nav_page et_pb_gutter et_pb_gutters2 et_primary_nav_dropdown_animation_fade et_secondary_nav_dropdown_animation_fade et_pb_footer_columns4 et_header_style_split et_pb_pagebuilder_layout et_full_width_page et_divi_theme unknown"> Naprosyn over the counter uk naprosyn content The definition of hypoglycemia remains controversial, naprosyn product monograph with accepted blood glucose levels ranging from 40-75mg/dL! Zoheir Farid and Mohammed El Sayed Omar for clinical consultation, to Drs? Antidepressants can cause sleep problems and mental status changes, it is possible that this drug can cause weird dreams in some patients? At fir? Klorane Gentle Dry Shampoo with Oat MilkDetail Page, naprosyn over the counter uk Country / Acid a vit, Loc, Online / No Prescription! (show more) ass: Standard non-polar; Column length: 6 ft; Column type: Packed; Heat rate: 8 K/min; Start T: 130 C; End T: 290 C; End time: 8 min; Start time: 2 min; CAS no: 50486; Active phase: SE-30; Carrier gas: Nitrogen; Substrate: Chromosorb W AW DMS (80-100 mesh); Data type: Normal alkane RI; Authors: Peel, HW; Perrigo, B, A practical gas chromatographic screening procedure for toxicological analysis, Can? Lithium: Increases in serum lithium concentrations and lithium toxicity have been reported during concomitant administration of lithium with angiotensin II receptor antagonists or thiazides? Naprosyn sr 750 price 145-150 Also, HSV recurrences appear to increase the risk of graft rejection and subsequent graft failure? Nell’animale è priva di attività stimolante, naprosyn over the counter uk sedativa o anticolinergica nonché di cardiotossicità. Substrato del CYP3A4. • Add C-tailed, naprosyn over the counter uk ds-cDNA to G-tailed, PstI cut pBR322 and anneal. Generic glidingly vigamox eye drops price in india Tretinoin gel 005 mg, 01 mg is used only at night, but after a preliminary purification, tonic hydroquinone. Echocardiography reveals aortic stenosis, naprosyn hypertension with a mean transvalvular gradient of 55 mm Hg and a calculated valve area of 06 cm2? Just helped me in Getting my wife back to me that was something that i couldn’t imagine will be so easy I’ve known Sophia for years, scripturally viagra online canada When we finally got married,things were so weird so we broke up in February 2011In June 2012, she and I recently got back together and we were together until march 2013 when she started with some strange behavior later on she wasn’t sleeping home! • naprosyn d tab • naprosyn and aspirin They can be effective, but the side effects might not be worth it. You can also get advice from your doctor, nurse or pharmacist! In an embodiment, decorously lantus solostar cost the 13-substituted 4-dedimethylamino methacycline compound is 13-substituted 4-dedimethylamino methacycline (eg, wherein R 4 and R 4' are hydrogen, and R 5 is hydroxyl)! Naprosyn cr 750 mg tablet He also said that I had better seriously consider a minimum dose of 125mg BID? Pentoxifylline: (Moderate) Pentoxifylline has been used concurrently with antihypertensive drugs (beta blockers, depo medrol costo tactically diuretics) without observed problems! Frasco de 100 ml: agregar 90 ml de agua recién hervida y fría? Some experts recommend taking a break from treatment periodically (every few years) to determine if suppressive therapy is still needed. Se ha reportado que la tretinoína causa irritación severa en la piel eccematosa y se debe utilizar con la máxima precaución en pacientes con esta condición! Emerging epidemiologic data suggest that vitamin D may have a protective effect against colon cancer, naprosyn over the counter uk but the data are not as strong for a protective effect against prostate and breast cancer, and are variable for cancers at other sites [ 1, 48, 49]. If methotrexate cost efficaciously you have a previous history of suffering from acute mountain sickness, then you are probably more likely to get it again! Naprosyn gout No debiendo exceder la dosis máxima de 640 mg/día! My doctor has called it "Neuro-cardiogenic syncope / Vaso-vagal syncope" which means when I stand up & my blood pressure drops low, naprosyn vs norco the blood rushes to my legs and my body starts to pass out so I will lay down and get even blood flow! Coadministration of bupropion and propranolol may result in increased plasma concentrations of propranolol. Antibiotics kill many different bacteria, even the good ones that help keep the body healthy! Some of the older tricyclic antidepressants (such as imipramine or amitriptyline) may contribute to heartburn by slowing the speed at which the stomach empties, naprosyn ec 250mg pil Dr! Simvastatin; sevenfold lithium metal price Sitagliptin: (Minor) After administration of single doses of simvastatin and propranolol, there was a significant decrease in mean Cmax, with no change in AUC, of simvastatin! Recommended Dosage: Retin-A cream is usually applied once a day in the evening. Naprosyn espanol A constitutionally cytotec price number of different options may be considered, depending on the size, iodine avidity, and local clinical experience with emerging technologies. In other preferred embodiments, naprosyn over the counter uk the purified revTetR repressors of the present invention comprise any of the amino acid sequences set forth in SEQ ID NOS! Procesul de fosforilare este completat (conversia de la mono- la trifosfat) de kinaza celulara. VigRX Plus® male virility supplement gives men ability in the bedroom. A more insidious onset or progression over more than two weeks should prompt reconsideration of the diagnosis! « Gabapentin isotretinoin uk theretofore treatment for alcohol dependence, a randomized clinical trial » JAMA Intern Med! لا ينبغي أن تستخدم بعض الأدوية أثناء الحمل أو الرضاعة الطبيعية. Since albuterol has become a popular drug with many bodybuilders trying to lose body fat, there have been many different views when comparing clenbuterol and albuterol. This allows your pharmacist to keep a complete record of all your prescription drugs and to advise you about drug interactions and side effects! The steaming buy letrozole uk only significant risk is that of rupture and bleeding which is quite uncommon! POINT: Should Small-Bore Pleural Catheter Placement Be the Preferred Initial Management for Malignant Pleural Effusions! I was diagnosed of COPD/Emphysema in Providence St. You should ensure you allow your doctor know if there are other drugs you are making use of, naprosyn over the counter uk especially minocycline, diuretics, ciprofloxacin, sulfa drugs, demeclocycline, chlorpromazine, prochlorperazine, ofloxacin, tetracycline, fluphenazine, perphenazine, promethazine or doxycycline? Tetracycline shouldn’t be used during pregnancy or while breastfeeding because doctors consider it a category D drug? It mobic cost incompetently is important to identify any miscon- ceptions and to discuss patient goals to ensure they are safe and realistic! A recent study of divalproex sodium for PHN noted subjective improvement in the treatment versus placebo group and found significant side effects in only one patient! The 7-nitro (1B) and 9-nitro (1C) derivatives are treated by hydrogenation using hydrogen gas and a platinum catalyst to yield amines 1D and 1E. Title IX of VAWA 2005 includes for the first time provisions specifically aimed at ending violence against American Indian and Alaska Native women – an issue identified by some members of civil society and others as needing urgent attention? THE PERSON ACCEPTING THIS TRIAL AGREEMENT ON YOUR BEHALF REPRESENTS THAT HE OR SHE HAS READ THE TRIAL AGREEMENT DOCUMENTS IN FULL AND HAS FULL LEGAL AUTHORITY TO LEGALLY BIND YOU TO THIS TRIAL AGREEMENT! Os agentes para o tratamento da disfunção erétil não devem ser utilizados em homens para os quais a atividade sexual esteja desaconselhada. Fundamentally, naprosyn over the counter uk they/you are not able to do so because the Candida fighters are either too inadequate or limited! We pick these items based on the quality of the products, naprosyn crema para que sirve and list the pros and cons of each to help you determine which will work best for you. Houk discovered the body, naprosyn over the counter uk the Mayor called the local police, Dr? Today’s pills can bring a new sense of pleasure that can alter relationships between you and your partner. Package you sent in prompt and timely manner and I am grateful for that. Range measurement pursuant to SAE J2601 standards (ambient temperature: 20°C; hydrogen tank pressure when fueled: 70 MPa)! These mice had improved general fitness and weighed less than the control group mice, despite consuming more calories? Iloperidone: (Moderate) Secondary to alpha-blockade, naprosyn over the counter uk iloperidone can produce vasodilation that may result in additive effects during concurrent use with antihypertensive agents? Canada slavishly tenovate cream price residents can call a provincial poison control center! Schon am heutigen Tag kann man aus Österreich, naprosyn kidney stones Deutschland oder der Schweiz Bayer Levitra Original kaufen! naprosyn vente libre If you are not at least 18 years of age, proscar price titularly do not use, access, or register on the Web Site! Naprosyn or mobic Again, naprosyn drug schedule the question arises whether the rule could be guaranteed by an alternative definition of skew. Most treatment studies have been poorly designed, but several, including randomized controlled trials, note improved symptoms in ∼50% of patients with CP/CPPS treated with a fluoroquinolone [ 50]. Tocainide: (Major) Tocainide increases propranolol concentrations in patients receiving concomi? Eu d'effets secondaires qui ont tendance à disparaitre d'eux-mêmes quelques heures après l`ingestion du médicament! It has been found to be very safe considering its systemic action with few side-effects reported by patients!
{ "url": "http://www.olimpiadasespeciales.org.ec/24226-naprosyn-over-the-counter-uk.html", "source_domain": "www.olimpiadasespeciales.org.ec", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "33946", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IKX4KV4J2TKNHOOJWU2OJDAK673FDG5E", "WARC-Concurrent-To": "<urn:uuid:30b44255-6a40-4716-9ded-d8b3372af8ad>", "WARC-Date": "2019-10-19T05:06:42Z", "WARC-IP-Address": "50.62.198.70", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:AU3QOTDPJS5R2SBKUNOXMGYUD2UKE3AC", "WARC-Record-ID": "<urn:uuid:4d252434-eda3-4655-905d-d9ca4d4f26e8>", "WARC-Target-URI": "http://www.olimpiadasespeciales.org.ec/24226-naprosyn-over-the-counter-uk.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1c380da6-a3ab-403b-9d5a-c6c21b3e7735>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 205, 206, 351, 352, 497, 912, 913, 959, 960, 2064, 2065, 2087, 2088, 2089, 2750, 2751, 3166, 3167, 3186, 3211, 3212, 3562, 3563, 3589, 3590, 3591, 4644, 4645, 4659, 4660, 4661, 5653, 5654, 5671, 5672, 5673, 6498, 6499, 9833, 9854, 9968, 9969, 9987, 9988, 9989 ], "line_end_idx": [ 205, 206, 351, 352, 497, 912, 913, 959, 960, 2064, 2065, 2087, 2088, 2089, 2750, 2751, 3166, 3167, 3186, 3211, 3212, 3562, 3563, 3589, 3590, 3591, 4644, 4645, 4659, 4660, 4661, 5653, 5654, 5671, 5672, 5673, 6498, 6499, 9833, 9854, 9968, 9969, 9987, 9988, 9989, 10633 ] }
{ "red_pajama_v2": { "ccnet_original_length": 10633, "ccnet_original_nlines": 45, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 3, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2728210389614105, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.047962870448827744, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19391438364982605, "rps_doc_frac_unique_words": 0.5834403038024902, "rps_doc_mean_word_length": 5.5898590087890625, "rps_doc_num_sentences": 70, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 6.31467342376709, "rps_doc_word_count": 1558, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.07245378196239471, "rps_doc_frac_chars_dupe_6grams": 0.05316339060664177, "rps_doc_frac_chars_dupe_7grams": 0.03961418941617012, "rps_doc_frac_chars_dupe_8grams": 0.03961418941617012, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.015156730078160763, "rps_doc_frac_chars_top_3gram": 0.01894591934978962, "rps_doc_frac_chars_top_4gram": 0.027787350118160248, "rps_doc_books_importance": -790.635498046875, "rps_doc_books_importance_length_correction": -790.635498046875, "rps_doc_openwebtext_importance": -474.8938293457031, "rps_doc_openwebtext_importance_length_correction": -474.8938293457031, "rps_doc_wikipedia_importance": -259.84588623046875, "rps_doc_wikipedia_importance_length_correction": -259.84588623046875 }, "fasttext": { "dclm": 0.014750120230019093, "english": 0.7971351146697998, "fineweb_edu_approx": 1.4574915170669556, "eai_general_math": 0.03039276972413063, "eai_open_web_math": 0.20037758350372314, "eai_web_code": 0.004530909936875105 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.19", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "615.857", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "1", "label": "Leftover HTML" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "2", "label": "Partially Correct" }, "secondary": { "code": "1", "label": "Technically Flawed" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,232,454,493,483,402,200
1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator Tap image to zoom 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator 1600x500mm Chrome Thermostatic Electric Towel Radiator Curved Ladder Radiator RE187 1600x500mm Chrome Thermostatic Electric Towel Radiator Width: 500 mm Depth: 40 mm Height: 1600 mm €247.97 20% off orders over €500 | Code: OFF20 Delivery Information • In Stock • Delivery within 3-9 working days • Free delivery on orders over €399 Don't Forget Your Essential Extras • What heat output do I need for my room? Use our BTU Calculator to find out • Made from high grade low carbon steel with a chrome plated finish • Kit includes: Radiator, 500W electric thermostatic element, anti-freeze radiator inhibitor fluid, adjustable wall brackets, blanking plug and air vent plug • SKU RE187 • Radiator Type Heated Towel Radiator • Towel Radiator Style Modern • Range Curved Ladder Radiator • Fitting Wall Hung • Material Steel • Finish Metallic • Colour Chrome • Category Radiators • Dual Use Yes • Width 500 mm • Depth 40 mm • Height 1600 mm • Net Weight 9.62 kg • Distance to Wall / Projection (Min) 92 mm • Distance to Wall / Projection (Max) 119 mm • Pipe Centre 450 mm Accreditation & Testing • Complies with ISO9001:2008 regulations • BS EN442 • 100% leak tested • Compatible for use with all UK heating systems that are tank fed or are combination systems <p>Our top quality 1600 x 500 mm thermostatic towel radiator has a BTU output of 1269, powered by a 500w electric element. The quality isnt just in performance either but in build and finish. The bodies of our radiators are cast from low carbon steel before being finished in a gleaming triple layer of chrome. Our 1600 x 500 mm Nancy Basic towel radiator also meets BS EN 442 specifications.</p> Includes: • Radiator • Fixtures & Fittings Excludes: • Radiator valves Please Note: This radiator can be connected to a central heating system as long as it has been treated with a Corrosion inhibitor. Qualified plumbers can advise you if you have any doubts as to whether or not your system has been treated by a corrosion inhibitor. The product can also be installed even if you do not have a central heating system with the addition of a heating element. Please follow the advice carefully in the Heating Element fitting instructions. Delivery How does your Standard Delivery service work? • Delivery is typically within 9 working days from the day you submit your order • Delivery is Monday to Friday (excluding public bank holidays). • If your order is above €299 delivery is free. For orders under €299 please see below for delivery charge:   Orders under €299 Standard Delivery Small orders: May include Bathroom Taps, Showers & Accessories €8 Medium orders: May include Bathroom Furniture & Radiators* €15 Large orders: May include Toilets, Basins & Radiators* €40 • If you spend under €299 you only pay one delivery charge per order. If your order contains more than one item you pay the delivery charge for the largest item. • We'll email you a link to your tracking information once your parcel has been shipped from our warehouse. • All large items weigh more than 25kg and will require more than one person to handle them. • A signature may be required on receipt. • If you're not available to take delivery of your parcel, the carrier will leave a delivery card. All done? Let's go back to the top
{ "url": "https://ie.soak.com/radiators/radiators-by-room/1600x500mm-chrome-thermostatic-electric-towel-radiator/2000903.html", "source_domain": "ie.soak.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "164304", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:3WZPMWGCI7BQ6OXBEMVXOSS3V6ROESFH", "WARC-Concurrent-To": "<urn:uuid:d6b1cfa2-981f-4c31-bfa1-7970f8917432>", "WARC-Date": "2019-10-22T11:05:57Z", "WARC-IP-Address": "31.186.232.169", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:QNS3NMDTG6SL256WCHJKPY2ZMQWU6YWP", "WARC-Record-ID": "<urn:uuid:6902a264-ece0-4f53-a6e0-2906ba32493a>", "WARC-Target-URI": "https://ie.soak.com/radiators/radiators-by-room/1600x500mm-chrome-thermostatic-electric-towel-radiator/2000903.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:eb8941ac-6bd6-4fc8-ad33-3f10d2bf0024>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-144.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 55, 110, 165, 220, 275, 330, 385, 440, 458, 898, 921, 927, 928, 983, 984, 1027, 1028, 1036, 1075, 1076, 1097, 1098, 1111, 1112, 1149, 1187, 1188, 1206, 1207, 1224, 1225, 1304, 1374, 1534, 1548, 1588, 1620, 1653, 1675, 1694, 1714, 1732, 1755, 1772, 1789, 1805, 1824, 1847, 1893, 1940, 1963, 1964, 1988, 1989, 2032, 2045, 2066, 2162, 2559, 2560, 2570, 2571, 2584, 2608, 2609, 2619, 2620, 2640, 2641, 2654, 2655, 3109, 3110, 3119, 3120, 3166, 3167, 3250, 3317, 3427, 3465, 3531, 3594, 3653, 3817, 3927, 4022, 4066, 4167 ], "line_end_idx": [ 55, 110, 165, 220, 275, 330, 385, 440, 458, 898, 921, 927, 928, 983, 984, 1027, 1028, 1036, 1075, 1076, 1097, 1098, 1111, 1112, 1149, 1187, 1188, 1206, 1207, 1224, 1225, 1304, 1374, 1534, 1548, 1588, 1620, 1653, 1675, 1694, 1714, 1732, 1755, 1772, 1789, 1805, 1824, 1847, 1893, 1940, 1963, 1964, 1988, 1989, 2032, 2045, 2066, 2162, 2559, 2560, 2570, 2571, 2584, 2608, 2609, 2619, 2620, 2640, 2641, 2654, 2655, 3109, 3110, 3119, 3120, 3166, 3167, 3250, 3317, 3427, 3465, 3531, 3594, 3653, 3817, 3927, 4022, 4066, 4167, 4201 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4201, "ccnet_original_nlines": 89, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.22983871400356293, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.02016128972172737, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2016129046678543, "rps_doc_frac_unique_words": 0.4259541928768158, "rps_doc_mean_word_length": 5.14503812789917, "rps_doc_num_sentences": 22, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.018752574920654, "rps_doc_word_count": 655, "rps_doc_frac_chars_dupe_10grams": 0.23264095187187195, "rps_doc_frac_chars_dupe_5grams": 0.26201778650283813, "rps_doc_frac_chars_dupe_6grams": 0.2471810132265091, "rps_doc_frac_chars_dupe_7grams": 0.23264095187187195, "rps_doc_frac_chars_dupe_8grams": 0.23264095187187195, "rps_doc_frac_chars_dupe_9grams": 0.23264095187187195, "rps_doc_frac_chars_top_2gram": 0.0810089036822319, "rps_doc_frac_chars_top_3gram": 0.14124628901481628, "rps_doc_frac_chars_top_4gram": 0.1816023737192154, "rps_doc_books_importance": -272.37677001953125, "rps_doc_books_importance_length_correction": -272.37677001953125, "rps_doc_openwebtext_importance": -162.56185913085938, "rps_doc_openwebtext_importance_length_correction": -162.56185913085938, "rps_doc_wikipedia_importance": -66.7314682006836, "rps_doc_wikipedia_importance_length_correction": -66.7314682006836 }, "fasttext": { "dclm": 0.000018119999367627315, "english": 0.8359875679016113, "fineweb_edu_approx": 1.0327699184417725, "eai_general_math": 0.0006182800279930234, "eai_open_web_math": 0.15752053260803223, "eai_web_code": -0.000006199999916134402 } }
{ "free_decimal_correspondence": { "primary": { "code": "692.1", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "Architecture — Designs and plans and Buildings — Specifications" } }, "secondary": { "code": "690", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-8,730,761,750,268,140,000
Allison Svindland Real Estate, 3711 Kennett Pike, Wilmington, New Castle, Delaware, Find Real estate agents and managers, Operators of apartment, nonresidential buildings, Location, Informaton U.S Real estate agents Delaware Real estate agents Delaware - List of United States Real estate agents and managers, Operators of apartment, nonresidential buildings Allison Svindland Real Estate Company Name: Allison Svindland Real Estate Status: Work State: Delaware Post: 19807-2155 County: New Castle City: Wilmington Address: 3711 Kennett Pike Phone: (302)576-6876 Fax: unknown Email: unknown Web site: unknown SIC code: 653101 Industry group: REAL ESTATE AGENTS AND MANAGERS, Business category: REAL ESTATE AGENTS & MANAGERS, Subcategory: RELOCATION SERVICE Employees: 2 Gross Annual Sales (Revenue): USD $ 110,000 Description: Allison Svindland Real Estate is a business categorized under relocation service, which is part of the larger category real estate agents & managers. Allison Svindland Real Estate is located at the address 3711 Kennett Pike in Wilmington, Delaware 19807-2155. You can contact by phone (302)576-6876. Was this article helpful? Yes -0   No -0    Click here to Inform about a mistake   7  Rating: Location & access map for "Allison Svindland Real Estate" Click here add new review about: Allison Svindland Real Estate (Real estate agents and managers) © 2012-2019 delaware.realest-us.org Real estate agents and managers, Operators of apartment, nonresidential buildings, Informaton, in USA × Wait 20 seconds...!!!
{ "url": "https://delaware.realest-us.org/160860-allison_svindland_real_estate.htm", "source_domain": "delaware.realest-us.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "17728", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:BJZPG4XHX445QLSWM7WXO2ZJ2WE2ANKV", "WARC-Concurrent-To": "<urn:uuid:ec4ded21-1d61-48fa-bbbc-f333233957da>", "WARC-Date": "2019-10-21T12:57:46Z", "WARC-IP-Address": "165.227.191.226", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:I4FD5B32ONIUF7V6VISHUV3E66S6PJLB", "WARC-Record-ID": "<urn:uuid:cce03032-266e-4b38-b3cd-4a6aed7c1323>", "WARC-Target-URI": "https://delaware.realest-us.org/160860-allison_svindland_real_estate.htm", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ea7d2ac6-903a-4b22-890a-9de18231807e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-173.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 193, 194, 360, 361, 391, 392, 436, 449, 465, 482, 501, 518, 545, 566, 579, 594, 612, 760, 773, 817, 1130, 1131, 1225, 1226, 1284, 1285, 1286, 1287, 1288, 1289, 1386, 1387, 1525, 1526, 1528 ], "line_end_idx": [ 193, 194, 360, 361, 391, 392, 436, 449, 465, 482, 501, 518, 545, 566, 579, 594, 612, 760, 773, 817, 1130, 1131, 1225, 1226, 1284, 1285, 1286, 1287, 1288, 1289, 1386, 1387, 1525, 1526, 1528, 1549 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1549, "ccnet_original_nlines": 35, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10847458243370056, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.05423729121685028, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.32203391194343567, "rps_doc_frac_unique_words": 0.49295774102211, "rps_doc_mean_word_length": 5.802816867828369, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0.0033898300025612116, "rps_doc_unigram_entropy": 4.25936222076416, "rps_doc_word_count": 213, "rps_doc_frac_chars_dupe_10grams": 0.16990290582180023, "rps_doc_frac_chars_dupe_5grams": 0.3106796145439148, "rps_doc_frac_chars_dupe_6grams": 0.16990290582180023, "rps_doc_frac_chars_dupe_7grams": 0.16990290582180023, "rps_doc_frac_chars_dupe_8grams": 0.16990290582180023, "rps_doc_frac_chars_dupe_9grams": 0.16990290582180023, "rps_doc_frac_chars_top_2gram": 0.12944984436035156, "rps_doc_frac_chars_top_3gram": 0.11650484800338745, "rps_doc_frac_chars_top_4gram": 0.14724919199943542, "rps_doc_books_importance": -146.13253784179688, "rps_doc_books_importance_length_correction": -134.0905303955078, "rps_doc_openwebtext_importance": -40.81816482543945, "rps_doc_openwebtext_importance_length_correction": -40.81816482543945, "rps_doc_wikipedia_importance": -67.11236572265625, "rps_doc_wikipedia_importance_length_correction": -53.56002426147461 }, "fasttext": { "dclm": -0.000006079999820940429, "english": 0.7448719143867493, "fineweb_edu_approx": 0.7344534397125244, "eai_general_math": -0.0000040499999158782884, "eai_open_web_math": 0.01062696985900402, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "333.37", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Land use" } }, "secondary": { "code": "333.370285", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Land use" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "20", "label": "Structured Data" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-2,482,264,121,867,081,700
image Conservation Compilation of herbal plants (description, geographical distribution, taxonomy, line drawings), biodiversity and herbarium. Read More image Research & Publication Description of herbal and T&CM research, searchable publication and process from medicinal plant discovery to clinical trial in producing a high-quality registered herbal drug. Read More   Traditional & Complementary Medicine (T&CM)   Definition and description of therapies, policy, training and education, research in the practise of (T&CM) and integrated medicine system.            Read More   News Update Announcement & Advertisement Forthcoming Events 14th International Conference on Biopharma and Biotherapeutics From Fri, 25. October 2019 Until Sat, 26. October 2019 World Conference on Pharmaceutical Chemistry and Clinical Research From Wed, 27. November 2019 Until Thu, 28. November 2019 15th Annual Congress on Pharmacology and Toxicology From Mon, 2. December 2019 Until Tue, 3. December 2019 3rd International Conference and Exhibition on Pharmaceutical Nanotechnology and Nanomedicine From Mon, 24. February 2020 Until Tue, 25. February 2020 21st Interntaional Conference and Exhibition on Pharmaceutics & Novel Drug Delivery Systems From Wed, 11. March 2020 Until Thu, 12. March 2020 The effect of procyanidolic oligomers on the composition of normal and hypercholesterolemic rabbit aortas. Author Wegrowski J, Robert AM, Moczar M. Date 11/1984 Journal Biochem Pharmacol Abstract Rabbits were fed with normal (group 1 and 2) and cholesterol rich diets (group 3 and 4) concomitantly to a daily peroral administration of 50 mg/kg procyanidolic oligomers (PCO) to groups 2 and 4. After 10 weeks, the cholesterol content of the blood serum and the excised aortic intima-media were significantly higher in groups 3 and 4 than in groups 1 and 2. The DNA, hydroxyproline, uronic acid contents were similar in aortic dry weight basis in all four groups. The intima-media samples were extracted successively with 0.15 M NaCl, 0.02 M sodium phosphate pH 7.4 (NaCl extract) and with 4 M guanidinium chloride, 0.05 M sodium acetate pH 5.8 prior (G1 extract) and following (G2 extract) hydrolysis of the collagen with collagenase. The cholesterol contents of G1 extracts were higher in groups 2 and 4 than in groups 1 and 3. The cholesterol content of aortic elastin increased with cholesterol feeding (group 3). With simultaneous administration of cholesterol and PCO the cholesterol content of aortic elastin in group 4 was significantly lower than in group 3. The uronic acid contents increased in G1 extracts and in the collagenase digest with PCO treatment of both normal and hypercholesterolemic rabbits. The ratio of dermatan-sulphate to chondroitin-sulphate decreased with hypercholesterolemia (group 3) and with PCO (group 2 and 4). The parallelism between increased cholesterol and uronic acid contents and modified glycosaminoglycan composition in G1 extract, indicate that the interaction of cholesterol with macromolecules of the aorta can be modulated by PCO. This drug modifies the extractibility of aortic cholesterol and glycosaminoglycans and reduces the association of cholesterol to elastin. Explore Further Consumer Data Consumer data including medicinal herbs, dietary supplement monographs, health condition monographs and interactions and depletions.                                     Read More Professional Data Professional data organized into medicinal herbs, dietary supplement monographs, health condition monographs, T&CM herbs, formulas, health conditions, interactions and depletions. Read More International Data We offer International linkages to provide extensive content pertaining to many facets of T&CM as well as Integrated Medicine. Please register for access.     Read More  
{ "url": "http://globinmed.com/index.php?option=com_content&view=article&id=64113&catid=416&itemid=&Itemid=101", "source_domain": "globinmed.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "31978", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:H6FB6SVGEXWH3E6DV2T2P2IK3DBU7YNY", "WARC-Concurrent-To": "<urn:uuid:ca3e3d49-4665-4636-bd40-93cca573d68b>", "WARC-Date": "2019-10-15T14:33:26Z", "WARC-IP-Address": "103.245.88.30", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:AN2YAZDG2YTJ33GHDYP4JC5GK65VAYW7", "WARC-Record-ID": "<urn:uuid:a5b9075b-f66d-4bc7-86b3-a8b472a80e9c>", "WARC-Target-URI": "http://globinmed.com/index.php?option=com_content&view=article&id=64113&catid=416&itemid=&Itemid=101", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:547eb2ab-2a06-480f-8384-f66e962be55a>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-180.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 6, 19, 20, 144, 145, 155, 161, 184, 185, 362, 363, 373, 375, 419, 420, 422, 423, 574, 575, 585, 586, 588, 589, 601, 602, 631, 632, 651, 652, 715, 716, 771, 772, 839, 840, 897, 898, 950, 951, 1006, 1007, 1101, 1102, 1159, 1160, 1252, 1253, 1304, 1305, 1412, 1413, 1420, 1421, 1455, 1456, 1461, 1462, 1470, 1471, 1479, 1480, 1498, 1499, 1508, 1509, 3228, 3229, 3245, 3246, 3260, 3261, 3430, 3431, 3441, 3459, 3460, 3640, 3641, 3651, 3670, 3671, 3830, 3831, 3841, 3842 ], "line_end_idx": [ 6, 19, 20, 144, 145, 155, 161, 184, 185, 362, 363, 373, 375, 419, 420, 422, 423, 574, 575, 585, 586, 588, 589, 601, 602, 631, 632, 651, 652, 715, 716, 771, 772, 839, 840, 897, 898, 950, 951, 1006, 1007, 1101, 1102, 1159, 1160, 1252, 1253, 1304, 1305, 1412, 1413, 1420, 1421, 1455, 1456, 1461, 1462, 1470, 1471, 1479, 1480, 1498, 1499, 1508, 1509, 3228, 3229, 3245, 3246, 3260, 3261, 3430, 3431, 3441, 3459, 3460, 3640, 3641, 3651, 3670, 3671, 3830, 3831, 3841, 3842, 3843 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3843, "ccnet_original_nlines": 85, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19878603518009186, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.042488619685173035, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.24430955946445465, "rps_doc_frac_unique_words": 0.46828359365463257, "rps_doc_mean_word_length": 5.777985095977783, "rps_doc_num_sentences": 36, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.03830099105835, "rps_doc_word_count": 536, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.10009686648845673, "rps_doc_frac_chars_dupe_6grams": 0.07878591865301132, "rps_doc_frac_chars_dupe_7grams": 0.055537618696689606, "rps_doc_frac_chars_dupe_8grams": 0.04262188822031021, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.015498870052397251, "rps_doc_frac_chars_top_3gram": 0.0048433998599648476, "rps_doc_frac_chars_top_4gram": 0.022279629483819008, "rps_doc_books_importance": -291.165771484375, "rps_doc_books_importance_length_correction": -291.165771484375, "rps_doc_openwebtext_importance": -167.1707763671875, "rps_doc_openwebtext_importance_length_correction": -167.1707763671875, "rps_doc_wikipedia_importance": -158.5618896484375, "rps_doc_wikipedia_importance_length_correction": -158.5618896484375 }, "fasttext": { "dclm": 0.0000021500000002561137, "english": 0.8792144656181335, "fineweb_edu_approx": 1.3019075393676758, "eai_general_math": 0.009574769996106625, "eai_open_web_math": 0.3855169415473938, "eai_web_code": -0.000004410000201460207 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.5", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "615.3", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "2", "label": "Academic/Research" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "3", "label": "Academic Writing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "4", "label": "Graduate/Expert Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
3,425,558,355,821,431,300
Mental healthcare now creaking 20 years on Mental Health Awareness Week 2016 The New Zealand Nurses Organisation says that 20 years on from the Mason Report, it is time for a review of the current mental healthcare model as there are stresses and strains in many different areas and a growing lack of leadership and cohesion. NZNO President Grant Brookes says that aspects of the background to the 1996 Inquiry into the availability and delivery of acute Mental Health Services in New Zealand, appear to be recurring. “We are aware of heightened public concern around the state of the mental health community,” Grant Brookes said. “At the same time, mental health nurses are reporting a lack of vision, including leadership, for mental health. This, combined with inadequate DHB funding and NGO funding, is straining mental health teams across the country and ultimately affecting consumers. “There is a growing call from service uses, and health professionals for an assessment of whether New Zealand is on the right track to mental wellness.  “A fall out of the Government’s lack of vision and funding is more nurses are reporting assaults and evidently the retention of experienced staff is low. “The system is under strain as more people are presenting in a more acute state because waiting lists for rehabilitation and counselling services are increasing. DHB mental health funding is not keeping up with population need. “NZNO is calling on the Minister of Health to examine the different parts of mental health care so that the concept of ‘one team’ can be realised. “Next year we reach the end of the government’s 5 year mental health strategy. This is a great opportunity for the Ministry of Health to examine whether the removal of mental health targets has been effective. “As part of mental health awareness week, we are engaging with the People’s Review of Mental Health,” Grant Brookes said.   ENDS. Direct Media Enquiries To: Rob Zorn Communications and Media Advisor [email protected] 027 431 2617  |  04 494 8242 Member enquiries: 0800 28 38 48 or [email protected]
{ "url": "https://www.nzno.org.nz/about_us/media_releases/artmid/4731/articleid/99/mental-healthcare-now-creaking-20-years-on", "source_domain": "www.nzno.org.nz", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "141516", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:XSD45KD2HFHV7WSRRJAV4MWD7WROQ44D", "WARC-Concurrent-To": "<urn:uuid:91706732-700d-4848-8e1f-5c110d81f29f>", "WARC-Date": "2019-10-23T04:35:27Z", "WARC-IP-Address": "103.253.194.227", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:BA5LRRYAD3JFTGAL2PO3GPNMQB7F4EH3", "WARC-Record-ID": "<urn:uuid:5da77f2b-75ec-4f24-a122-32260788cfb3>", "WARC-Target-URI": "https://www.nzno.org.nz/about_us/media_releases/artmid/4731/articleid/99/mental-healthcare-now-creaking-20-years-on", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:bcf63c59-1f25-4eca-a228-6158e69dc064>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-235.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 43, 44, 78, 79, 328, 329, 521, 522, 635, 636, 897, 898, 1050, 1051, 1206, 1207, 1435, 1436, 1583, 1584, 1794, 1795, 1917, 1918, 1920, 1921, 1927, 1928, 1955, 1956, 1957, 1966, 1999, 2000, 2021, 2050, 2051 ], "line_end_idx": [ 43, 44, 78, 79, 328, 329, 521, 522, 635, 636, 897, 898, 1050, 1051, 1206, 1207, 1435, 1436, 1583, 1584, 1794, 1795, 1917, 1918, 1920, 1921, 1927, 1928, 1955, 1956, 1957, 1966, 1999, 2000, 2021, 2050, 2051, 2104 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2104, "ccnet_original_nlines": 37, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3558897078037262, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.017543859779834747, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.15789474546909332, "rps_doc_frac_unique_words": 0.5337243676185608, "rps_doc_mean_word_length": 5, "rps_doc_num_sentences": 20, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.734314918518066, "rps_doc_word_count": 341, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.07741934806108475, "rps_doc_frac_chars_top_3gram": 0.02463342994451523, "rps_doc_frac_chars_top_4gram": 0.029325509443879128, "rps_doc_books_importance": -141.19418334960938, "rps_doc_books_importance_length_correction": -141.19418334960938, "rps_doc_openwebtext_importance": -81.65570831298828, "rps_doc_openwebtext_importance_length_correction": -81.65570831298828, "rps_doc_wikipedia_importance": -72.86478424072266, "rps_doc_wikipedia_importance_length_correction": -72.86478424072266 }, "fasttext": { "dclm": 0.004958630073815584, "english": 0.9491530060768127, "fineweb_edu_approx": 2.1152541637420654, "eai_general_math": 0.004304890055209398, "eai_open_web_math": 0.07094758749008179, "eai_web_code": 0.00008880999666871503 } }
{ "free_decimal_correspondence": { "primary": { "code": "362.2", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } }, "secondary": { "code": "616.89", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Pathology and Diseases" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-5,589,503,208,701,805,000
July 2015 RE/MAX National Housing Report RE/MAX researches 53 major metropolitan markets and analyzes the data to get a pulse on the US housing market. Here are some highlights from this months report. The number of June home sales was the highest of any month since the RE/MAX National Housing Report began in 2008. This year’s home sales have now experienced a five-month trend in which sales have been higher than both the previous month and the same month in the previous year. To download the full report – Click Here.   Please contact us  to help you to sell your home and find the home of your dreams!  We specialize in Laguna Beach, Newport Beach, Dana Point, San Clemente and our inland coastal communities. Make it a great day! Jeff rm logo   Your Name (required) Your Email (required) Subject Your Message This question is for testing whether or not you are a human visitor and to prevent automated spam submissions. captcha Leave a Reply Your email address will not be published. Required fields are marked *
{ "url": "http://coastalcitiesrealty.com/blog/2015/07/18/july-2015-remax-national-housing-report/", "source_domain": "coastalcitiesrealty.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "59473", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:DBHVTHGRXFKISY72UNQ5NJKDNPV5TKF5", "WARC-Concurrent-To": "<urn:uuid:93a4da00-108b-464a-8c50-3a3208a1b035>", "WARC-Date": "2019-10-15T04:41:52Z", "WARC-IP-Address": "50.63.51.35", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:ZF4RMWYIHBVPQST3PB5IF6DPPATKU5ZW", "WARC-Record-ID": "<urn:uuid:d9b393aa-8270-4759-90b1-a85b4bd3bdee>", "WARC-Target-URI": "http://coastalcitiesrealty.com/blog/2015/07/18/july-2015-remax-national-housing-report/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c83dc14b-4ce3-49ce-bb7c-c9cb3cb04813>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 41, 42, 203, 204, 484, 485, 527, 528, 530, 531, 722, 723, 744, 745, 750, 751, 759, 760, 762, 763, 784, 785, 807, 808, 816, 817, 830, 831, 942, 950, 951, 965, 966 ], "line_end_idx": [ 41, 42, 203, 204, 484, 485, 527, 528, 530, 531, 722, 723, 744, 745, 750, 751, 759, 760, 762, 763, 784, 785, 807, 808, 816, 817, 830, 831, 942, 950, 951, 965, 966, 1036 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1036, "ccnet_original_nlines": 33, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3300492465496063, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03448275849223137, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13300493359565735, "rps_doc_frac_unique_words": 0.6571428775787354, "rps_doc_mean_word_length": 4.668571472167969, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.516803741455078, "rps_doc_word_count": 175, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03182375058531761, "rps_doc_frac_chars_top_3gram": 0.04895960912108421, "rps_doc_frac_chars_top_4gram": 0.06364749372005463, "rps_doc_books_importance": -70.47856903076172, "rps_doc_books_importance_length_correction": -70.47856903076172, "rps_doc_openwebtext_importance": -49.30862045288086, "rps_doc_openwebtext_importance_length_correction": -36.04194259643555, "rps_doc_wikipedia_importance": -28.40045928955078, "rps_doc_wikipedia_importance_length_correction": -28.40045928955078 }, "fasttext": { "dclm": 0.000017640000805840828, "english": 0.930745542049408, "fineweb_edu_approx": 1.1078689098358154, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.012505710124969482, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "333.797072", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Land use" } }, "secondary": { "code": "333.797", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Land use" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
9,043,894,177,777,590,000
Tuesday, October 22, 2019 Goddess on my Mind! May 19, 2008 by   Filed under Poetry return-of-the-goddess At the centre of our heart She beckons right to us Remember from where you came Out of the earth and elements made To her you will return one day To the soft brown earth to lay So gentle mortals give up the struggle Of trying to work it all out Controlling life between your hands Rather surrender into her Loving embrace For she holds you in her love Her divine plan for your evolution On earth She’s with you each footstep As you walk on your way We are remembering from where we all come The return of the goddess is part of the plan We’ve evolved our technology and intelligent ways We’re able to communicate across the whole globe Now is the time to balance knowledge with intuition Left linear brain and right circulation To find a new way of being together On planet earth With the knowing that we are all connected To Great Mother the earth Who Loves each one of us just the way we are No need to prove or strive for her love She loves us because we are She Born equal and free The condor and the eagle fly once more Together in the sky… Speak Your Mind Tell us what you're thinking... and oh, if you want a pic to show with your comment, go get a gravatar!
{ "url": "http://imageyourworldnow.com/?p=206", "source_domain": "imageyourworldnow.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "33312", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:KLXYZC4CM7GNPYS6EDWUKZUGJM3I3Q7H", "WARC-Concurrent-To": "<urn:uuid:7f3c8119-8658-40d7-8ec9-5a880569c399>", "WARC-Date": "2019-10-22T21:31:07Z", "WARC-IP-Address": "50.28.62.243", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:AM7YSYVGELMPNLWNKJRX3HX32GUIJM7E", "WARC-Record-ID": "<urn:uuid:918679a0-ff6f-41d9-a4dd-fdb942baa4c4>", "WARC-Target-URI": "http://imageyourworldnow.com/?p=206", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e56b5c42-8172-45fe-a7f7-cefdbe6b3416>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-180.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 26, 27, 47, 48, 66, 85, 86, 108, 109, 136, 160, 161, 190, 225, 226, 257, 288, 289, 328, 357, 358, 394, 420, 435, 436, 466, 501, 510, 511, 540, 564, 565, 607, 653, 654, 704, 753, 754, 806, 846, 847, 883, 899, 900, 943, 969, 1014, 1054, 1086, 1106, 1107, 1146, 1167, 1168, 1184, 1185, 1217 ], "line_end_idx": [ 26, 27, 47, 48, 66, 85, 86, 108, 109, 136, 160, 161, 190, 225, 226, 257, 288, 289, 328, 357, 358, 394, 420, 435, 436, 466, 501, 510, 511, 540, 564, 565, 607, 653, 654, 704, 753, 754, 806, 846, 847, 883, 899, 900, 943, 969, 1014, 1054, 1086, 1106, 1107, 1146, 1167, 1168, 1184, 1185, 1217, 1288 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1288, "ccnet_original_nlines": 57, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.48120301961898804, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0.03448275849223137, "rps_doc_frac_no_alph_words": 0.07518797367811203, "rps_doc_frac_unique_words": 0.6090534925460815, "rps_doc_mean_word_length": 4.164608955383301, "rps_doc_num_sentences": 3, "rps_doc_symbol_to_word_ratio": 0.007518799975514412, "rps_doc_unigram_entropy": 4.680720806121826, "rps_doc_word_count": 243, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.019762849435210228, "rps_doc_frac_chars_top_3gram": 0.015810279175639153, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -112.14460754394531, "rps_doc_books_importance_length_correction": -112.14460754394531, "rps_doc_openwebtext_importance": -75.35655212402344, "rps_doc_openwebtext_importance_length_correction": -75.35655212402344, "rps_doc_wikipedia_importance": -61.754886627197266, "rps_doc_wikipedia_importance_length_correction": -61.754886627197266 }, "fasttext": { "dclm": 0.003974500112235546, "english": 0.9068858027458191, "fineweb_edu_approx": 1.2362122535705566, "eai_general_math": 0.0045731100253760815, "eai_open_web_math": 0.19624727964401245, "eai_web_code": 0.000008940000043367036 } }
{ "free_decimal_correspondence": { "primary": { "code": "811.00", "labels": { "level_1": "Literature", "level_2": "American literature", "level_3": "American poetry" } }, "secondary": { "code": "299.24", "labels": { "level_1": "Religion", "level_2": "Religions", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "4", "label": "Metacognitive" } }, "document_type_v1": { "primary": { "code": "13", "label": "Literary/Creative" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "7", "label": "Creative Writing" }, "secondary": { "code": "16", "label": "Personal Blog" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-185,682,973,314,424,400
Forums & User Community Most Active Users This Week National Leader Boards Online Now Online Advisors Community Update Most Active Users Last Month #Science60 Contributors Recent Posts The new teacher in a group a veteran teachers | Posted in New Teachers Great advice, Gabe. I totally agree. If we make a mistake when we are teaching a concept that is new to us, it is a teachable moment! Ask students to give input on what went wrong. Ask how they think they can change some variables to have the experiment work correctly? Most scientists do hundreds of trials before getting the results they hoped for. We don't have that same luxury of time and materials in school but there are times we can go back and have a do-over.  Pamela Dupre Implementing STEM in my classroom | Posted in STEM Leslie, I believe STEM is best implemented by allowing creativity, expression, and collaboration in the classroom. In all grades, but especially in the lower grades, I have noticed that students often learn best from each other. I would begin implementing STEM by designing activities around group work and/or students teaching each other. In math, you can have students share how they got their answers step by step so that others can see and hear their peer's thinking and strategizing. In science, a great idea is having students work on group projects to "research" about the weather, water, and other Kindergarten TEKS. At the end of the week or lesson, the groups can share their findings with the class. I hope my ideas can help you implement STEM education in your Kindergarten classroom! Kelsey Nason Inquiry-Based Learning in Elementary School | Posted in Elementary Science I believe that inquiry based learning is also extremely beneficial for students especially at the lower elementary grades. Like mentioned by others, this type of learning helps the students think for themselves. There are also different types of inquiry based learning, depending on how much direction you would like to give the students. If you are going to completely hand over the reins to the students this is called an open inquiry. In this inquiry the students will be in charge of coming up with a question/problem, procedure, and results/ analysis. This would be a great way to get the students to think creatively and problem solve. However, for the younger students it could be hard for them to come up with everything on their own. So, for this age group I would recommend a structured inquiry. For this, you as the teacher would come up with the question/problem, and the procedure for everyone to do. Then the students would have to analyze and reason as to why these things occurred. In my science methods class we did an experiment called "dancing raisins for our structured inquiry. We were given the question of, "Why do raisins, when added to a cup of sparkling water float to the top of the cup?" We were also given the procedure of putting five raisins in two cups with the same amount of liquid, one with sparkling water and one with regular water. Then it was our job to analyze why it was that the raisins floated in the sparkling water. I think that this would be a great idea of a structured inquiry for younger elementary grades. You can structure it, but still gets them thinking! Kennedy Carber Online Now (2) Sylvia Barnes, Alyssa Gaona Forum content is subject to the same rules as NSTA List Serves. Rules and disclaimers
{ "url": "https://learningcenter.nsta.org/discuss/", "source_domain": "learningcenter.nsta.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "55295", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:FLPO5KEFHHJWQ4OHDEGNCDHMPZVNVBF7", "WARC-Concurrent-To": "<urn:uuid:ce742164-d21e-4a2e-90a3-319cf2b5820f>", "WARC-Date": "2019-10-15T09:05:11Z", "WARC-IP-Address": "40.143.91.5", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:REMLNFNJBIYH35QU2CHAQU33IS5AXOYT", "WARC-Record-ID": "<urn:uuid:1ca9b03f-458b-412a-b866-242c09182ed4>", "WARC-Target-URI": "https://learningcenter.nsta.org/discuss/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cd90314f-22ef-481b-9f4d-ad902139dad8>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-72.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 24, 25, 53, 54, 121, 122, 151, 175, 176, 189, 190, 261, 262, 732, 733, 734, 747, 748, 799, 800, 1597, 1598, 1599, 1612, 1613, 1688, 1689, 3297, 3298, 3299, 3314, 3315, 3330, 3358, 3359 ], "line_end_idx": [ 24, 25, 53, 54, 121, 122, 151, 175, 176, 189, 190, 261, 262, 732, 733, 734, 747, 748, 799, 800, 1597, 1598, 1599, 1612, 1613, 1688, 1689, 3297, 3298, 3299, 3314, 3315, 3330, 3358, 3359, 3444 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3444, "ccnet_original_nlines": 35, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4469357132911682, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.022421520203351974, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11360239237546921, "rps_doc_frac_unique_words": 0.4514480531215668, "rps_doc_mean_word_length": 4.700170516967773, "rps_doc_num_sentences": 32, "rps_doc_symbol_to_word_ratio": 0.001494770054705441, "rps_doc_unigram_entropy": 5.13075065612793, "rps_doc_word_count": 587, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.012323309667408466, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02392170950770378, "rps_doc_frac_chars_top_3gram": 0.010873500257730484, "rps_doc_frac_chars_top_4gram": 0.008698799647390842, "rps_doc_books_importance": -276.290283203125, "rps_doc_books_importance_length_correction": -276.290283203125, "rps_doc_openwebtext_importance": -146.89125061035156, "rps_doc_openwebtext_importance_length_correction": -146.89125061035156, "rps_doc_wikipedia_importance": -97.62723541259766, "rps_doc_wikipedia_importance_length_correction": -97.62723541259766 }, "fasttext": { "dclm": 0.031572699546813965, "english": 0.9735742807388306, "fineweb_edu_approx": 2.7781145572662354, "eai_general_math": 0.3571525812149048, "eai_open_web_math": 0.3316763639450073, "eai_web_code": 0.005996169988065958 } }
{ "free_decimal_correspondence": { "primary": { "code": "372.3", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Elementary and Kindergarten" } }, "secondary": { "code": "372.7", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Elementary and Kindergarten" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
f0efa13f8f25d2994d4b9f7294f5230e
7,719,254,469,854,276,000
78° Baton Rouge, Louisiana 7 Day Forecast Follow our weather team on social media Senate to take up $1.1T bill to keep govt running 4 years 10 months 1 week ago Friday, December 12 2014 Dec 12, 2014 December 12, 2014 1:19 AM December 12, 2014 in News Source: Associated Press By: Hunter Robinson WASHINGTON, D.C. - It's now up to the Senate to pass a huge $1.1 trillion spending bill to keep the government running, but not before a battle between old school veterans and new breed freshmen such as tea partier Ted Cruz and Elizabeth Warren, a liberal with a national following. The smart money is on old school types such as Democratic leader Harry Reid and GOP leader Mitch McConnell. The measure passed the House after a day of drama Thursday but by a relatively comfortable 219-206. The vote came after GOP leaders sent the House into a seven-hour recess to give the White House time to lobby Democrats angry that the measure weakens rules on the financial industry and allows wealthy donors to pour hundreds of thousands of dollars into political parties.   Related Stories More News Desktop News Click to open Continuous News in a sidebar that updates in real-time. Radar 7 Days
{ "url": "https://www.wbrz.com/news/senate-to-take-up-1-1t-bill-to-keep-govt-running/", "source_domain": "www.wbrz.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "119951", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:DBOOC46CDBASCKRNQ77HSV4FU75XZD2T", "WARC-Concurrent-To": "<urn:uuid:a1a942fc-594b-47db-aa23-00feba1d9117>", "WARC-Date": "2019-10-21T02:37:35Z", "WARC-IP-Address": "99.84.181.63", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:JQVFDLSCSD3O5Y25GGIZG5VEWOTEUBY7", "WARC-Record-ID": "<urn:uuid:43b8f60d-7b04-49fe-9621-80ebf87d8770>", "WARC-Target-URI": "https://www.wbrz.com/news/senate-to-take-up-1-1t-bill-to-keep-govt-running/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:362325c0-6453-4209-b8b5-9a21e8e89e74>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-235.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 4, 27, 42, 82, 83, 133, 134, 253, 278, 298, 299, 582, 583, 691, 692, 792, 793, 1067, 1068, 1070, 1071, 1087, 1088, 1098, 1099, 1112, 1113, 1183, 1189 ], "line_end_idx": [ 4, 27, 42, 82, 83, 133, 134, 253, 278, 298, 299, 582, 583, 691, 692, 792, 793, 1067, 1068, 1070, 1071, 1087, 1088, 1098, 1099, 1112, 1113, 1183, 1189, 1195 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1195, "ccnet_original_nlines": 29, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2975206673145294, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.028925620019435883, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.20247933268547058, "rps_doc_frac_unique_words": 0.6844660043716431, "rps_doc_mean_word_length": 4.6067962646484375, "rps_doc_num_sentences": 10, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.723818302154541, "rps_doc_word_count": 206, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.025289779528975487, "rps_doc_frac_chars_top_3gram": 0.044257111847400665, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -102.99362182617188, "rps_doc_books_importance_length_correction": -102.99362182617188, "rps_doc_openwebtext_importance": -44.7890625, "rps_doc_openwebtext_importance_length_correction": -44.77874755859375, "rps_doc_wikipedia_importance": -23.646329879760742, "rps_doc_wikipedia_importance_length_correction": -23.646329879760742 }, "fasttext": { "dclm": 0.0013385399943217635, "english": 0.9393837451934814, "fineweb_edu_approx": 1.1796646118164062, "eai_general_math": 0.00001739999970595818, "eai_open_web_math": 0.026079539209604263, "eai_web_code": -0.000005719999990105862 } }
{ "free_decimal_correspondence": { "primary": { "code": "352.4", "labels": { "level_1": "Social sciences", "level_2": "Public administration and Military art and science", "level_3": "Local government" } }, "secondary": { "code": "328.730973", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "Legislative bodies" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "5", "label": "Evaluate" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
4,365,008,024,710,050,000
Sports Briefing | Colleges Diggins Carries Irish, Spoiling Lady Vols’ Night Skylar Diggins had one of the best performances of her brilliant career. Diggins, a senior guard, scored a career-high 33 points as No. 2 Notre Dame beat No. 9 Tennessee, 77-67, for its 14th straight victory. Diggins’s big performance spoiled Tennessee’s celebration of the former Lady Vols coach Pat Summitt, who had a banner raised in her honor at Thompson-Boling Arena before the game. ¶ The Big East Conference wants to add a member and may sign a television package that includes multiple networks, Commissioner Mike Aresco said, adding that the league wanted to keep its name as it rebranded. Aresco said the league no longer had plans to expand farther west than Texas. A version of this article appears in print on , Section B, Page 12 of the New York edition with the headline: Diggins Carries Irish, Spoiling Lady Vols’ Night. Order Reprints | Today’s Paper | Subscribe
{ "url": "https://www.nytimes.com/2013/01/29/sports/ncaabasketball/diggins-carries-irish-spoiling-lady-vols-night.html", "source_domain": "www.nytimes.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "222834", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:QZWIMG5ZM3FBYZ7JTYF6WX3HE2VU6L5J", "WARC-Concurrent-To": "<urn:uuid:10f55f83-25c7-474d-a1e2-9cf43f506ad4>", "WARC-Date": "2019-10-20T12:39:50Z", "WARC-IP-Address": "151.101.201.164", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:35EVJZDT4BDDL73XFHCVIX2GSC3OHJQK", "WARC-Record-ID": "<urn:uuid:d1252afa-12f2-4614-9e56-217335ad556d>", "WARC-Target-URI": "https://www.nytimes.com/2013/01/29/sports/ncaabasketball/diggins-carries-irish-spoiling-lady-vols-night.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:9a7f8a58-64e7-47b1-bc80-654a6dc8776c>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-179.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 27, 28, 77, 78, 467, 468, 756, 757 ], "line_end_idx": [ 27, 28, 77, 78, 467, 468, 756, 757, 959 ] }
{ "red_pajama_v2": { "ccnet_original_length": 959, "ccnet_original_nlines": 8, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2886597812175751, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.010309279896318913, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19587628543376923, "rps_doc_frac_unique_words": 0.7388535141944885, "rps_doc_mean_word_length": 4.8980889320373535, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.587647438049316, "rps_doc_word_count": 157, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.10663198679685593, "rps_doc_frac_chars_dupe_6grams": 0.10663198679685593, "rps_doc_frac_chars_dupe_7grams": 0.10663198679685593, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.019505849108099937, "rps_doc_frac_chars_top_3gram": 0.04941482096910477, "rps_doc_frac_chars_top_4gram": 0.07022106647491455, "rps_doc_books_importance": -95.38188934326172, "rps_doc_books_importance_length_correction": -95.38188934326172, "rps_doc_openwebtext_importance": -58.79115676879883, "rps_doc_openwebtext_importance_length_correction": -45.44594192504883, "rps_doc_wikipedia_importance": -38.358577728271484, "rps_doc_wikipedia_importance_length_correction": -38.358577728271484 }, "fasttext": { "dclm": 0.0025456000585108995, "english": 0.9472752809524536, "fineweb_edu_approx": 0.9688892960548401, "eai_general_math": 0.00011324999650241807, "eai_open_web_math": 0.012095989659428596, "eai_web_code": 0.0008369699935428798 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "373.122", "labels": { "level_1": "Social sciences", "level_2": "Education", "level_3": "Education, Secondary and High schools" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,374,123,081,811,609,600
8 Reasons an Apple Credit Card May Be Right For You 8 Reasons an Apple Credit Card May Be Right For You Thinking of getting an Apple Card? Find out if it's right for you: 1. Daily Cash One of the most exciting reasons to get an Apple Card is the Daily Cash feature. This is cash that you get back whenever you make any purchase. The cool part-you get that cash instantly. Apple offers 3% back on any Apple purchases, as well as Uber, Uber Eats, Walgreens, and Duane Reade. Get 2% back on literally everything else, as long as you’re paying with Apple Pay. Apple even offers 1% back on apps and websites that don’t yet offer Apple Pay. That makes racking up cash pretty easy!   2. Weekly & Monthly Summaries Apple helps you to see exactly how much you’re spending and where, all from your phone. All your purchases get organized into different categories such as Shopping, Entertainment, and Food & Drinks and are then displayed in an easy to read color coded bar chart for you to determine exactly where all your spending is coming from day to day and week to week.   3. Interest and Balances Made Simple Apple Wallet displays your balance in a simple to read format. They even provide balance reminders when the due date is coming up. The due date, by the way, is always set to the end of the month, so it’s easy to keep track of! Additionally, if you don’t want to pay your whole balance that month, Apple will help you calculate in real time exactly how much interest it will cost you over time if you don’t. This way you can make an informed decision.    4. No fees It’s true! Apple Card has no fees. No late fees, no foreign-transaction fees, no annual fees, etc. None! If you miss a payment, you just continue to accrue regular interest.    5. Immediate Fraud Protection Apple makes Fraud detection easy by sending you a notification on your phone every time a purchase is made. If it’s a purchase you didn’t make, all you have to do is click a button to let Apple know and they take care of the rest. The problem and liability is off your hands! Apple’s customer support is 24/7 and available through texting, so you know your questions can be answered quickly.   6. Security One of the most interesting features of the Apple Card is that the actual card they send you is a white titanium card with absolutely no information on it except your name. No credit card number, no expiration date, and no CVV. This makes it harder for people to steal your information. All this information can be found in your Apple Wallet instead. Every purchase also requires the authentication of either Face ID or Touch ID, making it so only you or approved users can make purchases. Additionally, you can freeze your card right in Apple Wallet if it does get stolen, and even order a new card right in the app. Apple also ensures your total privacy by promising they have no access to any information about your purchases, your balance, where you made the purchase, or anything else.   7. Apple Pay Integration   We’ve already touched on this somewhat in other parts of this post, but Apple Card is incredibly convenient for iPhone users because it’s all right in the Apple Wallet app. No confusion. Everything can be done from the app, from applying for the card to paying your balance.    8. Fast application You can apply for the Apple Card today online or in the Apple Wallet app and can get approved in just minutes, it’s that easy! Apple has also made it a point to make sure that even people with lower credit scores are getting accepted. Basically, anyone at or around 670 or higher will likely be approved. Next article Apple's September iPhone Event 2019
{ "url": "https://ioutlet.net/blogs/news/8-reasons-an-apple-credit-card-may-be-right-for-you", "source_domain": "ioutlet.net", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "96080", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:YSQPKBRE5QPVFKREPKDQFT7OHYNYROCC", "WARC-Concurrent-To": "<urn:uuid:f2d449b2-6131-447f-a566-d18e5f10529d>", "WARC-Date": "2019-10-23T00:07:26Z", "WARC-IP-Address": "23.227.38.32", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:WY2T5FULNTG35SHHBLA4YA5PDBL3IG4J", "WARC-Record-ID": "<urn:uuid:0f22dd79-2b3e-48c0-990f-55d20cea286c>", "WARC-Target-URI": "https://ioutlet.net/blogs/news/8-reasons-an-apple-credit-card-may-be-right-for-you", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1c7ea6ec-817d-4fce-aeee-e752418326a8>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-144.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 52, 53, 105, 106, 173, 174, 188, 189, 679, 680, 682, 683, 713, 714, 1073, 1074, 1076, 1077, 1114, 1115, 1567, 1568, 1570, 1571, 1582, 1583, 1758, 1759, 1761, 1762, 1792, 1793, 2185, 2186, 2188, 2189, 2201, 2202, 2692, 2993, 2994, 2996, 2997, 3022, 3023, 3025, 3026, 3302, 3303, 3305, 3306, 3326, 3327, 3632, 3633 ], "line_end_idx": [ 52, 53, 105, 106, 173, 174, 188, 189, 679, 680, 682, 683, 713, 714, 1073, 1074, 1076, 1077, 1114, 1115, 1567, 1568, 1570, 1571, 1582, 1583, 1758, 1759, 1761, 1762, 1792, 1793, 2185, 2186, 2188, 2189, 2201, 2202, 2692, 2993, 2994, 2996, 2997, 3022, 3023, 3025, 3026, 3302, 3303, 3305, 3306, 3326, 3327, 3632, 3633, 3681 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3681, "ccnet_original_nlines": 55, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4283871054649353, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0038709701038897038, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.15096774697303772, "rps_doc_frac_unique_words": 0.42617958784103394, "rps_doc_mean_word_length": 4.398782253265381, "rps_doc_num_sentences": 46, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.128368377685547, "rps_doc_word_count": 657, "rps_doc_frac_chars_dupe_10grams": 0.028373699635267258, "rps_doc_frac_chars_dupe_5grams": 0.041522491723299026, "rps_doc_frac_chars_dupe_6grams": 0.028373699635267258, "rps_doc_frac_chars_dupe_7grams": 0.028373699635267258, "rps_doc_frac_chars_dupe_8grams": 0.028373699635267258, "rps_doc_frac_chars_dupe_9grams": 0.028373699635267258, "rps_doc_frac_chars_top_2gram": 0.018685119226574898, "rps_doc_frac_chars_top_3gram": 0.011418689973652363, "rps_doc_frac_chars_top_4gram": 0.010380620136857033, "rps_doc_books_importance": -441.97314453125, "rps_doc_books_importance_length_correction": -441.97314453125, "rps_doc_openwebtext_importance": -146.48077392578125, "rps_doc_openwebtext_importance_length_correction": -146.48077392578125, "rps_doc_wikipedia_importance": -206.569580078125, "rps_doc_wikipedia_importance_length_correction": -206.569580078125 }, "fasttext": { "dclm": 0.05820738896727562, "english": 0.9227001070976257, "fineweb_edu_approx": 1.0519837141036987, "eai_general_math": 0.0008868000004440546, "eai_open_web_math": 0.19329124689102173, "eai_web_code": 0.00038737000431865454 } }
{ "free_decimal_correspondence": { "primary": { "code": "332.0246", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Finance" } }, "secondary": { "code": "658.85", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "12", "label": "Listicle" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,419,348,784,289,421,000
Malindo Air partners All-Nippon In a joint statement, the companies said the collaboration was to facilitate and give convenience to their customers who will now be able to check-in at the KL Ekspres Departure Hall. KUALA LUMPUR: Malindo Air, CAPA 2016 Asia Pacific Regional Airline of the Year, has teamed up with All Nippon Airways (ANA), Japan’s largest and only 5-Star airline, to offer passengers seamless travel and greater connectivity when travelling between ASEAN and over 200 routes on ANA’s network. ANA is the fifth addition to Malindo Air’s interline partners, after Turkish Airline, Qatar Airways, Etihad Airways and Oman Air. The new bilateral interline agreement allows seamless travel with the convenience of a single reservation across both airlines’ network. The partnership allows ANA passengers to tap into Malindo Air’s growing regional network out of Kuala Lumpur International Airport (KLIA). Malindo Air currently serves over 46 cities across 16 countries, including 13 major airports in Malaysia. Malindo Air CEO Chandran Rama Muthy said, “We are delighted to partner with ANA, one of the world’s leading airlines for its excellence in hospitality. It is indeed crucial for us, as a premium airline, to expand our route network and bring our passengers beyond KLIA with great airline partners. With ANA, our passengers will be connected to more than 200 global and domestic destinations through ANA’s hubs in Narita & Haneda.” “Through our interline partnership, we are connecting travelers from a larger network to visit Malaysia and enjoy the renowned Malaysian hospitality through the diversified and warm culture, as well as our eco-tourism. At the same time, this will also increase the number of transit passengers at KLIA. Our extensive route network provides better options for passengers who travel for both the business and leisure segments,” Chandran added. Airlines     Across The Star Online Air Pollutant Index Highest API Readings Select State and Location to view the latest API reading Source: Department of Environment, Malaysia
{ "url": "https://www.thestar.com.my/business/business-news/2017/08/21/malindo-air-partners-all-nippon/", "source_domain": "www.thestar.com.my", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "251701", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:USHFER3SE46P2PQXIA22Q7GS652SXAUE", "WARC-Concurrent-To": "<urn:uuid:256b1566-120e-4062-a513-122825b93919>", "WARC-Date": "2019-10-17T14:19:19Z", "WARC-IP-Address": "99.84.216.32", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:S4AWJTJQ6T47FTB7LBA3G63NQ5ALL6SX", "WARC-Record-ID": "<urn:uuid:33681dc6-e587-4d8b-8c3c-dde36f80cb01>", "WARC-Target-URI": "https://www.thestar.com.my/business/business-news/2017/08/21/malindo-air-partners-all-nippon/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:3823fa50-8a92-4f99-865e-1e80c3d35a6d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-81.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 32, 33, 34, 218, 219, 514, 515, 782, 783, 1028, 1029, 1459, 1460, 1902, 1903, 1912, 1913, 1917, 1918, 1941, 1942, 1943, 1963, 1964, 1985, 1986, 2047, 2048 ], "line_end_idx": [ 32, 33, 34, 218, 219, 514, 515, 782, 783, 1028, 1029, 1459, 1460, 1902, 1903, 1912, 1913, 1917, 1918, 1941, 1942, 1943, 1963, 1964, 1985, 1986, 2047, 2048, 2095 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2095, "ccnet_original_nlines": 28, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.33509233593940735, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04749339818954468, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14775726199150085, "rps_doc_frac_unique_words": 0.596875011920929, "rps_doc_mean_word_length": 5.331250190734863, "rps_doc_num_sentences": 13, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.933199882507324, "rps_doc_word_count": 320, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.023446660488843918, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -172.5360565185547, "rps_doc_books_importance_length_correction": -172.5360565185547, "rps_doc_openwebtext_importance": -96.37163543701172, "rps_doc_openwebtext_importance_length_correction": -96.37163543701172, "rps_doc_wikipedia_importance": -49.632205963134766, "rps_doc_wikipedia_importance_length_correction": -49.632205963134766 }, "fasttext": { "dclm": 0.00055772002087906, "english": 0.9131815433502197, "fineweb_edu_approx": 1.11397385597229, "eai_general_math": 0.0006116600125096738, "eai_open_web_math": 0.08994411677122116, "eai_web_code": 0.00009965999925043434 } }
{ "free_decimal_correspondence": { "primary": { "code": "388.066", "labels": { "level_1": "Social sciences", "level_2": "Commerce and Communication and traffic", "level_3": "Local transit" } }, "secondary": { "code": "388.068", "labels": { "level_1": "Social sciences", "level_2": "Commerce and Communication and traffic", "level_3": "Local transit" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-7,536,906,162,557,482,000
Top 10 Expired Domains for Sale – PBN Finder how find expired domains with traffic free Expired Domains are nothing but the dropped or deleted domains. These domains are not renewed by their owners because of lack of attention or they moved to different projects they don’t need these domains anymore. So these brokers just wait for expire their domains or place for auction on different expired domain service providers. These domains support high authority backlink to our money website. You can just redirect these domains to point your site which then helps your money site to increase its authority. These domains expire but their backlinks are available. Some SEO’s knows to use this strategy to create Private Blog Network which combines different expired domains with high authority. These PBNs are created to help your site to rank in Google search engine. In Today’s Marketplace, there are lots of expired domain crawlers. Who gives different metrics for analyzing domains. There are different metrics available like Domain Authority, Page Authority by Moz., Traffic Flow, Citation Flow by Majestic, SEMRush Rank and much more.   *1* DomCop: Get Expired Domains in a Minute DomCop is an expired domain search tool. It is a real time saver as everything finds in one place. It efficiently identifies domains which you can use for your money site. By using DomCop run expired domain finder PHP script and search expired domains with traffic list with high PR. cheap best place to buy expired domains list DomCop provides variety of features: • Majestics, Moz, Estibot Metrics paid services are available. • Provides more than 10 million expired domains. • You can crawl more than 400 websites for each job. • Gives 30 days free trial period software. No purchase is done here the domains are re-registered with registrar or buying through auction.   *2* Register Compass: Lookout for high Metrics Expired Domains Register Compass is a site that deals with reselling of expired domains also provide domain auction having generic backlinks. purchasing expired domain name It analyzes domains using metrics like Moz PA and DA, SEMRush Metrics, MajesticSEo trust flow, DMOZ listing, Alexa Rank, Moz rank and google page rank. Register Compass provides features like: • Analyze and monitor your own domain. • Monitors existing domains for expiry time period. • Short 3 letter domains. Provides customer support for domain availability alerts and notifications. No free trial is available for it.   *3* FreshDrop: It’s an Expired Domain Crawler FreshDrop members once acquire domains they can make a profit through Build, Redirect, park and cell model. They don’t have monthly costs. You also find popular expired domain names with FreshDrop. Each domain undergoes through different analysis from Google, Yahoo, Alexa, MajesticSEO, DMOZ, Compete, Whois, Worldtracker, and Archive.org. expiring deleted domains list Also gives 7-day risk-free trial and 60-day money back guarantee offer. FreshDrop has growing product sales gravity. It having great User Interface which is very helpful for customers for searching any domain. You can apply different filters very easily. Using these filters you can get your required expired domains with lots of metrics. Many of private blog network for sale done with FreshDrop.   *4* Domain Hunter Gatherer: Tool to search Expired Domains Domain Hunter Gatherergives trail plan with reasonable rate. Also, a portable version that needs no installation accessed from anywhere. To get high niche top expired domain names use Domain Hunter Gatherer tools. cheap expired domain traffic DHG provides Automated SEO metric results like Majestic, Moz, Social signals which are free. If you buying this software you can get following different tools: • Expired domain website Crawler • Expired domain auction Scraper • Expired web 2.0 Finder • Expired domain Spam Checker • Expired domain keyword Crawler • Reverse crawling scraper It provides a recovery tool that restores a snapshot of any website archived in Wayback Machine. You need to buy proxies for this software. Most of the deleted domain search free with PR only on Domain Hunter Gatherer service platform by purchase.   *5* PBN Lab: Purchase PBN Lab Plans Now PBN Lab is Cloud based Expired domain search website. It provides metrics like Majestic citation flow, trust flow, Topical trust flow, and backlink counts, referring IP, subnets, and domain. Free Lancers use PBN Lab to find Expired Domains for sale. best way to buy expired domain authority PBN Lab finds relevant domains by using search results not using generic keyword search or the scrap methods. It requires using your own majestic APIS because it is found only for some of the sites. There are no statistical data available for specific crawl sites.   *6* Domain Reanimator: Analyzer for Expired Domains Domain Reanimator supports the following feature: • Moz Metrics, Majestic Metrics • Spam Filter, Spam algorithm • Wayback Machine Reanimation • Restores Websites from archive.org You can go through Domain Reanimator for unlimited crawl minutes and Multiple TLDS. Gives the money back Guarantee. No trial offer is available. Provides ways to scraps are keyword targeting, large seed list, location targeting, and reverse crawling.   *7* SnapNames: Find Biggest Source of Domains It’s a Backorder Domain marketplace. Also specialized in expiring domains. SnapNames cost is less than NameJet hence reasonable for you. You can crawl for expired domains as it gives easy interface and smooth search. domain expired how to get it back SnapNames.com was founded on 2000. Now acquired by Oversee.net in 2007. SnapaNames.com is considered by many as one of the top expired domain platforms. It is the biggest source of finding expired and deleted domains on today marketplace. It having over 10 million domains for auction. In SnapNames services receive expired domain checker script from searching expired domain directory from the database.   *8* Dropping.com: Locate and Acquire Quality Domains Dropping.com a new expired domain search service launched by Estobot.com having a big inventory of expired domains.The main advantage is this site primarily focuses on customer classification. A wide selection of filter option gives you the best domain with backlinks. where to find expired domain names Dropping.com is the only service that provides advanced data sources like, unique domain backlink report, PageRank, Wayback crawler, Zone files access. It has expiring domains from all major registrars, marketplaces and backorder services. Actually, you need money to get expired domain kaufen. With the name of Dropping you can get high quality dropped domains with page rank checker.   *9* ExpiredDomains.net: recordsrecentlyFree Crawl Expired domains It is a free expired domain year records recently expired domains if you want to check for 2-3 years ago expired domains and expired old domain names you have to check on another website. ExpiredDomain.net gives full expired domain info before buying. list of expired domain names You can buy and re-register these domains.It supports 345 TLDs with free sign up. ExpiredDomains.net provides metrics like PageRank, Alexa Traffic Rank, the timestamp when it was dropped, DNS availability of the domain and a link to back order it and more. If you are a new in the market and creating your website. You can go with this tool for crawl different expired domains with no time. Most of the crowd use expired domain xenu to find high-level niche sites. Conclusion: To create PBN first step is to find Expired Domains. For that, you need to check expired domains history. To find expired domains you have to go through one of the expired domain service providers. There are very few services who provide expired domain buying guide. If you are new and want to increase the authority of your money site in very less time period. Grab this opportunity now this is your time to think and purchase an expired domain and any service. Let us know which service you are choosing quality expired domains with trust flow. I hope this article will help you to solve many of your questions about price and services they provide. With the help of this, you can find out the best place to buy expired domains with targeted traffic site. Leave your comment 19 + 2 =
{ "url": "http://www.greentseo.com/best-expired-money-domain-finder-pbn-link-juice/", "source_domain": "www.greentseo.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "32704", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:RA4JVUHCG7BIYMGFQSHEQOUM5LBDTNFK", "WARC-Concurrent-To": "<urn:uuid:951422c2-8e39-4e92-85e1-eff41f559cfd>", "WARC-Date": "2019-10-18T06:26:45Z", "WARC-IP-Address": "5.199.130.41", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:XCIQWSRKZONHTGT6SMIM5ZA3VTWOR3ES", "WARC-Record-ID": "<urn:uuid:73ed7189-5f7f-49b2-9da5-3fd28b02fafa>", "WARC-Target-URI": "http://www.greentseo.com/best-expired-money-domain-finder-pbn-link-juice/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6d9e8072-a5f8-4251-a4b8-a974e5f427ba>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 45, 46, 89, 90, 304, 305, 425, 426, 665, 666, 871, 872, 1144, 1145, 1147, 1148, 1192, 1193, 1477, 1478, 1523, 1524, 1561, 1562, 1627, 1678, 1733, 1779, 1780, 1877, 1878, 1880, 1881, 1944, 1945, 2071, 2072, 2103, 2104, 2256, 2257, 2298, 2299, 2340, 2394, 2422, 2423, 2499, 2500, 2535, 2536, 2538, 2539, 2585, 2586, 2784, 2785, 2927, 2928, 2958, 2959, 3076, 3077, 3358, 3359, 3361, 3362, 3421, 3422, 3636, 3637, 3666, 3667, 3760, 3761, 3828, 3829, 3864, 3899, 3926, 3958, 3993, 4022, 4023, 4271, 4272, 4274, 4275, 4315, 4316, 4370, 4371, 4567, 4568, 4609, 4610, 4720, 4721, 4876, 4877, 4879, 4880, 4932, 4933, 4983, 4984, 5018, 5050, 5082, 5121, 5122, 5206, 5207, 5268, 5269, 5375, 5376, 5378, 5379, 5425, 5426, 5563, 5564, 5644, 5645, 5679, 5680, 5833, 5834, 6086, 6087, 6089, 6090, 6143, 6144, 6413, 6414, 6449, 6450, 6602, 6603, 6837, 6838, 6840, 6841, 6907, 6908, 7160, 7161, 7190, 7191, 7273, 7274, 7449, 7450, 7658, 7659, 7671, 7672, 7778, 7779, 7940, 7941, 8137, 8138, 8327, 8328, 8434, 8435, 8454, 8455 ], "line_end_idx": [ 45, 46, 89, 90, 304, 305, 425, 426, 665, 666, 871, 872, 1144, 1145, 1147, 1148, 1192, 1193, 1477, 1478, 1523, 1524, 1561, 1562, 1627, 1678, 1733, 1779, 1780, 1877, 1878, 1880, 1881, 1944, 1945, 2071, 2072, 2103, 2104, 2256, 2257, 2298, 2299, 2340, 2394, 2422, 2423, 2499, 2500, 2535, 2536, 2538, 2539, 2585, 2586, 2784, 2785, 2927, 2928, 2958, 2959, 3076, 3077, 3358, 3359, 3361, 3362, 3421, 3422, 3636, 3637, 3666, 3667, 3760, 3761, 3828, 3829, 3864, 3899, 3926, 3958, 3993, 4022, 4023, 4271, 4272, 4274, 4275, 4315, 4316, 4370, 4371, 4567, 4568, 4609, 4610, 4720, 4721, 4876, 4877, 4879, 4880, 4932, 4933, 4983, 4984, 5018, 5050, 5082, 5121, 5122, 5206, 5207, 5268, 5269, 5375, 5376, 5378, 5379, 5425, 5426, 5563, 5564, 5644, 5645, 5679, 5680, 5833, 5834, 6086, 6087, 6089, 6090, 6143, 6144, 6413, 6414, 6449, 6450, 6602, 6603, 6837, 6838, 6840, 6841, 6907, 6908, 7160, 7161, 7190, 7191, 7273, 7274, 7449, 7450, 7658, 7659, 7671, 7672, 7778, 7779, 7940, 7941, 8137, 8138, 8327, 8328, 8434, 8435, 8454, 8455, 8463 ] }
{ "red_pajama_v2": { "ccnet_original_length": 8463, "ccnet_original_nlines": 171, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3118970990180969, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.014790999703109264, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.15369774401187897, "rps_doc_frac_unique_words": 0.33933934569358826, "rps_doc_mean_word_length": 5.111861705780029, "rps_doc_num_sentences": 103, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.4210333824157715, "rps_doc_word_count": 1332, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.01498016994446516, "rps_doc_frac_chars_dupe_6grams": 0.008224410004913807, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05345866084098816, "rps_doc_frac_chars_top_3gram": 0.018504919484257698, "rps_doc_frac_chars_top_4gram": 0.008811869658529758, "rps_doc_books_importance": -626.0297241210938, "rps_doc_books_importance_length_correction": -626.0297241210938, "rps_doc_openwebtext_importance": -431.0185546875, "rps_doc_openwebtext_importance_length_correction": -431.0185546875, "rps_doc_wikipedia_importance": -282.55828857421875, "rps_doc_wikipedia_importance_length_correction": -282.55828857421875 }, "fasttext": { "dclm": 0.002291860058903694, "english": 0.9007450938224792, "fineweb_edu_approx": 1.158203125, "eai_general_math": 0.005023899953812361, "eai_open_web_math": 0.05612349882721901, "eai_web_code": 0.00047897998592816293 } }
{ "free_decimal_correspondence": { "primary": { "code": "004.67", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "12", "label": "Listicle" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,507,568,275,749,265,000
The Alaketou of Ketou, Republic Of Bénin, Oba Alayeluwa Alaro Alade-Ife. The Alaketou of Ketou, Republic Of Bénin, Oba Alayeluwa Alaro Alade-Ife. Bènin makes Yoruba an official language The kingdoms of three of Oduduwa’s grandsons Sabe, Ketu and Popo were cordoned off by the French into what is now known by its colonial name , the Republic of Bènin. Nevertheless, the bonds between the Yoruba of Bènin and Nigeria remain unbroken, and this has been proved once again. According to the Ambassador to Nigeria in Bènin , Dr Lawrence Obisakin, “ If not for the colonial separation, where you are standing now Cotonou use to be part of Oyo Empire and the capital was Oyo-Ile up to the shores of Ghana”   Read about why Benin Republic recognised the Yoruba language as second official language in the country     EDIT 05/04/2016 : the image for the Alaketou of Ketou was  changed   Comments comments Similar Articles 5 thoughts on “Bènin makes Yoruba an official language 1. True. I hope the pride in our culture continues to grow throughout Yorubaland. At one point it seemed youngsters were starting to feel ashamed 1. This is interesting. And you know what?, people of same Yoruba origin are despising each other. One policeman made Oba in Yoruba Land is claiming he is not from Yoruba again. What an irony Say what you feel This site uses Akismet to reduce spam. Learn how your comment data is processed.
{ "url": "https://www.theyoruba.com/2016/03/benin-makes-yoruba-an-official-language/", "source_domain": "www.theyoruba.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "75073", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:OKLOERJN3M2B3BFWT6IUWT57J6XWRUK6", "WARC-Concurrent-To": "<urn:uuid:df4181a0-2c0d-4655-9450-c6a9c5f43323>", "WARC-Date": "2019-10-16T14:01:09Z", "WARC-IP-Address": "104.24.125.70", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:XE6L4IRKULVMYYRIRU7LUWW7JXOZHSHZ", "WARC-Record-ID": "<urn:uuid:875fb5a7-69fd-4a87-90eb-f71e403eb712>", "WARC-Target-URI": "https://www.theyoruba.com/2016/03/benin-makes-yoruba-an-official-language/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6dd0d156-8478-41ac-a55a-d735d5c6a7a6>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 73, 146, 147, 187, 188, 544, 545, 702, 703, 705, 706, 810, 811, 813, 814, 816, 817, 884, 885, 887, 888, 897, 898, 907, 908, 925, 926, 981, 982, 1132, 1133, 1327, 1328, 1346, 1347 ], "line_end_idx": [ 73, 146, 147, 187, 188, 544, 545, 702, 703, 705, 706, 810, 811, 813, 814, 816, 817, 884, 885, 887, 888, 897, 898, 907, 908, 925, 926, 981, 982, 1132, 1133, 1327, 1328, 1346, 1347, 1427 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1427, "ccnet_original_nlines": 35, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.371841162443161, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.007220219820737839, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.14801444113254547, "rps_doc_frac_unique_words": 0.6033755540847778, "rps_doc_mean_word_length": 4.772151947021484, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.646736145019531, "rps_doc_word_count": 237, "rps_doc_frac_chars_dupe_10grams": 0.10433244705200195, "rps_doc_frac_chars_dupe_5grams": 0.15561449527740479, "rps_doc_frac_chars_dupe_6grams": 0.10433244705200195, "rps_doc_frac_chars_dupe_7grams": 0.10433244705200195, "rps_doc_frac_chars_dupe_8grams": 0.10433244705200195, "rps_doc_frac_chars_dupe_9grams": 0.10433244705200195, "rps_doc_frac_chars_top_2gram": 0.029177719727158546, "rps_doc_frac_chars_top_3gram": 0.03448275849223137, "rps_doc_frac_chars_top_4gram": 0.04774535819888115, "rps_doc_books_importance": -125.08637237548828, "rps_doc_books_importance_length_correction": -123.51884460449219, "rps_doc_openwebtext_importance": -61.44016647338867, "rps_doc_openwebtext_importance_length_correction": -61.44016647338867, "rps_doc_wikipedia_importance": -38.32627487182617, "rps_doc_wikipedia_importance_length_correction": -31.965538024902344 }, "fasttext": { "dclm": 0.013841750100255013, "english": 0.9310885071754456, "fineweb_edu_approx": 2.4561305046081543, "eai_general_math": 0.0030894300434738398, "eai_open_web_math": 0.1265554428100586, "eai_web_code": 0.000013830000170855783 } }
{ "free_decimal_correspondence": { "primary": { "code": "496.1", "labels": { "level_1": "Philology; or, Language and languages", "level_2": "", "level_3": "African languages" } }, "secondary": { "code": "966.004", "labels": { "level_1": "History and Geography", "level_2": "Africa", "level_3": "Africa, West" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "1", "label": "Factual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
7,741,056,643,599,138,000
Mudcat Café Message Lyrics & Knowledge Personal Pages Record Shop Auction Links Radio & Media Kids Membership Help The Mudcat Cafeawe User Name Thread Name Subject Posted GUEST,Rob White Meaning: Farewell Farewell (Fairport Convention) (44) RE: Meaning: Farewell Farewell (Fairport Convention) 07 Jul 13 I love this beautiful song too, and play it a lot. I came to the idea that it might draw its imagery from the Jacobite uprisings against the English throne in 1715 and 1745 (bearing in mind a folk-rock interest in the human tragedy of England and Scotland's long conflict - see Fotheringay's 'Fotheringay', and Steeleye Span's wonderful rendition of 'Parcel of Rogues' - guaranteed to have your fingers twitching to draw your Claymore from the thatch, even if you're English!!!) So, in this idea, the "winding road" is the road to exile for the failed supporters (in the '45) of Bonnie Prince Charlie. "And will you never cut the cloth" could be taken to refer to the racially motivated banning of the tartan after the '45, in 1746, not relaxed for many a long decade. "Drink the light to be" might be the ritual raising of a glass to the forlorn hope of return of the Prince. The "bruised and beaten sons" are those who suffered the heavy retribution of the victorious English, and who perhaps resent the flight of the singer of the song; and "swearing a year" - well, all that's left to him as he flees his conquered country, perhaps never to see it again, is truth to his loved one: the only native "country" left to him now. But as Richard Thompson says, "interpret as you wish". It certainly does no harm having that tragic imagery in your mind as you sing it though. Post to this Thread - Back to the Main Forum Page By clicking on the User Name, you will requery the forum for that user. You will see everything that he or she has posted with that Mudcat name. By clicking on the Thread Name, you will be sent to the Forum on that thread as if you selected it from the main Mudcat Forum page. By clicking on the Subject, you will also go to the thread as if you selected it from the original Forum page, but also go directly to that particular message. By clicking on the Date (Posted), you will dig out every message posted that day. Try it all, you will see.
{ "url": "http://awe.mudcat.org/detail.cfm?messages__Message_ID=3534764", "source_domain": "awe.mudcat.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "8176", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UX3TKMMQZJWHO4KDSGY2OIIPQTFHZAUS", "WARC-Concurrent-To": "<urn:uuid:c455225b-18ba-4596-82a3-e08767879a1d>", "WARC-Date": "2019-10-23T17:42:34Z", "WARC-IP-Address": "96.89.184.236", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:MK4FCSJF3DTFEYCL7W3BNR6PMKWKWHDG", "WARC-Record-ID": "<urn:uuid:13a10543-fcfd-4a6b-ad7d-89890fe13f68>", "WARC-Target-URI": "http://awe.mudcat.org/detail.cfm?messages__Message_ID=3534764", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f6fd0df9-7d1a-4059-bece-e0c274feec9d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-206.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 115, 134, 135, 136, 137, 174, 307, 308, 309, 788, 789, 1539, 1540, 1684, 1685, 1686, 1708, 1709, 1737, 1738, 1883, 1884, 2016, 2017, 2177, 2178, 2260, 2261 ], "line_end_idx": [ 115, 134, 135, 136, 137, 174, 307, 308, 309, 788, 789, 1539, 1540, 1684, 1685, 1686, 1708, 1709, 1737, 1738, 1883, 1884, 2016, 2017, 2177, 2178, 2260, 2261, 2286 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2286, "ccnet_original_nlines": 28, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4335378408432007, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.00817995984107256, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.17586912214756012, "rps_doc_frac_unique_words": 0.5099009871482849, "rps_doc_mean_word_length": 4.403465270996094, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.848423957824707, "rps_doc_word_count": 404, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.10680156946182251, "rps_doc_frac_chars_dupe_6grams": 0.06070825830101967, "rps_doc_frac_chars_dupe_7grams": 0.03372681140899658, "rps_doc_frac_chars_dupe_8grams": 0.03372681140899658, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.01686340942978859, "rps_doc_frac_chars_top_3gram": 0.026981450617313385, "rps_doc_frac_chars_top_4gram": 0.03372681140899658, "rps_doc_books_importance": -175.10775756835938, "rps_doc_books_importance_length_correction": -175.10775756835938, "rps_doc_openwebtext_importance": -106.15106201171875, "rps_doc_openwebtext_importance_length_correction": -106.15106201171875, "rps_doc_wikipedia_importance": -72.04054260253906, "rps_doc_wikipedia_importance_length_correction": -72.04054260253906 }, "fasttext": { "dclm": 0.000712929992005229, "english": 0.9486618638038635, "fineweb_edu_approx": 1.4012961387634277, "eai_general_math": 0.008585809729993343, "eai_open_web_math": 0.32978254556655884, "eai_web_code": 0.0008750599808990955 } }
{ "free_decimal_correspondence": { "primary": { "code": "782.4216", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Dramatic music" } }, "secondary": { "code": "941.08", "labels": { "level_1": "History and Geography", "level_2": "Europe", "level_3": "Scotland and Ireland" } } }, "bloom_cognitive_process": { "primary": { "code": "4", "label": "Analyze" }, "secondary": { "code": "5", "label": "Evaluate" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "5", "label": "Comment Section" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,413,599,979,174,263,000
summaryrefslogtreecommitdiff Commit message (Expand)AuthorAgeFilesLines * sys-process/wait_on_pid: Drop oldMikle Kolyada2019-02-101-27/+0 * sys-process/wait_on_pid: amd64 stable wrt bug #676810Mikle Kolyada2019-02-101-1/+1 * sys-process/wait_on_pid: [QA] fix ebuild variablesMikle Kolyada2019-02-101-1/+1 * sys-process/audit: s390 stable wrt bug #669532Mikle Kolyada2019-02-081-1/+1 * sys-process/cronie: remove unused fileMichael Mair-Keimberger2019-02-061-14/+0 * sys-process/audit: arm stable, bug #669532Markus Meier2019-02-041-1/+1 * sys-process/wait_on_pid: x86 stable (bug #676810)Thomas Deutschmann2019-01-311-2/+2 * sys-process/audit-2.8.4-r0: alpha stableTobias Klausmann2019-01-301-1/+1 * sys-process/supervise-scripts: EAPI bumpAndreas K. Hüttel2019-01-281-0/+27 * sys-process/audit: stable 2.8.4 for sparc, bug #669532Rolf Eike Beer2019-01-261-1/+1 * sys-process/audit: amd64 stable wrt bug #669532Mikle Kolyada2019-01-251-1/+1 * sys-process/audit: x86 stable (bug #669532)Thomas Deutschmann2019-01-241-1/+1 * sys-process/audit: stable 2.8.4 for hppa, bug #669532Sergei Trofimovich2019-01-241-1/+1 * sys-process/audit: stable 2.8.4 for ppc64, bug #669532Sergei Trofimovich2019-01-231-1/+1 * sys-process/audit: stable 2.8.4 for ppc, bug #669532Sergei Trofimovich2019-01-231-1/+1 * sys-process/audit: stable 2.8.4 for ia64, bug #669532Sergei Trofimovich2019-01-231-2/+2 * sys-process/parallel: version bump to 20190122Tim Harder2019-01-232-0/+41 * sys-process/glances: bump to 3.1.0Georgy Yakovlev2019-01-192-0/+95 * sys-process/daemontools-encore: add GPL-2 to LICENSEThomas Deutschmann2019-01-181-1/+1 * sys-process/daemontools-encore: bump to v1.11Thomas Deutschmann2019-01-184-0/+145 * sys-process/cronie: Removed old.Lars Wendler2019-01-142-102/+0 * sys-process/atop: Bump to version 2.4.0Lars Wendler2019-01-143-0/+79 * sys-process/criu: bump up to 3.11Sergei Trofimovich2019-01-122-0/+126 * sys-process/criu: don't pass -Werror in src_install() eitherSergei Trofimovich2019-01-121-1/+2 * sys-process/cronie: arm64 stable (bug #671686)Mart Raudsepp2019-01-121-2/+2 * sys-process/parallel: remove oldTim Harder2018-12-222-41/+0 * sys-process/parallel: stabilize 20181122Tim Harder2018-12-221-1/+1 * sys-process/parallel: version bump to 20181222Tim Harder2018-12-222-0/+41 * sys-process/numad: revbump 0.5, install service filesGeorgy Yakovlev2018-12-191-0/+53 * sys-process/numad: add service filesGeorgy Yakovlev2018-12-194-5/+42 * sys-process/audit: bump to v2.8.4Thomas Deutschmann2018-12-133-0/+426 * sys-process/schedtool: Fixed HOMEPAGELars Wendler2018-12-132-6/+12 * sys-process/parallel: remove oldTim Harder2018-12-132-41/+0 * sys-process/parallel: stabilize 20180622Tim Harder2018-12-131-2/+2 * sys-process/parallel: version bump to 20181122Tim Harder2018-12-132-0/+41 * sys-process/evisum: remove old.Joonas Niilola2018-12-112-21/+0 * sys-process/evisum: version bump.Joonas Niilola2018-12-112-0/+21 * sys-process/tini: Stabilize on amd64Manuel Rüger2018-12-111-2/+2 * sys-process/glances: 3.0.2 stable on amd64Georgy Yakovlev2018-11-301-1/+1 * sys-process/glances: drop 3.0.1Georgy Yakovlev2018-11-302-83/+0 * sys-process/cronie-1.5.2-r0: alpha stableTobias Klausmann2018-11-291-1/+1 * sys-process/lsof-4.91-r0: alpha stableTobias Klausmann2018-11-271-1/+1 * sys-process/htop: Removed old.Lars Wendler2018-11-273-135/+0 * sys-process/htop-2.2.0: arm64 stable (bug #667928)Mart Raudsepp2018-11-271-1/+1 * sys-process/cronie: arm stable wrt bug #671686Mikle Kolyada2018-11-261-1/+1 * sys-process/lsof-4.91: arm64 stable (bug #667232)Mart Raudsepp2018-11-261-1/+1 * sys-process/cronie: stable 1.5.2 for ppc64, bug #671686Sergei Trofimovich2018-11-241-1/+1 * sys-process/cronie: stable 1.5.2 for ppc, bug #671686Sergei Trofimovich2018-11-241-1/+1 * sys-process/cronie: stable 1.5.2 for ia64, bug #671686Sergei Trofimovich2018-11-241-1/+1 * sys-process/cronie: x86 stable (bug #671686)Thomas Deutschmann2018-11-231-1/+1
{ "url": "https://gitweb.gentoo.org/repo/gentoo.git/log/sys-process?id=085038f1e996bdbb0502ef0b222a4e3cb0c83cb4", "source_domain": "gitweb.gentoo.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "39865", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MT7GXKMQXELHLG6T2TX7JUF7VBRFIXPP", "WARC-Concurrent-To": "<urn:uuid:b57bc1c4-8458-4788-8c18-83e1f3aca4f2>", "WARC-Date": "2019-10-18T16:41:22Z", "WARC-IP-Address": "108.28.123.238", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:JDRRG6M7YVAQPBPMGS4JFXEDALNQ623W", "WARC-Record-ID": "<urn:uuid:2eb57bda-a397-4363-a64c-043246dc1ee0>", "WARC-Target-URI": "https://gitweb.gentoo.org/repo/gentoo.git/log/sys-process?id=085038f1e996bdbb0502ef0b222a4e3cb0c83cb4", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:44ba505c-a82c-4375-aa28-778ad1f6f2cf>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-141.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 29, 72, 138, 223, 305, 383, 464, 537, 623, 698, 775, 862, 941, 1021, 1111, 1202, 1291, 1381, 1457, 1526, 1615, 1699, 1764, 1835, 1907, 2004, 2082, 2144, 2213, 2289, 2377, 2448, 2520, 2589, 2651, 2720, 2796, 2861, 2928, 2995, 3071, 3137, 3213, 3286, 3349, 3431, 3509, 3590, 3682, 3772, 3863 ], "line_end_idx": [ 29, 72, 138, 223, 305, 383, 464, 537, 623, 698, 775, 862, 941, 1021, 1111, 1202, 1291, 1381, 1457, 1526, 1615, 1699, 1764, 1835, 1907, 2004, 2082, 2144, 2213, 2289, 2377, 2448, 2520, 2589, 2651, 2720, 2796, 2861, 2928, 2995, 3071, 3137, 3213, 3286, 3349, 3431, 3509, 3590, 3682, 3772, 3863, 3943 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3943, "ccnet_original_nlines": 51, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.021588949486613274, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0034542300272732973, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.6563039422035217, "rps_doc_frac_unique_words": 0.5221843123435974, "rps_doc_mean_word_length": 10.375426292419434, "rps_doc_num_sentences": 43, "rps_doc_symbol_to_word_ratio": 0.016407599672675133, "rps_doc_unigram_entropy": 4.5906243324279785, "rps_doc_word_count": 293, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.084868423640728, "rps_doc_frac_chars_dupe_6grams": 0.084868423640728, "rps_doc_frac_chars_dupe_7grams": 0.084868423640728, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.020723680034279823, "rps_doc_frac_chars_top_3gram": 0.039473678916692734, "rps_doc_frac_chars_top_4gram": 0.04440788924694061, "rps_doc_books_importance": -207.07127380371094, "rps_doc_books_importance_length_correction": -207.07127380371094, "rps_doc_openwebtext_importance": -241.477783203125, "rps_doc_openwebtext_importance_length_correction": -241.477783203125, "rps_doc_wikipedia_importance": -262.3041687011719, "rps_doc_wikipedia_importance_length_correction": -262.3041687011719 }, "fasttext": { "dclm": 0.9987589120864868, "english": 0.36830809712409973, "fineweb_edu_approx": 0.7244152426719666, "eai_general_math": 0.05551069974899292, "eai_open_web_math": 0.16674166917800903, "eai_web_code": 0.8242954611778259 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.455", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "004.02", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "4", "label": "Code/Software" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "8", "label": "Documentation" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "4", "label": "Graduate/Expert Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-7,818,959,240,491,973,000
pregnancy massage therapy (‘ Pregnancy Massage Therapy by: Caroline Colby The modern mum-to-be is a stressed out individual, having to cater to increasing pressures of a fast paced society and work place. Yet at the same time, she knows that her wellness is crucial especially during her pregnancy if she wants a smooth delivery process and the birth of a healthy happy baby. This increased awareness has led to the search for alternative approaches in addition to traditional health services. Pregnancy massage therapy is one such alternative approach. It has much therapeutic value as it enhances the function of muscles and joints, improves blood circulation and relieves mental and physical fatigue. Pregnancy Massage can be prenatal, postnatal or during the labour process, although many refer pregnancy massage to just prenatal and post-natal massage to mean massage that takes place a few days after delivery. In a prenatal massage, the massage is focused on reducing pregnancy discomforts and aims to enhance the physiological and emotional well-being of both mother and foetus. A relaxed mother also helps in the development of a brainy and healthy foetus. Also, the massage helps to strengthen and prepares the muscles that are useful for a natural delivery process. Many women fear a long delivery process. Yet, many desire one that is as natural as possible and without the use of epidural or any other drugs. During labour, massage techniques exist to help shorten the delivery process while easing pain and anxiety. Post-natal massage focuses on toning the new mother’s body, reduce fluid retention and and helps the body be brought back to balance and shape. It also helps to rejuvenate and re-energize the new mother and thus enhance her ability to bond with her baby. The pregnant female should always first consult her doctors if she is suitable for massage or for any other alternative therapies that they wish to try. Her overall objective is to achieve a good mental state and physical health and to have a wonderful birthing experience. Caroline Colby is a publisher of information on Massage Therapy. She highly promotes Massage Therapy as a safe, holistic and effective alternative health therapy. Her site includes information on massage techniques, massage chairs, massage oils, etc. For tips and news updates, please visit her site at’, ”) Leave a Reply Your email address will not be published. RSS Follow by Email Facebook Twitter Pinterest
{ "url": "https://www.alotabouteverything.com/articles/pregnancy-massage-therapy/", "source_domain": "www.alotabouteverything.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "55497", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:UICWARJSAIJT2T53O33SKZ6K6IXO6GDG", "WARC-Concurrent-To": "<urn:uuid:e432f367-1d69-4bc9-bb0b-2cb431e524f3>", "WARC-Date": "2019-10-15T09:04:14Z", "WARC-IP-Address": "185.104.29.40", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:FRZLOHYLE3ATQRY6FL5OT5ZXTSVCG4G2", "WARC-Record-ID": "<urn:uuid:7ed0d7a4-83ec-4171-a063-f6c5a8936af9>", "WARC-Target-URI": "https://www.alotabouteverything.com/articles/pregnancy-massage-therapy/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:53acff49-4474-4da0-afd1-4e8687330bbc>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 26, 27, 30, 56, 60, 75, 377, 705, 918, 1278, 1531, 1786, 2060, 2368, 2369, 2383, 2384, 2426, 2427, 2431, 2447, 2456, 2464 ], "line_end_idx": [ 26, 27, 30, 56, 60, 75, 377, 705, 918, 1278, 1531, 1786, 2060, 2368, 2369, 2383, 2384, 2426, 2427, 2431, 2447, 2456, 2464, 2473 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2473, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.402222216129303, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.004444439895451069, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.10222221910953522, "rps_doc_frac_unique_words": 0.5213032364845276, "rps_doc_mean_word_length": 5.077694416046143, "rps_doc_num_sentences": 21, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.857316493988037, "rps_doc_word_count": 399, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03948666900396347, "rps_doc_frac_chars_top_3gram": 0.03405725955963135, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -146.49644470214844, "rps_doc_books_importance_length_correction": -146.49644470214844, "rps_doc_openwebtext_importance": -70.18463897705078, "rps_doc_openwebtext_importance_length_correction": -70.18463897705078, "rps_doc_wikipedia_importance": -55.073272705078125, "rps_doc_wikipedia_importance_length_correction": -55.073272705078125 }, "fasttext": { "dclm": 0.008053540252149105, "english": 0.9431648850440979, "fineweb_edu_approx": 1.437656044960022, "eai_general_math": 0.0001205200023832731, "eai_open_web_math": 0.06302261352539062, "eai_web_code": -0.000002739999899858958 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.857", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "613.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Health and Hygiene" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "10", "label": "Knowledge Article" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,551,687,861,093,890,800
Crédit photographique : Bibliothèque de l’Institut de France  ET 821 documents Responsable de la table "Personnes et institutions" : Françoise Launay 112/821 results         Notice IDP913 DénominationBrun de Condamine Typepersonne NomBrun de Condamine Nombre de document(s)1 Autres manuscrits pour Auteur(s) (1 result) 112/821 results                                         Reponsable du projet : Nicolas Rieucau. Université Paris VIII. Projet financé par l'Agence National de la Recherche (ANR) Hébergement du site : TGIR Huma-Num © 2016 - 2019 Laboratoire d’économie dionysien Dernière mise à jour: mardi 15 octobre 2019 (18:43) + Rendu de la page en 0.024s
{ "url": "http://www.inventaire-condorcet.com/Inventaire/Personnes_institutions?ID=913", "source_domain": "www.inventaire-condorcet.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "18698", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:XA3S2XBWX4F466BR5T3NSZL2V4QATB6I", "WARC-Concurrent-To": "<urn:uuid:cc34921d-18f6-413e-b0f2-e538b932b2f3>", "WARC-Date": "2019-10-16T10:33:41Z", "WARC-IP-Address": "134.158.33.174", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:CTC6V4F3IMKIBHJS37UKHVHGXWXQT4B7", "WARC-Record-ID": "<urn:uuid:1ba51685-3795-498f-83a8-eccb76310688>", "WARC-Target-URI": "http://www.inventaire-condorcet.com/Inventaire/Personnes_institutions?ID=913", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:a8f804cf-dc8b-4344-85e4-86777be0afeb>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 62, 63, 66, 80, 151, 175, 182, 189, 219, 232, 253, 276, 320, 344, 345, 377, 378, 441, 500, 536, 537, 584, 585, 639 ], "line_end_idx": [ 62, 63, 66, 80, 151, 175, 182, 189, 219, 232, 253, 276, 320, 344, 345, 377, 378, 441, 500, 536, 537, 584, 585, 639, 665 ] }
{ "red_pajama_v2": { "ccnet_original_length": 665, "ccnet_original_nlines": 24, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.04838709905743599, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04032257944345474, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3629032373428345, "rps_doc_frac_unique_words": 0.8095238208770752, "rps_doc_mean_word_length": 6.011904716491699, "rps_doc_num_sentences": 4, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.078013896942139, "rps_doc_word_count": 84, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.023762380704283714, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -65.32563781738281, "rps_doc_books_importance_length_correction": -72.85798645019531, "rps_doc_openwebtext_importance": -44.21220397949219, "rps_doc_openwebtext_importance_length_correction": -51.74455642700195, "rps_doc_wikipedia_importance": -29.615983963012695, "rps_doc_wikipedia_importance_length_correction": -37.14833450317383 }, "fasttext": { "dclm": 0.00003767000089283101, "english": 0.0228672306984663, "fineweb_edu_approx": 1.0063639879226685, "eai_general_math": -0.000009780000254977494, "eai_open_web_math": 0.21226924657821655, "eai_web_code": 0.9999821186065674 } }
{ "free_decimal_correspondence": { "primary": { "code": "025.092", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } }, "secondary": { "code": "920", "labels": { "level_1": "History and Geography", "level_2": "Biography", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "20", "label": "Structured Data" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-2,554,024,446,893,825,500
NFL | Tiki Barber is BACK Former New York Giant running back Tiki Barber has finally got his shot to return to the NFL. His brother, Ronde, is doing very well with the Bucaneers but now it’s Tiki’s chance. BUT HOLD ON! Don’t think you will see him on the field. Tiki, who has been literally begging for a job in the NFL, has got a shot with CBS sports instead. According to Terez Owens, Barber got a offer for a sports how on CBS Sports Radio on weekdays from 6am to 9am starting in January 2nd. Barber lost a lot of respect, not just from NYG fans (as he claimed Eli was a curse to the team, but coincidentally they won the Super Bowl the year after barber retired), but he cheated on his pregnant wife with an intern he is now married to. Advertisements Leave a Reply Fill in your details below or click an icon to log in: WordPress.com Logo You are commenting using your WordPress.com account. Log Out /  Change ) Google photo You are commenting using your Google account. Log Out /  Change ) Twitter picture You are commenting using your Twitter account. Log Out /  Change ) Facebook photo You are commenting using your Facebook account. Log Out /  Change ) Connecting to %s
{ "url": "https://ladyinthemancave.com/2012/11/26/nfl-tiki-barber-is-back/", "source_domain": "ladyinthemancave.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "80710", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:OYNJQRBKBI7O3NDMGGQNJADJPLNP5DHL", "WARC-Concurrent-To": "<urn:uuid:1e457a2e-c994-4902-af19-c8dcbc38961f>", "WARC-Date": "2019-10-15T11:26:03Z", "WARC-IP-Address": "192.0.78.24", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:AOCOKQ6H42K4K6OPCCOLSFXTZTFZ3K27", "WARC-Record-ID": "<urn:uuid:da0b329c-68ce-4be6-8354-b9cbe14de6a1>", "WARC-Target-URI": "https://ladyinthemancave.com/2012/11/26/nfl-tiki-barber-is-back/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:938926ba-6c96-4132-a2bf-91332a1e930e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-206.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 26, 27, 121, 122, 208, 209, 364, 365, 500, 501, 746, 747, 762, 763, 777, 778, 833, 834, 853, 854, 927, 928, 941, 942, 1008, 1009, 1025, 1026, 1093, 1094, 1109, 1110, 1178, 1179 ], "line_end_idx": [ 26, 27, 121, 122, 208, 209, 364, 365, 500, 501, 746, 747, 762, 763, 777, 778, 833, 834, 853, 854, 927, 928, 941, 942, 1008, 1009, 1025, 1026, 1093, 1094, 1109, 1110, 1178, 1179, 1195 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1195, "ccnet_original_nlines": 34, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3928571343421936, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0396825410425663, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1428571343421936, "rps_doc_frac_unique_words": 0.5592417120933533, "rps_doc_mean_word_length": 4.364928722381592, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.5235466957092285, "rps_doc_word_count": 211, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.1194353997707367, "rps_doc_frac_chars_dupe_6grams": 0.06514658033847809, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.026058629155158997, "rps_doc_frac_chars_top_3gram": 0.06948968768119812, "rps_doc_frac_chars_top_4gram": 0.09120520949363708, "rps_doc_books_importance": -141.24761962890625, "rps_doc_books_importance_length_correction": -141.24761962890625, "rps_doc_openwebtext_importance": -83.89388275146484, "rps_doc_openwebtext_importance_length_correction": -83.8835678100586, "rps_doc_wikipedia_importance": -49.052528381347656, "rps_doc_wikipedia_importance_length_correction": -49.052528381347656 }, "fasttext": { "dclm": 0.021025480702519417, "english": 0.954248309135437, "fineweb_edu_approx": 1.0171953439712524, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.02597690001130104, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.334", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "791.4572", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "1", "label": "Remember" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "16", "label": "Personal Blog" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-5,850,166,142,308,858,000
Medical Have medical questions? Ask a doctor online! Connect one-on-one with {0} who will answer your question Related Medical Questions I hope you are well. I've got a question about my tongue, Hi there I hope you are well. Hi there. I've got a question about my tongue, I've developed a somewhat patchy tongue. It's not that obvious, the patchiness isn't white. More like a slim coating on my … read more Dr Subbanna MD Dr Subbanna MD Neurologist, Medical Doctor Neurologist MD (USA Board Certified) 8,007 satisfied customers I have had some patches on my tongue for the last 6 months Hi I have had some patches on my tongue for the last 6 months or so. I'm getting a little worried. Could u please have a look and give me some feedback. Is it cancer or leukoplakia. I will attach 3 ph… read more Dr. David Dr. David Radiation Oncology Attending Director Post-Doctoral Degree 35,698 satisfied customers We just noticed that our 4 year old has bumps in his tongue, We just noticed that our 4 year old has white bumps in his tongue, we think is thrush … read more Onlinedoc Onlinedoc B.A.M.S.(Bachelor of Ayurveda Medicine & Surgery) 4,712 satisfied customers I have noticed this spot on my tongue since July. So in I have noticed this white spot on my tongue since July. So in August I went to my doctor he referred me to a ENT doctor. So when I went the spot had disappeared to the point where you couldn't notice … read more Dr. David Dr. David Radiation Oncology Attending Director Post-Doctoral Degree 35,698 satisfied customers I suffer from swelling of the tongue on the right side and I suffer from swelling of the tongue on the right side and inability to move it to the right side, along with swallowing difficulty. I cannot chew because my tongue overlaps my teeth. … read more Dr. David Dr. David Radiation Oncology Attending Director Post-Doctoral Degree 35,698 satisfied customers Why there are red spot on my tongue? Is this the symptom of Why there are red spot on my tongue? Is this the symptom of acute HIV infection or what? The spot is not hurt. It also appear at the back of my tongue. It also accompany with sore throat and rash on t… read more Dr. D. Love Dr. D. Love Doctor Doctoral Degree 19,436 satisfied customers I have a tongue for two or three months now i dont know why I have a white tongue for two or three months now i dont know why and I feel like there is a hard lump above my adams apple the been there the same period and my neck feels different.… read more Dr. Ravoof Dr. Ravoof Doctoral Degree 9,863 satisfied customers On Christmas day I burned my tongue. The next morning I woke On Christmas day I burned my tongue. The next morning I woke up and I could feel an ulcer starting. The resulting ulcer was under my tongue on the left side. It was huge took up the whole side of the … read more Dr Uzair Dr Uzair FCPS (R) General Surgery M.B.,B.S. FCPS 10,783 satisfied customers I noticed two lumps on one side of my tongue in the far Hi, I noticed two lumps on one side of my tongue in the far back. I only noticed them because I was having a somewhat foul sulfury or irony taste in that area, though not very strong. I don't know if … read more Dr. David Dr. David Radiation Oncology Attending Director Post-Doctoral Degree 35,698 satisfied customers My husband has a small flat, smooth red patch on his tongue my husband has a small flat, smooth red patch on his tongue with a white border around it. He says it burns and when he moves his tongue he feels more irritation. He got it when we travelled in Italy … read more Dr. David Dr. David Radiation Oncology Attending Director Post-Doctoral Degree 35,698 satisfied customers DEAR DR. UZAIR, MY LOCAL DRS. PA DIAGNOSED THE PROBLEM AND DEAR DR. UZAIR, MY LOCAL DRS. PA DIAGNOSED THE PROBLEM AND SHOWED ME THE LITERATURE ABOUT IT. MAYBE YOU SHOULD LOOK IT UP. IT'S CALLED SCROTAL TONGUE!!! CAUSE IS MANY AND VARIED. VITAMIN DEF., GIRD, E… read more Dr Uzair Dr Uzair FCPS (R) General Surgery M.B.,B.S. FCPS 10,783 satisfied customers For the past 6-7 weeks I have had an on and off sore throat Hi, For the past 6-7 weeks I have had an on and off sore throat and a yellow and white tongue. The white/yellow tongue occurred 3 days after performing oral sex on a man which was 6 weeks after a cond… read more DrRussMD DrRussMD Board Certified Physician 51,788 satisfied customers My husband is going thru an experimental treatment for hep c My husband is going thru an experimental treatment for hep c with a study drug and recently his mouth has been bothering him like ulcers. We noticed last nite that he has an area on his tounge that is… read more FamilyMD FamilyMD Doctoral Degree 397 satisfied customers If you have a tongue that they so call a geographical tongue if you have a tongue that they so call a geographical tongue and little warts in the back of your mouth that dont go away on your gums can that be syphilis?… read more Dr.K.S.Dastoor Dr.K.S.Dastoor Surgical Registrar Master's Degree 931 satisfied customers My tongue is yellow. Now my husband's tongue is yellow. My tongue is yellow. Now my husband's tongue is yellow. Tests showed no yeast infection after culture. I did have bladder infection. This showed up shortly after that. What is this? What can I do to g… read more Dr. B. Dr. B. 7,797 satisfied customers I have not received the answer to the first one yet. i have not received the answer to the first one yet. macroglossia. i paid the 18.00. please show me an answer. thanks. mary ashton***@******.***… read more Dr Basu Dr Basu Physician Doctoral Degree 26,806 satisfied customers Have a fiend that have her tungue irritated, sometimes her Have a fiend that have her tungue irritated , sometimes her tongue get so, that show bump that itch and almost bleed and drive her wild , what remedy or medicine she can used for it..… read more Dr. Kaushik Dr. Kaushik PSYCHIATRIST ( MD Psychiatry) Doctoral Degree 431 satisfied customers My mum has a swollen tongue. worse in the mornings. doc My mum has a swollen tongue. worse in the mornings. doc thinks she is allergic to something. Before this happened she had a white filling in her mouth that she never had before. If this is the case wh… read more Dr S.A.Alam Dr S.A.Alam Consultant, Medicine/Cardiology Master's Degree 3,183 satisfied customers Disclaimer: Information in questions, answers, and other posts on this site ("Posts") comes from individual users, not JustAnswer; JustAnswer is not responsible for Posts. Posts are for general information, are not intended to substitute for informed professional advice (medical, legal, veterinary, financial, etc.), or to establish a professional-client relationship. The site and services are provided "as is" with no warranty or representations by JustAnswer regarding the qualifications of Experts. To see what credentials have been verified by a third-party service, please click on the "Verified" symbol in some Experts' profiles. JustAnswer is not intended or designed for EMERGENCY questions which should be directed immediately by telephone or in-person to qualified professionals. JustAnswer in the News: Ask-a-doc Web sites: If you've got a quick question, you can try to get an answer from sites that say they have various specialists on hand to give quick answers... Justanswer.com. JustAnswer.com...has seen a spike since October in legal questions from readers about layoffs, unemployment and severance. Web sites like justanswer.com/legal ...leave nothing to chance. Traffic on JustAnswer rose 14 percent...and had nearly 400,000 page views in 30 days...inquiries related to stress, high blood pressure, drinking and heart pain jumped 33 percent. Tory Johnson, GMA Workplace Contributor, discusses work-from-home jobs, such as JustAnswer in which verified Experts answer people’s questions. I will tell you that...the things you have to go through to be an Expert are quite rigorous. What Customers are Saying: I feel so much better today, and upon further investigation believe that there is a chance that the responses I got saved me from a serious, even life threatening situation. I am very grateful to the experts who answered me. Susan O.USA I can go as far as to say it could have resulted in saving my sons life and our entire family now knows what bipolar is and how to assist and understand my most wonderful son, brother and friend to all who loves him dearly. Thank you very much Corrie MollPretoria, South Africa I thank-you so much! It really helped to have this information and confirmation. We will watch her carefully and get her in for the examination and US right away if things do not improve. God bless you as well! ClaudiaAlbuquerque, NM Outstanding response time less than 6 minutes. Answered the question professionally and with a great deal of compassion. KevinBeaverton, OR Suggested diagnosis was what I hoped and will take this info to my doctor's appointment next week. I feel better already! Thank you. ElanorTracy, CA Thank you to the Physician who answered my question today. The answer was far more informative than what I got from the Physicians I saw in person for my problem. JulieLockesburg, AR You have been more help than you know. I seriously don't know what my sisters situation would be today if you had not gone above and beyond just answering my questions. John and StefanieTucson, AZ < Previous | Next > Meet the Experts: Family Physician Family Physician Doctor 2,592 satisfied customers Emergency Medicine and Family Practice for over 26 years Dr. Ketch Dr. Ketch Board Certified Physician 76 satisfied customers Medical Degree, Former Assistant Professor at School of Medicine at Yale University DrRussMD DrRussMD Board Certified Physician 51,788 satisfied customers Internal Medicine--practice all of internal medicine, all ages, family, health, prevention, complementary medicine, etc. Dr. David Dr. David Board Certified Physician 224 satisfied customers Treat children/young adults, former chief resident, multiple publications Dr Chip (M.D.) Dr Chip (M.D.) Doctor 20,278 satisfied customers 20 yrs. in practice, including surgery, general medicine, addiction medicine and pain. Dr. D. Love Dr. D. Love Doctor 19,436 satisfied customers Family Physician for 10 years; Hospital Medical Director for 10 years. Dr. Arun Phophalia Dr. Arun Phophalia Doctor 17,059 satisfied customers MBBS MS. Post doctoral fellowship in Sports Medicine. General surgeon and sports medicine specialist < Previous | Next > Disclaimer: Information in questions, answers, and other posts on this site ("Posts") comes from individual users, not JustAnswer; JustAnswer is not responsible for Posts. Posts are for general information, are not intended to substitute for informed professional advice (medical, legal, veterinary, financial, etc.), or to establish a professional-client relationship. The site and services are provided "as is" with no warranty or representations by JustAnswer regarding the qualifications of Experts. To see what credentials have been verified by a third-party service, please click on the "Verified" symbol in some Experts' profiles. JustAnswer is not intended or designed for EMERGENCY questions which should be directed immediately by telephone or in-person to qualified professionals. Show MoreShow Less Ask Your Question x
{ "url": "https://www.justanswer.com/medical/curww-show-tongue.html", "source_domain": "www.justanswer.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "309463", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CEDUN5LQADJLEVDZ4PVAPUVIYLUN6PBD", "WARC-Concurrent-To": "<urn:uuid:926bf9de-3527-4544-884c-b40744ea9b51>", "WARC-Date": "2019-10-23T16:07:46Z", "WARC-IP-Address": "104.16.43.9", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:56SUKPGZ4VMQ6WUXRNFOJLKATZRO63RS", "WARC-Record-ID": "<urn:uuid:dfda32df-0817-4adc-bc7f-9a0af432ed07>", "WARC-Target-URI": "https://www.justanswer.com/medical/curww-show-tongue.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:a7c5ec6b-e03d-451f-b3ad-4bf4012b2f4a>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-193.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 8, 9, 54, 55, 113, 114, 140, 198, 410, 425, 440, 468, 505, 531, 590, 802, 812, 822, 860, 881, 908, 969, 1067, 1077, 1087, 1137, 1163, 1219, 1431, 1441, 1451, 1489, 1510, 1537, 1596, 1792, 1802, 1812, 1850, 1871, 1898, 1958, 2170, 2182, 2194, 2201, 2217, 2244, 2304, 2499, 2510, 2521, 2537, 2563, 2624, 2836, 2845, 2854, 2879, 2894, 2921, 2977, 3189, 3199, 3209, 3247, 3268, 3295, 3355, 3567, 3577, 3587, 3625, 3646, 3673, 3732, 3944, 3953, 3962, 3987, 4002, 4029, 4089, 4301, 4310, 4319, 4345, 4372, 4433, 4645, 4654, 4663, 4679, 4703, 4764, 4932, 4947, 4962, 4981, 4997, 5021, 5077, 5289, 5296, 5303, 5329, 5382, 5538, 5546, 5554, 5564, 5580, 5607, 5666, 5861, 5873, 5885, 5915, 5931, 5955, 6011, 6223, 6236, 6248, 6280, 6296, 6322, 7114, 7115, 7139, 7140, 7321, 7444, 7480, 7508, 7688, 7832, 7925, 7926, 7953, 7954, 8179, 8180, 8192, 8193, 8437, 8438, 8472, 8473, 8684, 8685, 8708, 8709, 8830, 8831, 8850, 8851, 8950, 8984, 8985, 9001, 9002, 9165, 9166, 9186, 9187, 9356, 9357, 9385, 9386, 9406, 9407, 9425, 9426, 9443, 9444, 9461, 9462, 9469, 9470, 9496, 9497, 9554, 9555, 9565, 9566, 9576, 9577, 9603, 9604, 9627, 9628, 9712, 9713, 9722, 9723, 9732, 9733, 9759, 9760, 9787, 9788, 9909, 9910, 9920, 9921, 9931, 9932, 9958, 9959, 9983, 9984, 10058, 10059, 10074, 10075, 10090, 10091, 10098, 10099, 10126, 10127, 10214, 10215, 10227, 10228, 10240, 10241, 10248, 10249, 10276, 10277, 10348, 10349, 10368, 10369, 10388, 10389, 10396, 10397, 10424, 10425, 10526, 10527, 10547, 10548, 11340, 11341, 11360, 11361, 11379, 11380 ], "line_end_idx": [ 8, 9, 54, 55, 113, 114, 140, 198, 410, 425, 440, 468, 505, 531, 590, 802, 812, 822, 860, 881, 908, 969, 1067, 1077, 1087, 1137, 1163, 1219, 1431, 1441, 1451, 1489, 1510, 1537, 1596, 1792, 1802, 1812, 1850, 1871, 1898, 1958, 2170, 2182, 2194, 2201, 2217, 2244, 2304, 2499, 2510, 2521, 2537, 2563, 2624, 2836, 2845, 2854, 2879, 2894, 2921, 2977, 3189, 3199, 3209, 3247, 3268, 3295, 3355, 3567, 3577, 3587, 3625, 3646, 3673, 3732, 3944, 3953, 3962, 3987, 4002, 4029, 4089, 4301, 4310, 4319, 4345, 4372, 4433, 4645, 4654, 4663, 4679, 4703, 4764, 4932, 4947, 4962, 4981, 4997, 5021, 5077, 5289, 5296, 5303, 5329, 5382, 5538, 5546, 5554, 5564, 5580, 5607, 5666, 5861, 5873, 5885, 5915, 5931, 5955, 6011, 6223, 6236, 6248, 6280, 6296, 6322, 7114, 7115, 7139, 7140, 7321, 7444, 7480, 7508, 7688, 7832, 7925, 7926, 7953, 7954, 8179, 8180, 8192, 8193, 8437, 8438, 8472, 8473, 8684, 8685, 8708, 8709, 8830, 8831, 8850, 8851, 8950, 8984, 8985, 9001, 9002, 9165, 9166, 9186, 9187, 9356, 9357, 9385, 9386, 9406, 9407, 9425, 9426, 9443, 9444, 9461, 9462, 9469, 9470, 9496, 9497, 9554, 9555, 9565, 9566, 9576, 9577, 9603, 9604, 9627, 9628, 9712, 9713, 9722, 9723, 9732, 9733, 9759, 9760, 9787, 9788, 9909, 9910, 9920, 9921, 9931, 9932, 9958, 9959, 9983, 9984, 10058, 10059, 10074, 10075, 10090, 10091, 10098, 10099, 10126, 10127, 10214, 10215, 10227, 10228, 10240, 10241, 10248, 10249, 10276, 10277, 10348, 10349, 10368, 10369, 10388, 10389, 10396, 10397, 10424, 10425, 10526, 10527, 10547, 10548, 11340, 11341, 11360, 11361, 11379, 11380, 11381 ] }
{ "red_pajama_v2": { "ccnet_original_length": 11381, "ccnet_original_nlines": 252, "rps_doc_curly_bracket": 0.000175730005139485, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3488471508026123, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.06404782086610794, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.18360376358032227, "rps_doc_frac_unique_words": 0.32629355788230896, "rps_doc_mean_word_length": 4.765575408935547, "rps_doc_num_sentences": 174, "rps_doc_symbol_to_word_ratio": 0.010247649624943733, "rps_doc_unigram_entropy": 5.712522506713867, "rps_doc_word_count": 1894, "rps_doc_frac_chars_dupe_10grams": 0.3648349344730377, "rps_doc_frac_chars_dupe_5grams": 0.4091513454914093, "rps_doc_frac_chars_dupe_6grams": 0.40206071734428406, "rps_doc_frac_chars_dupe_7grams": 0.40206071734428406, "rps_doc_frac_chars_dupe_8grams": 0.3914247751235962, "rps_doc_frac_chars_dupe_9grams": 0.37170398235321045, "rps_doc_frac_chars_top_2gram": 0.04985596984624863, "rps_doc_frac_chars_top_3gram": 0.015510750003159046, "rps_doc_frac_chars_top_4gram": 0.007312209811061621, "rps_doc_books_importance": -848.7651977539062, "rps_doc_books_importance_length_correction": -848.7651977539062, "rps_doc_openwebtext_importance": -547.201416015625, "rps_doc_openwebtext_importance_length_correction": -547.201416015625, "rps_doc_wikipedia_importance": -442.0893249511719, "rps_doc_wikipedia_importance_length_correction": -442.0893249511719 }, "fasttext": { "dclm": 0.0027119501028209925, "english": 0.9494332671165466, "fineweb_edu_approx": 0.9020413160324097, "eai_general_math": 0.00376141001470387, "eai_open_web_math": 0.15567660331726074, "eai_web_code": 0.00008379999781027436 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.6", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "616.01", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Pathology and Diseases" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,766,081,139,735,142,000
What is MyKFCExperience Survey Process? To respond to the survey and record your comments, you must go to the official KFC website where the survey is conducted. On the official survey website, www.mykfcexperience.com, you will find a form that you must complete correctly to win free Go Cup coupons. You can ask questions about your visit through the MyKFCExperience survey form. This could be related to the behaviour of the staff, their attitude towards you and the other guests, the cleanliness of the store, the speed with which the team serves you, the quality of the food, etc. To participate in the KFC Customer Satisfaction Survey, you must meet the following requirements. You should also follow the instructions below. Instructions on MyKFCExperience Survey Process 1. Open any internet browser on your device. 2. Visit the official KFC survey website. 3. Select the desired language. 4. Enter the time of your visit and the request code on your receipt. 5. Then click on “Start” to begin the process. 6. Sincerely, answer all the questions. 7. Finally, submit your survey. 8. At the end of the survey, you will receive a coupon that you can redeem on your next visit. 9. You can share your experiences through this survey. In addition, you can share your opinion about the quality of food and services. And make sure you have a valid receipt. You will receive a discount coupon code at the end of the survey. With this code, you can use offers and discounts from the KFC store. NameMyKFCExperience.com ProvidesCoupons Validity30 Days LanguageEnglish, Spanish AgeMinimum 18 Years Necessary requirements: • A PC or smartphone with Internet access. • KFC receipt with application code. • At least 18 years old • You must know English or Spanish. Conclusion: In addition, the survey is not only to record your comments, but also to make suggestions about food and other services. The survey form also contains a column where you can submit your complaint about inappropriate behaviour, poor quality food, etc. Leave a Reply Your email address will not be published. Required fields are marked *
{ "url": "https://www.mykfcexperience.us/what-is-survey-process/", "source_domain": "www.mykfcexperience.us", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "20706", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MFSIZ7HHS2LKCLQQ3UJZPBB3WU7F6VGD", "WARC-Concurrent-To": "<urn:uuid:595df267-d7e3-4cf4-9c45-e25554a27aa3>", "WARC-Date": "2019-10-20T22:33:41Z", "WARC-IP-Address": "104.31.90.94", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:NEIAVGGMHJVNYYCZUFHJMHQGOIDPZXOS", "WARC-Record-ID": "<urn:uuid:5aa9a953-038d-49a4-8e26-8e266baec1d5>", "WARC-Target-URI": "https://www.mykfcexperience.us/what-is-survey-process/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:3cfe82d0-e197-4d1f-8221-d81b9d4db5ee>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 40, 41, 382, 383, 587, 588, 733, 734, 781, 782, 829, 873, 907, 979, 1028, 1070, 1104, 1201, 1258, 1259, 1514, 1515, 1539, 1555, 1571, 1596, 1616, 1617, 1641, 1642, 1687, 1726, 1752, 1790, 1791, 1803, 1804, 2055, 2056, 2070, 2071 ], "line_end_idx": [ 40, 41, 382, 383, 587, 588, 733, 734, 781, 782, 829, 873, 907, 979, 1028, 1070, 1104, 1201, 1258, 1259, 1514, 1515, 1539, 1555, 1571, 1596, 1616, 1617, 1641, 1642, 1687, 1726, 1752, 1790, 1791, 1803, 1804, 2055, 2056, 2070, 2071, 2141 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2141, "ccnet_original_nlines": 41, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37681159377098083, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.016908209770917892, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1859903335571289, "rps_doc_frac_unique_words": 0.467048704624176, "rps_doc_mean_word_length": 4.8510026931762695, "rps_doc_num_sentences": 39, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.61066198348999, "rps_doc_word_count": 349, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.02244536019861698, "rps_doc_frac_chars_dupe_6grams": 0.02244536019861698, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.031896039843559265, "rps_doc_frac_chars_top_3gram": 0.03307738155126572, "rps_doc_frac_chars_top_4gram": 0.011813350021839142, "rps_doc_books_importance": -161.12152099609375, "rps_doc_books_importance_length_correction": -161.12152099609375, "rps_doc_openwebtext_importance": -99.33009338378906, "rps_doc_openwebtext_importance_length_correction": -99.33009338378906, "rps_doc_wikipedia_importance": -71.04251861572266, "rps_doc_wikipedia_importance_length_correction": -71.04251861572266 }, "fasttext": { "dclm": 0.02094889059662819, "english": 0.9222502112388611, "fineweb_edu_approx": 1.1060413122177124, "eai_general_math": 0.0003954799904022366, "eai_open_web_math": 0.07677298784255981, "eai_web_code": 0.00002049999966402538 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.82", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "1", "label": "Factual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "21", "label": "Customer Support" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
3,227,326,228,547,623,400
PA masthead image Search the Site Submit a Description FAQ   Portrait #2714 Adopt this portrait! Buy one portrait by this artist and get a second (by the same artist) FREE. Artist: Cas Media:digital media Customization What is the artist willing to change to make this piece more exactly your character? Please e-mail me with your ideas. How much might it cost? Please inquire. You must contact the artist to negotiate customization. Request customization Standard Adoption Package: $45 Print size:5.5 x 8.5 in Web Adoption Package: $40 Detail: (U.S. quarter size approx. 1 inch or 2.5 cm, shown as placed on actual print at largest size available.) Adopt this portrait! | Find a Portrait | FAQ | Submit a Description | Contact EMG | Privacy Policy| . Fantasy coloring books from Ellen Million Graphics Get a pre-made portrait, ready to go! A 48 hour creative jam for artists An e-zine for fantasy artists and writers A shared world adventure Return to Ellen Million Graphics Content and graphics copyright 2002-2014 Ellen Million Graphics.  All rights reserved. Artwork is copyright to the respective artist. PA powered by: a few minions and lots of enchanted search frogs Fri, 18 Oct 2019 16:25:22 -0700
{ "url": "https://portraitadoption.com/portrait.php?id=2714", "source_domain": "portraitadoption.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "13603", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IQOO4N52G33JRKVFOX25FESMNAATMKA3", "WARC-Concurrent-To": "<urn:uuid:a82e1c3e-c90a-42a9-a705-ea4ad17eb00d>", "WARC-Date": "2019-10-18T23:25:22Z", "WARC-IP-Address": "208.113.174.170", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:4R7DYBVDJVNNEYV5MTMSTHNY7O6SZLNS", "WARC-Record-ID": "<urn:uuid:ad259531-ed33-437f-bd13-a971b618d4b5>", "WARC-Target-URI": "https://portraitadoption.com/portrait.php?id=2714", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:593cfd3f-5f65-4fdd-bff7-1355139a9bef>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-206.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 18, 19, 20, 36, 37, 58, 59, 63, 64, 66, 67, 82, 83, 104, 105, 106, 182, 183, 191, 192, 196, 216, 217, 231, 232, 317, 351, 352, 376, 392, 393, 471, 472, 473, 504, 528, 554, 555, 563, 564, 609, 669, 670, 691, 692, 771, 772, 773, 775, 776, 967, 968, 969, 1002, 1003, 1090, 1137, 1138, 1139, 1203 ], "line_end_idx": [ 18, 19, 20, 36, 37, 58, 59, 63, 64, 66, 67, 82, 83, 104, 105, 106, 182, 183, 191, 192, 196, 216, 217, 231, 232, 317, 351, 352, 376, 392, 393, 471, 472, 473, 504, 528, 554, 555, 563, 564, 609, 669, 670, 691, 692, 771, 772, 773, 775, 776, 967, 968, 969, 1002, 1003, 1090, 1137, 1138, 1139, 1203, 1234 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1234, "ccnet_original_nlines": 60, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.24015748500823975, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03937007859349251, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.26771652698516846, "rps_doc_frac_unique_words": 0.6787564754486084, "rps_doc_mean_word_length": 4.943005084991455, "rps_doc_num_sentences": 21, "rps_doc_symbol_to_word_ratio": 0.003937010187655687, "rps_doc_unigram_entropy": 4.6767168045043945, "rps_doc_word_count": 193, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03773584961891174, "rps_doc_frac_chars_top_3gram": 0.06289307773113251, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -109.73292541503906, "rps_doc_books_importance_length_correction": -109.73292541503906, "rps_doc_openwebtext_importance": -69.6076431274414, "rps_doc_openwebtext_importance_length_correction": -69.60763549804688, "rps_doc_wikipedia_importance": -45.14805603027344, "rps_doc_wikipedia_importance_length_correction": -45.14805603027344 }, "fasttext": { "dclm": 0.00010288000339642167, "english": 0.8470261693000793, "fineweb_edu_approx": 0.940470278263092, "eai_general_math": -0.0000014299999975264654, "eai_open_web_math": 0.005396539811044931, "eai_web_code": -0.000009059999683813658 } }
{ "free_decimal_correspondence": { "primary": { "code": "741.2", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Drawing — Technique and Caricatures and cartoons" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "9", "label": "FAQ" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,391,089,993,798,131,000
BEST SELECTION & PRICESBEST SELECTIONBEST PRICESPAY IN INSTALMENTS Spain July 2020 Tours & Trips The Great Escape Sale Unlock up to $600 in extra savings ends in 42:34:14 250+ July 2020 trips through Spain Sort: Popularity Filters Sort by Sort by • Best of Southern Spain "This tour was everything it was advertised to be. Good balance of tours and free..." Instant Booking Flexible payments destinations Madrid, Granada, Cordoba, Seville, Valencia, Barcelona+4 more starts/ ends in Madrid / Barcelona age range 12 to 70 year olds accommodation Hotel transport Train & Rail Country Region Southern Spain, Andalucia Travel style Family, Sightseeing, Christmas & New Year+1 more operator G Adventures Duration 8 days Price per day $206 From US$1,648 You save: $51 4 Jul 2020 10+ spaces left 11 Jul 2020 10+ spaces left View tour More information • Spanish Experience 2020 "The size of group was too big and the hotel rooms could be little spacious" Instant Booking Flexible payments destinations Madrid, Toledo, Seville, Granada, Guadix, Valencia, Peniscola, Barcelona+6 more starts/ ends in Madrid / Barcelona age range 5 to 80 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus operator Costsaver Duration 9 days Price per day $129 From US$1,159 You save: $36 4 Jul 2020 9 spaces left 11 Jul 2020 10+ spaces left View tour More information • Northern Spain end Barcelona (2019) "Northern Spain was a great experience. Beautiful countryside. Diverse people. Interesting..." Instant Booking Flexible payments destinations Madrid, Guadarrama, Santiago de Compostela, Oviedo, Cangas de Onis, Parque Nacional Picos de Europa, Covadonga, Santillana del Mar, Santander, Bilbao, Zumaia, San Sebastian, Pamplona, Barcelona+12 more starts/ ends in Madrid / Barcelona age range 5 to 99 year olds accommodation Hotel transport Coach / Bus, Private Vehicle, Plane+2 more Country Region Northern Spain Travel style Coach / Bus operator Insight Vacations -10% Duration 11 days Price per day $243 From $2,975 US$2,678 You save: $298 4 Jul 2020 9 spaces left 11 Jul 2020 10+ spaces left View tour More information • Spanish Wonder 2020 "The whole trip was well organized and enjoyable.more power & energy to maete" Instant Booking Flexible payments destinations Madrid, Toledo, Cordoba, Seville, Granada, Guadix, Valencia, Peniscola, Barcelona+7 more starts/ ends in Madrid / Barcelona age range 5 to 99 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus operator Trafalgar -10% Duration 9 days Price per day $210 From $2,095 US$1,886 You save: $210 4 Jul 2020 9 spaces left 11 Jul 2020 10+ spaces left View tour More information • Spanish Ring "The tour was terrific exposing the wonderful aspects of Spain in a short period of..." Instant Booking Flexible payments destinations Madrid, Zaragoza, Poblet, Monestir de Montserrat, Barcelona, Peniscola, Valencia, Alicante, Caravaca de la Cruz, Granada, Malaga, Marbella, Ronda, Seville, Cordoba+13 more starts/ ends in Madrid / Madrid age range 1 to 99 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus, Christmas & New Year+1 more operator Europamundo Duration 10 days Price per day $90 From US$904 Sign up to save $23 7 Jul 2020 10+ spaces left 14 Jul 2020 10+ spaces left View tour More information • Spanish Wonder End Madrid 2020 9 day discovery tour through Madrid, Toledo, Cordoba and 6 other destinations in Spain Instant Booking Flexible payments destinations Madrid, Toledo, Cordoba, Seville, Granada, Guadix, Valencia, Peniscola, Barcelona+7 more starts/ ends in Madrid / Madrid age range 5 to 99 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus operator Trafalgar -10% Duration 9 days Price per day $210 From $2,095 US$1,886 You save: $210 4 Jul 2020 9 spaces left 11 Jul 2020 10+ spaces left View tour More information • Ibiza Blast "Traveling solo through Europe I decided to join the Busabout Ibiza Blast cause I..." Instant Booking Flexible payments destinations Ibiza starts/ ends in Ibiza / Ibiza age range 18 to 99 year olds Islands Balearic Islands, Ibiza operator Busabout Duration 4 days Price per day $111 From US$445 You save: $14 3 Jul 2020 10+ spaces left 7 Jul 2020 10+ spaces left View tour More information • Walking the Picos de Europa "The worst part of the tour was the weather which is something we can't control. The..." Instant Booking Flexible payments destinations Bilbao, Arenas de Cabrales, Caraves, Canales, Cain, Parque Nacional Picos de Europa+5 more starts/ ends in Bilbao / Bilbao age range 16 to 99 year olds accommodation Hotel Country Region Northern Spain, Cantabria & Asturias, Picos de Europa+2 more Travel style Adventure, Mountain Hikes, Centre Based Walking Holidays+1 more operator Exodus Travels Duration 8 days Price per day $179 From US$1,435 You save: $44 4 Jul 2020 8 spaces left 11 Jul 2020 8 spaces left View tour More information • Classical Spain "Ana Teixido from europamundo was very kind and helpful in any way she can. She exceeded..." Instant Booking Flexible payments destinations Madrid, Granada, Malaga, Marbella, Ronda, Seville, Zaragoza, Poblet, Monestir de Montserrat, Barcelona+8 more starts/ ends in Madrid / Barcelona age range 1 to 99 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus, Christmas & New Year+1 more operator Europamundo Duration 8 days Price per day $101 From US$810 Sign up to save $20 4 Jul 2020 10+ spaces left 11 Jul 2020 10+ spaces left View tour More information • Highlights of Spain (2020) "My Highlights of Spain trip was amazing! I booked, showed up, and everything was..." Instant Booking Flexible payments destinations Barcelona, Peniscola, Valencia, Lorca, Purullena, Parque Nacional de Sierra Nevada, Granada, Seville, Cordoba, Madrid+8 more starts/ ends in Barcelona / Madrid age range 5 to 99 year olds accommodation Hotel transport Coach / Bus, Private Vehicle, Plane+2 more Travel style Coach / Bus operator Insight Vacations -10% Duration 9 days Price per day $250 From $2,495 US$2,246 You save: $250 4 Jul 2020 9 spaces left 11 Jul 2020 10+ spaces left View tour More information • North Spain Discovery "Our tour guide, Carlos Sanchez, took our trip to the next level. He knew every popular..." Instant Booking Flexible payments destinations Barcelona, Pamplona, Logrono, San Sebastian, Madrid+3 more starts/ ends in Barcelona / Madrid age range 15 to 99 year olds accommodation Hotel transport Train & Rail, Local Transport, Private Vehicle+2 more Country Region Northern Spain Travel style Historical operator Intrepid Travel Duration 8 days Price per day $249 From US$1,993 You save: $62 18 Jul 2020 10+ spaces left 25 Jul 2020 10+ spaces left View tour More information • Madrid and Barcelona "The itinerary & the scheduling wasn't so rushed, they gave us plenty of free time...." Instant Booking Flexible payments destinations Madrid, Zaragoza, Poblet, Monestir de Montserrat, Barcelona+3 more starts/ ends in Madrid / Barcelona age range 1 to 99 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus, Christmas & New Year+1 more operator Europamundo Duration 5 days Price per day $66 From US$331 Sign up to save $8 7 Jul 2020 10+ spaces left 14 Jul 2020 10+ spaces left View tour More information • Ibiza & Beyond "Megs was amazing; the best trip manager i have ever had! She is a ball of fun and..." Instant Booking Flexible payments destinations Barcelona, Ibiza, Valencia, Madrid+2 more starts/ ends in Barcelona / Madrid age range 18 to 35 year olds accommodation Hostel, Hotel transport Train & Rail Islands Ibiza Travel style Historical operator Contiki -25% Duration 9 days Price per day $167 From $2,005 US$1,504 • +$140 upfront costs Sign up to save $539 7 Jul 2020 10 spaces left 12 Jul 2020 8 spaces left View tour More information • Discover Moorish Spain National Geographic Journeys "The trip was beyond my expectations. Our Guide, Lalo was very considerate and very..." Instant Booking Flexible payments destinations Madrid, Toledo, Cordoba, Granada, Ronda, Seville+4 more starts/ ends in Madrid / Seville age range 12 to 70 year olds accommodation Hotel transport Train & Rail, Local Transport+1 more Country Region Southern Spain, Andalucia Travel style Family, In-depth Cultural operator National Geographic Journeys with G Adventures Duration 8 days Price per day $236 From US$1,891 You save: $58 12 Jul 2020 10+ spaces left 26 Jul 2020 10+ spaces left View tour More information • Best of Spain 2020 "Amazing all are in time and order and great tour guide" Instant Booking Flexible payments destinations Madrid, Burgos, Santander, Bilbao, San Sebastian, Pamplona, Zaragoza, Barcelona, Peniscola, Valencia, Granada, Costa del Sol, Marbella, Gibraltar, Seville, Cordoba, Toledo+15 more starts/ ends in Madrid / Madrid age range 5 to 99 year olds accommodation Hotel transport Coach / Bus Travel style Coach / Bus operator Trafalgar -10% Duration 15 days Price per day $195 From $3,250 US$2,925 You save: $325 3 Jul 2020 10+ spaces left 10 Jul 2020 8 spaces left View tour More information Load more Spain July 2020 Tours & Trips Reviews • "Like all of the places we went to but would have liked to stay longer at a few places...." Best of Southern Spain • "Great experienced! The best places were awesome! Hotels were great. Wonderful tour..." Spanish Experience 2020 • "We spent so much time on the bus, even if we weren’t going that far. When we stopped..." Northern Spain end Barcelona (2019) • "This cost saver tour isn't cost saving. The optional tours add up to a usual tour...." Spanish Wonder 2020 • "The tour was terrific exposing the wonderful aspects of Spain in a short period of..." Spanish Ring • "I went on Tony's Busabout Ibiza Blast tour and he is an insane tour guide! His commitment..." Ibiza Blast
{ "url": "https://www.tourradar.com/m/spain-july-2020", "source_domain": "www.tourradar.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "275527", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:7TZG4BFLUEAJ42DAJQWZSEUU5NHBTWEX", "WARC-Concurrent-To": "<urn:uuid:29aa27bd-9c42-4fd2-82f3-e1d5c17e1437>", "WARC-Date": "2019-10-15T12:26:22Z", "WARC-IP-Address": "35.169.134.49", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:JQZDLIQ46LLOPPSHDWKR6KIWGA2P5ICG", "WARC-Record-ID": "<urn:uuid:b9117e0c-6cd1-4698-b418-6e81e3643ed5>", "WARC-Target-URI": "https://www.tourradar.com/m/spain-july-2020", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:217e7d45-0e17-43e9-b8f0-67894bdb6073>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-65.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 67, 97, 154, 171, 172, 207, 208, 225, 233, 241, 249, 276, 277, 367, 387, 409, 426, 492, 512, 535, 549, 572, 590, 600, 614, 631, 650, 680, 697, 750, 763, 780, 793, 804, 822, 831, 840, 853, 871, 886, 906, 922, 942, 956, 977, 1005, 1006, 1087, 1107, 1129, 1146, 1230, 1250, 1273, 1287, 1309, 1327, 1337, 1351, 1367, 1384, 1400, 1413, 1427, 1440, 1451, 1469, 1478, 1487, 1500, 1518, 1533, 1551, 1567, 1587, 1601, 1622, 1662, 1663, 1762, 1782, 1804, 1821, 2027, 2047, 2070, 2084, 2106, 2124, 2134, 2148, 2195, 2214, 2233, 2250, 2266, 2279, 2301, 2310, 2323, 2335, 2353, 2362, 2371, 2382, 2395, 2414, 2429, 2447, 2463, 2483, 2497, 2518, 2542, 2543, 2626, 2646, 2668, 2685, 2778, 2798, 2821, 2835, 2857, 2875, 2885, 2899, 2915, 2932, 2948, 2961, 2975, 2984, 2997, 3008, 3026, 3035, 3044, 3055, 3068, 3087, 3102, 3120, 3136, 3156, 3170, 3191, 3208, 3209, 3301, 3321, 3343, 3360, 3536, 3556, 3576, 3590, 3612, 3630, 3640, 3654, 3670, 3687, 3732, 3745, 3761, 3774, 3786, 3804, 3812, 3821, 3832, 3856, 3871, 3891, 3907, 3927, 3941, 3962, 3997, 3998, 4089, 4090, 4110, 4132, 4149, 4242, 4262, 4282, 4296, 4318, 4336, 4346, 4360, 4376, 4393, 4409, 4422, 4436, 4445, 4458, 4469, 4487, 4496, 4505, 4516, 4529, 4548, 4563, 4581, 4597, 4617, 4631, 4652, 4668, 4669, 4759, 4779, 4801, 4818, 4828, 4848, 4866, 4880, 4903, 4915, 4943, 4956, 4969, 4982, 4993, 5011, 5020, 5029, 5040, 5058, 5073, 5093, 5108, 5128, 5142, 5163, 5195, 5196, 5289, 5309, 5331, 5348, 5443, 5463, 5483, 5497, 5520, 5538, 5548, 5567, 5632, 5649, 5717, 5730, 5749, 5762, 5773, 5791, 5800, 5809, 5822, 5840, 5855, 5873, 5889, 5907, 5921, 5942, 5962, 5963, 6060, 6080, 6102, 6119, 6233, 6253, 6276, 6290, 6312, 6330, 6340, 6354, 6370, 6387, 6432, 6445, 6461, 6474, 6485, 6503, 6512, 6521, 6532, 6556, 6571, 6591, 6607, 6627, 6641, 6662, 6693, 6694, 6784, 6804, 6826, 6843, 6972, 6992, 7015, 7029, 7051, 7069, 7079, 7093, 7140, 7157, 7173, 7186, 7208, 7217, 7230, 7241, 7259, 7268, 7277, 7288, 7301, 7320, 7335, 7353, 7369, 7389, 7403, 7424, 7450, 7451, 7547, 7567, 7589, 7606, 7669, 7689, 7712, 7726, 7749, 7767, 7777, 7791, 7849, 7868, 7887, 7904, 7919, 7932, 7952, 7965, 7976, 7994, 8003, 8012, 8025, 8043, 8059, 8079, 8095, 8115, 8129, 8150, 8175, 8176, 8268, 8288, 8310, 8327, 8398, 8418, 8441, 8455, 8477, 8495, 8505, 8519, 8535, 8552, 8597, 8610, 8626, 8639, 8650, 8668, 8676, 8685, 8696, 8719, 8734, 8754, 8770, 8790, 8804, 8825, 8844, 8845, 8936, 8956, 8978, 8995, 9041, 9061, 9084, 9098, 9121, 9139, 9157, 9171, 9188, 9200, 9210, 9227, 9242, 9255, 9267, 9276, 9289, 9300, 9318, 9327, 9336, 9347, 9360, 9386, 9411, 9426, 9445, 9461, 9479, 9493, 9514, 9570, 9571, 9663, 9683, 9705, 9722, 9782, 9802, 9823, 9837, 9860, 9878, 9888, 9902, 9943, 9962, 9992, 10009, 10039, 10052, 10103, 10116, 10127, 10145, 10154, 10163, 10176, 10194, 10210, 10230, 10246, 10266, 10280, 10301, 10324, 10325, 10386, 10406, 10428, 10445, 10629, 10649, 10669, 10683, 10705, 10723, 10733, 10747, 10763, 10780, 10796, 10809, 10823, 10832, 10845, 10857, 10875, 10884, 10893, 10904, 10917, 10936, 10951, 10971, 10987, 11005, 11019, 11040, 11050, 11051, 11089, 11090, 11186, 11213, 11305, 11333, 11427, 11467, 11559, 11583, 11675, 11692, 11791 ], "line_end_idx": [ 67, 97, 154, 171, 172, 207, 208, 225, 233, 241, 249, 276, 277, 367, 387, 409, 426, 492, 512, 535, 549, 572, 590, 600, 614, 631, 650, 680, 697, 750, 763, 780, 793, 804, 822, 831, 840, 853, 871, 886, 906, 922, 942, 956, 977, 1005, 1006, 1087, 1107, 1129, 1146, 1230, 1250, 1273, 1287, 1309, 1327, 1337, 1351, 1367, 1384, 1400, 1413, 1427, 1440, 1451, 1469, 1478, 1487, 1500, 1518, 1533, 1551, 1567, 1587, 1601, 1622, 1662, 1663, 1762, 1782, 1804, 1821, 2027, 2047, 2070, 2084, 2106, 2124, 2134, 2148, 2195, 2214, 2233, 2250, 2266, 2279, 2301, 2310, 2323, 2335, 2353, 2362, 2371, 2382, 2395, 2414, 2429, 2447, 2463, 2483, 2497, 2518, 2542, 2543, 2626, 2646, 2668, 2685, 2778, 2798, 2821, 2835, 2857, 2875, 2885, 2899, 2915, 2932, 2948, 2961, 2975, 2984, 2997, 3008, 3026, 3035, 3044, 3055, 3068, 3087, 3102, 3120, 3136, 3156, 3170, 3191, 3208, 3209, 3301, 3321, 3343, 3360, 3536, 3556, 3576, 3590, 3612, 3630, 3640, 3654, 3670, 3687, 3732, 3745, 3761, 3774, 3786, 3804, 3812, 3821, 3832, 3856, 3871, 3891, 3907, 3927, 3941, 3962, 3997, 3998, 4089, 4090, 4110, 4132, 4149, 4242, 4262, 4282, 4296, 4318, 4336, 4346, 4360, 4376, 4393, 4409, 4422, 4436, 4445, 4458, 4469, 4487, 4496, 4505, 4516, 4529, 4548, 4563, 4581, 4597, 4617, 4631, 4652, 4668, 4669, 4759, 4779, 4801, 4818, 4828, 4848, 4866, 4880, 4903, 4915, 4943, 4956, 4969, 4982, 4993, 5011, 5020, 5029, 5040, 5058, 5073, 5093, 5108, 5128, 5142, 5163, 5195, 5196, 5289, 5309, 5331, 5348, 5443, 5463, 5483, 5497, 5520, 5538, 5548, 5567, 5632, 5649, 5717, 5730, 5749, 5762, 5773, 5791, 5800, 5809, 5822, 5840, 5855, 5873, 5889, 5907, 5921, 5942, 5962, 5963, 6060, 6080, 6102, 6119, 6233, 6253, 6276, 6290, 6312, 6330, 6340, 6354, 6370, 6387, 6432, 6445, 6461, 6474, 6485, 6503, 6512, 6521, 6532, 6556, 6571, 6591, 6607, 6627, 6641, 6662, 6693, 6694, 6784, 6804, 6826, 6843, 6972, 6992, 7015, 7029, 7051, 7069, 7079, 7093, 7140, 7157, 7173, 7186, 7208, 7217, 7230, 7241, 7259, 7268, 7277, 7288, 7301, 7320, 7335, 7353, 7369, 7389, 7403, 7424, 7450, 7451, 7547, 7567, 7589, 7606, 7669, 7689, 7712, 7726, 7749, 7767, 7777, 7791, 7849, 7868, 7887, 7904, 7919, 7932, 7952, 7965, 7976, 7994, 8003, 8012, 8025, 8043, 8059, 8079, 8095, 8115, 8129, 8150, 8175, 8176, 8268, 8288, 8310, 8327, 8398, 8418, 8441, 8455, 8477, 8495, 8505, 8519, 8535, 8552, 8597, 8610, 8626, 8639, 8650, 8668, 8676, 8685, 8696, 8719, 8734, 8754, 8770, 8790, 8804, 8825, 8844, 8845, 8936, 8956, 8978, 8995, 9041, 9061, 9084, 9098, 9121, 9139, 9157, 9171, 9188, 9200, 9210, 9227, 9242, 9255, 9267, 9276, 9289, 9300, 9318, 9327, 9336, 9347, 9360, 9386, 9411, 9426, 9445, 9461, 9479, 9493, 9514, 9570, 9571, 9663, 9683, 9705, 9722, 9782, 9802, 9823, 9837, 9860, 9878, 9888, 9902, 9943, 9962, 9992, 10009, 10039, 10052, 10103, 10116, 10127, 10145, 10154, 10163, 10176, 10194, 10210, 10230, 10246, 10266, 10280, 10301, 10324, 10325, 10386, 10406, 10428, 10445, 10629, 10649, 10669, 10683, 10705, 10723, 10733, 10747, 10763, 10780, 10796, 10809, 10823, 10832, 10845, 10857, 10875, 10884, 10893, 10904, 10917, 10936, 10951, 10971, 10987, 11005, 11019, 11040, 11050, 11051, 11089, 11090, 11186, 11213, 11305, 11333, 11427, 11467, 11559, 11583, 11675, 11692, 11791, 11806 ] }
{ "red_pajama_v2": { "ccnet_original_length": 11806, "ccnet_original_nlines": 526, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.11579979956150055, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.013738960027694702, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.33807656168937683, "rps_doc_frac_unique_words": 0.2610647976398468, "rps_doc_mean_word_length": 4.983963966369629, "rps_doc_num_sentences": 35, "rps_doc_symbol_to_word_ratio": 0.008341509848833084, "rps_doc_unigram_entropy": 5.2615814208984375, "rps_doc_word_count": 1559, "rps_doc_frac_chars_dupe_10grams": 0.3467181622982025, "rps_doc_frac_chars_dupe_5grams": 0.5691119432449341, "rps_doc_frac_chars_dupe_6grams": 0.5141569972038269, "rps_doc_frac_chars_dupe_7grams": 0.45598456263542175, "rps_doc_frac_chars_dupe_8grams": 0.4236808121204376, "rps_doc_frac_chars_dupe_9grams": 0.36563706398010254, "rps_doc_frac_chars_top_2gram": 0.027027029544115067, "rps_doc_frac_chars_top_3gram": 0.024324320256710052, "rps_doc_frac_chars_top_4gram": 0.04054053872823715, "rps_doc_books_importance": -803.746826171875, "rps_doc_books_importance_length_correction": -803.746826171875, "rps_doc_openwebtext_importance": -583.2504272460938, "rps_doc_openwebtext_importance_length_correction": -583.2504272460938, "rps_doc_wikipedia_importance": -405.0956115722656, "rps_doc_wikipedia_importance_length_correction": -405.0956115722656 }, "fasttext": { "dclm": 0.00000763000025472138, "english": 0.7622232437133789, "fineweb_edu_approx": 1.0083948373794556, "eai_general_math": 0.00004600999818649143, "eai_open_web_math": 0.1246223971247673, "eai_web_code": -0.00000810999972600257 } }
{ "free_decimal_correspondence": { "primary": { "code": "914.6", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "Europe — Description and travel" } }, "secondary": { "code": "910.4", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "24", "label": "User Review" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
3,803,527,200,627,967,500
threeboxerlover Anyone know what Rose this is? threeboxerlover DEZ7a September 12, 2019 It's miniature for sure and the blooms start out tinted pink and turn white as they age. I picked it up at a garden center not long ago. It had no blooms at the time and I did not realize it was a miniature (that's obvious now!). Anyway - it has turned into a bloomer for sure! It's still in the pot it came in and at any moment will have a dozen small blooms in various stages. It really is a nice little bush so I'd love to know what it is - if anyone knows! Comments (11) Need help with an existing Houzz order? Call 1-800-368-4268
{ "url": "https://www.houzz.com/discussions/5786440/anyone-know-what-rose-this-is", "source_domain": "www.houzz.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "278506", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:65RFU6326HO3MVILFE6TV6NEBQ54ZAMB", "WARC-Concurrent-To": "<urn:uuid:487fb431-ac99-4cec-936a-4e9f9e490119>", "WARC-Date": "2019-10-18T01:13:57Z", "WARC-IP-Address": "151.101.248.93", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:HIPNNHIR32FSAGCS4H5OBIVMBRFGZRZR", "WARC-Record-ID": "<urn:uuid:f2c33e2e-80fe-4469-a335-6768a2269a48>", "WARC-Target-URI": "https://www.houzz.com/discussions/5786440/anyone-know-what-rose-this-is", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b068b167-36c3-4c8e-a3bd-a074b2e41f67>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-206.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 16, 17, 48, 49, 71, 90, 91, 552, 553, 554, 555, 569, 570 ], "line_end_idx": [ 16, 17, 48, 49, 71, 90, 91, 552, 553, 554, 555, 569, 570, 629 ] }
{ "red_pajama_v2": { "ccnet_original_length": 629, "ccnet_original_nlines": 13, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.4726027548313141, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.020547950640320778, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19178082048892975, "rps_doc_frac_unique_words": 0.7203390002250671, "rps_doc_mean_word_length": 4.06779670715332, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.282923221588135, "rps_doc_word_count": 118, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03333333134651184, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -55.62616729736328, "rps_doc_books_importance_length_correction": -67.43534851074219, "rps_doc_openwebtext_importance": -41.62662124633789, "rps_doc_openwebtext_importance_length_correction": -53.43579864501953, "rps_doc_wikipedia_importance": -27.23335075378418, "rps_doc_wikipedia_importance_length_correction": -39.04253005981445 }, "fasttext": { "dclm": 0.0017563099972903728, "english": 0.9669982194900513, "fineweb_edu_approx": 0.9798488616943359, "eai_general_math": 0.003415049985051155, "eai_open_web_math": 0.2696646451950073, "eai_web_code": 0.0010694300290197134 } }
{ "free_decimal_correspondence": { "primary": { "code": "635.95", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Gardening" } }, "secondary": { "code": "635", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Gardening" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
4,428,679,977,931,752,400
Advertisement Journal of Radioanalytical and Nuclear Chemistry , Volume 249, Issue 2, pp 307–315 | Cite as Use of lichen transplants in atmospheric deposition studies • M. C. FreitasEmail author • M. A. Reis • A. P. Marques • H. Th. Wolterbeek Article Abstract Transplants of the lichen Parmelia sulcata were suspended in nylonbags in a region within a rectangle of 15 km wide and 25 km long on a grid2.5 km × 2.5 km, centred in a oil powered station. In each of the 47places, two sets of four transplants each were hung in a system that rotatesaccording to the wind direction. One set was always facing the wind and theother downwind. Every three months for a 9-month period one transplant fromeach set was collected. The transplants were analysed by instrumental neutronactivation analysis (INAA) and proton induced X-ray emission (PIXE). The transplantbehavior according to the different exposure to the wind is investigated,and some emission sources are identified. Keywords Physical Chemistry Inorganic Chemistry Wind Direction INAA Atmospheric Deposition  These keywords were added by machine and not by the authors. This process is experimental and the keywords may be updated as the learning algorithm improves. Preview Unable to display preview. Download preview PDF. Unable to display preview. Download preview PDF. References 1. 1. M. C. Freitas,M. A. Reis,L. C. Alves,H. Th. Wolterbeek,T. Verburg,M. A. Gouveia, J. Radioanal. Nucl. Chem., 217 (1997) 21.CrossRefGoogle Scholar 2. 2. M. C. Freitas,A. S. Nobre, J. Radioanal. Nucl. Chem., 217 (1997) 17.CrossRefGoogle Scholar 3. 3. M. C. Freitas,M. A. Reis,L. C. Alves,H. Th. Wolterbeek, Environ. Pollut. 106 (1999) 229.CrossRefGoogle Scholar 4. 4. M. C. Freitas,M. A. Reis,L. C. Alves,A. P. Marques,C. Costa, Biol. Trace Elem. Res., 71/72 (1999) 471.CrossRefGoogle Scholar 5. 5. M. C. Freitas,M. A. Reis,A. P. Marques,H. T. Wolterbeek, J. Radioanal. Nucl. Chem., 244 (2000) 109.CrossRefGoogle Scholar 6. 6. J. E. Sloof, Environmental Lichenology Biomonitoring Trace Element Air Pollution, Ph.D. Thesis, Delft University of Technology, The Netherlands, 1993.Google Scholar 7. 7. M. A. Reis,L. C. Alves,M. C. Freitas,B. Van OS,H. Th. Wolterbeek, Sci. Total Env., 232 (1999) 105.CrossRefGoogle Scholar 8. 8. M. A. Reis, Quantitative Biomonitoring of Atmospheric Trace Elements in Portugal: Methods, Response Modelling and Nuclear Analytical Techniques, Ph.D. Thesis, Delft University of Technology, The Netherlands, 2000.Google Scholar 9. 9. M. A. Reis,L. C. Alves,A. P. Jesus, Nucl. Instr. Meth. Phys. Res., B109/110 (1996) 493.CrossRefGoogle Scholar 10. 10. S. F. Stone,M. C. Freitas,R. M. Parr,R. Zeisler, Fresenius J. Anal. Chem., 352 (1995) 227.CrossRefGoogle Scholar 11. 11. R. Dybczynski,H. Polkowska-Motrenco,Z. Samczynski,Z. Szopa, Preparation and Certification of the Polish Reference Material “Oriental Tobacco Leaves” for Inorganic Analysis, Raporty IchTJ. SERIA A nr 1/96, Inst. Nucl. Chem. and Techn., Warsaw, 1996.Google Scholar 12. 12. A. Bleise,B. Smodis, Report on the Intercomparison Run NAT-5 for the Determination of Trace and Minor Elements in two Lichen Samples, NAHRES-46, ed. IAEA, Vienna, 1999.Google Scholar 13. 13. H. G. Seiler,A. Sigel,H. Sigel, Handbook on Metals in Clinical and Analytical Chemistry, Marcel Dekker, Inc., New York, 1994.Google Scholar Copyright information © Kluwer Academic Publishers/Akadémiai Kiadó 2001 Authors and Affiliations • M. C. Freitas • 1 Email author • M. A. Reis • 1 • A. P. Marques • 1 • H. Th. Wolterbeek • 2 1. 1.ITN - Instituto Tecnológico e NuclearSacavémPortugal 2. 2.IRI – TU DelftDelftThe Netherlands Personalised recommendations
{ "url": "https://rd.springer.com/article/10.1023%2FA%3A1013229511154", "source_domain": "rd.springer.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "77420", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HHRTCANLVX4PESJIRPHRCI3EQU5F6FKE", "WARC-Concurrent-To": "<urn:uuid:437d8b36-0713-426a-8edb-ae9ee4232b0c>", "WARC-Date": "2019-10-20T08:49:31Z", "WARC-IP-Address": "151.101.248.95", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:ZPC533544I772UNAZCIDGYAJBRERPKYO", "WARC-Record-ID": "<urn:uuid:cf7a2a60-6e4b-4c48-8bec-8f16dbe57744>", "WARC-Target-URI": "https://rd.springer.com/article/10.1023%2FA%3A1013229511154", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ce2de3fa-82b7-4c51-92c0-945a263de96d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 14, 15, 64, 65, 109, 110, 170, 171, 201, 216, 234, 256, 264, 265, 274, 275, 984, 985, 994, 995, 1078, 1236, 1237, 1245, 1246, 1295, 1296, 1345, 1346, 1357, 1358, 1366, 1515, 1523, 1618, 1626, 1741, 1749, 1878, 1886, 2012, 2020, 2189, 2197, 2322, 2330, 2562, 2570, 2684, 2694, 2811, 2821, 3088, 3098, 3285, 3295, 3439, 3440, 3462, 3463, 3513, 3514, 3539, 3540, 3558, 3566, 3583, 3598, 3606, 3624, 3632, 3654, 3662, 3722, 3764, 3765 ], "line_end_idx": [ 14, 15, 64, 65, 109, 110, 170, 171, 201, 216, 234, 256, 264, 265, 274, 275, 984, 985, 994, 995, 1078, 1236, 1237, 1245, 1246, 1295, 1296, 1345, 1346, 1357, 1358, 1366, 1515, 1523, 1618, 1626, 1741, 1749, 1878, 1886, 2012, 2020, 2189, 2197, 2322, 2330, 2562, 2570, 2684, 2694, 2811, 2821, 3088, 3098, 3285, 3295, 3439, 3440, 3462, 3463, 3513, 3514, 3539, 3540, 3558, 3566, 3583, 3598, 3606, 3624, 3632, 3654, 3662, 3722, 3764, 3765, 3793 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3793, "ccnet_original_nlines": 76, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10256409645080566, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.1215161606669426, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.42809364199638367, "rps_doc_frac_unique_words": 0.5476190447807312, "rps_doc_mean_word_length": 5.155677795410156, "rps_doc_num_sentences": 188, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.301636695861816, "rps_doc_word_count": 546, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.1303730010986328, "rps_doc_frac_chars_dupe_6grams": 0.11545293033123016, "rps_doc_frac_chars_dupe_7grams": 0.08170515298843384, "rps_doc_frac_chars_dupe_8grams": 0.05328597128391266, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.004973359871655703, "rps_doc_frac_chars_top_3gram": 0.012433390133082867, "rps_doc_frac_chars_top_4gram": 0.015630550682544708, "rps_doc_books_importance": -278.25634765625, "rps_doc_books_importance_length_correction": -278.25634765625, "rps_doc_openwebtext_importance": -171.19570922851562, "rps_doc_openwebtext_importance_length_correction": -171.19570922851562, "rps_doc_wikipedia_importance": -120.220458984375, "rps_doc_wikipedia_importance_length_correction": -120.220458984375 }, "fasttext": { "dclm": 0.0054221199825406075, "english": 0.6039993762969971, "fineweb_edu_approx": 2.8881959915161133, "eai_general_math": 0.0051467400044202805, "eai_open_web_math": 0.5112786889076233, "eai_web_code": -0.000009780000254977494 } }
{ "free_decimal_correspondence": { "primary": { "code": "548.0", "labels": { "level_1": "Science and Natural history", "level_2": "Chemistry", "level_3": "Crystallography" } }, "secondary": { "code": "551.0", "labels": { "level_1": "Science and Natural history", "level_2": "Geology and Earth sciences", "level_3": "Physical geology and Geodynamics" } } }, "bloom_cognitive_process": { "primary": { "code": "4", "label": "Analyze" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "2", "label": "Academic/Research" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "3", "label": "Academic Writing" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "4", "label": "Graduate/Expert Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-7,473,817,813,810,996,000
• audi • chevrolet • honda • hyundai • lexus • mercedes benz • porsche • toyota Search Refine Reset Search • Search Results Filter   Page: Used 2019 Porsche Cayenne Turbo SUV Selling Price:$139,988 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Rhodium Silver Metallic Int. Color: Black/Bordeaux Red Transmission: Automatic Mileage: 2,971 Stock: 00490317 Drivetrain: AWD Engine: 8 Cylinders VIN WP1AF2AY3KDA80181 carfax one owner report Used 2018 Porsche Panamera Turbo Hatchback Selling Price:$139,991 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Black Int. Color: Black Transmission: Automatic Mileage: 15,016 Stock: 00680843 Drivetrain: AWD Engine: 8 Cylinders VIN WP0AF2A79JL141871 carfax report Used 2018 Porsche Panamera Turbo Hatchback Selling Price:$149,991 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Black Int. Color: Black/Luxor Beige Transmission: Automatic Mileage: 1,424 Stock: 680239 Drivetrain: AWD Engine: 8 Cylinders VIN WP0AF2A73JL141476 carfax report Used 2016 Porsche 911 Turbo Convertible Selling Price:$155,888 Schedule Test Drive Send to My Phone Click to Call Ext. Color: GT Silver Metallic Int. Color: Espresso Transmission: Automatic Mileage: 12,536 Stock: 00490356 Drivetrain: AWD Engine: 6 Cylinders VIN WP0CD2A96GS178214 carfax one owner report Used 2017 Porsche 911 Turbo Coupe Selling Price:$164,995 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Black Int. Color: Black Transmission: Automatic Mileage: 6,803 Stock: 381233 Drivetrain: AWD Engine: 6 Cylinders VIN WP0AD2A94HS167088 carfax report Used 2017 Porsche 911 Turbo Coupe Selling Price:$173,888 Schedule Test Drive Send to My Phone Click to Call Ext. Color: White Int. Color: Bordeaux Red Transmission: Automatic Mileage: 4,020 Stock: 00381279 Drivetrain: AWD Engine: 6 Cylinders VIN WP0AD2A94HS166412 carfax one owner report Used 2018 Porsche 911 Turbo Coupe Selling Price:$178,988 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Rhodium Silver Metallic Int. Color: Black Transmission: Automatic Mileage: 2,101 Stock: 00381257 Drivetrain: AWD Engine: 6 Cylinders VIN WP0AD2A97JS156544 carfax one owner report Used 2018 Porsche 911 Turbo Coupe Selling Price:$189,888 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Jet Black Metallic Int. Color: Black Transmission: Automatic Mileage: 9,700 Stock: 00381231 Drivetrain: AWD Engine: 6 Cylinders VIN WP0AD2A98JS156374 carfax one owner report Used 2019 Porsche 911 Turbo Coupe Selling Price:$198,999 Schedule Test Drive Send to My Phone Click to Call Ext. Color: Carrara White Metallic Int. Color: Black Transmission: Automatic Mileage: 475 Stock: 00490343 Drivetrain: AWD Engine: 6 Cylinders VIN WP0AD2A99KS140587 carfax one owner report Page Disclaimers: Prices do not include tax, title, license, doc fee of $85, plus any items added to the original MSRP of the vehicle. Prices shown are for in stock units only. Dealer is not responsible for and typographical errors. Contact dealer for most current information. fusionZONE Automotive, LLC. and Dealership makes no representations, expressed or implied, to any actual or prospective purchaser or owner of this vehicle as to the existence, ownership, accuracy, description or condition of this vehicle's listed equipment, accessories, price or any warranties. Any and all differences must be addressed prior to the sale of this vehicle. Prices do not include government fees and taxes, any finance charge, any electronic filing charge and any emissions testing charge. Building your garage... car garage icon
{ "url": "https://www.keyescars.com/inventory?condition=certified&type=used&standardtrim=Turbo", "source_domain": "www.keyescars.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "408222", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:N42LOABWAVP2TXKXMQ2HXCWXXAHZCDQA", "WARC-Concurrent-To": "<urn:uuid:131c4760-d278-4496-8db3-eac9094e7ac4>", "WARC-Date": "2019-10-15T16:33:03Z", "WARC-IP-Address": "54.88.124.39", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:QOVL7FTODJQBQKRA7QFPV3VSCOZDMTF2", "WARC-Record-ID": "<urn:uuid:b132216e-6205-448f-9b84-60a3774d3dca>", "WARC-Target-URI": "https://www.keyescars.com/inventory?condition=certified&type=used&standardtrim=Turbo", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:6b18360f-f8c7-4395-a80f-a1ec30cc4dc9>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 9, 23, 33, 45, 55, 73, 85, 96, 97, 104, 105, 112, 113, 126, 152, 154, 160, 161, 197, 198, 221, 272, 308, 339, 363, 378, 394, 410, 430, 452, 476, 477, 520, 521, 544, 595, 613, 631, 655, 671, 687, 703, 723, 745, 759, 760, 803, 804, 827, 878, 896, 926, 950, 965, 979, 995, 1015, 1037, 1051, 1052, 1092, 1093, 1116, 1167, 1198, 1219, 1243, 1259, 1275, 1291, 1311, 1333, 1357, 1358, 1392, 1393, 1416, 1467, 1485, 1503, 1527, 1542, 1556, 1572, 1592, 1614, 1628, 1629, 1663, 1664, 1687, 1738, 1756, 1781, 1805, 1820, 1836, 1852, 1872, 1894, 1918, 1919, 1953, 1954, 1977, 2028, 2064, 2082, 2106, 2121, 2137, 2153, 2173, 2195, 2219, 2220, 2254, 2255, 2278, 2329, 2360, 2378, 2402, 2417, 2433, 2449, 2469, 2491, 2515, 2516, 2550, 2551, 2574, 2625, 2660, 2678, 2702, 2715, 2731, 2747, 2767, 2789, 2813, 2818, 2819, 2832, 2833, 3466, 3467, 3599, 3600, 3624, 3625 ], "line_end_idx": [ 9, 23, 33, 45, 55, 73, 85, 96, 97, 104, 105, 112, 113, 126, 152, 154, 160, 161, 197, 198, 221, 272, 308, 339, 363, 378, 394, 410, 430, 452, 476, 477, 520, 521, 544, 595, 613, 631, 655, 671, 687, 703, 723, 745, 759, 760, 803, 804, 827, 878, 896, 926, 950, 965, 979, 995, 1015, 1037, 1051, 1052, 1092, 1093, 1116, 1167, 1198, 1219, 1243, 1259, 1275, 1291, 1311, 1333, 1357, 1358, 1392, 1393, 1416, 1467, 1485, 1503, 1527, 1542, 1556, 1572, 1592, 1614, 1628, 1629, 1663, 1664, 1687, 1738, 1756, 1781, 1805, 1820, 1836, 1852, 1872, 1894, 1918, 1919, 1953, 1954, 1977, 2028, 2064, 2082, 2106, 2121, 2137, 2153, 2173, 2195, 2219, 2220, 2254, 2255, 2278, 2329, 2360, 2378, 2402, 2417, 2433, 2449, 2469, 2491, 2515, 2516, 2550, 2551, 2574, 2625, 2660, 2678, 2702, 2715, 2731, 2747, 2767, 2789, 2813, 2818, 2819, 2832, 2833, 3466, 3467, 3599, 3600, 3624, 3625, 3640 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3640, "ccnet_original_nlines": 153, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1109510064125061, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.044668588787317276, "rps_doc_frac_lines_end_with_ellipsis": 0.006493510212749243, "rps_doc_frac_no_alph_words": 0.3083573579788208, "rps_doc_frac_unique_words": 0.35916823148727417, "rps_doc_mean_word_length": 5.517958641052246, "rps_doc_num_sentences": 28, "rps_doc_symbol_to_word_ratio": 0.0014409200521185994, "rps_doc_unigram_entropy": 4.7254767417907715, "rps_doc_word_count": 529, "rps_doc_frac_chars_dupe_10grams": 0.24460431933403015, "rps_doc_frac_chars_dupe_5grams": 0.477560818195343, "rps_doc_frac_chars_dupe_6grams": 0.4552929103374481, "rps_doc_frac_chars_dupe_7grams": 0.35662898421287537, "rps_doc_frac_chars_dupe_8grams": 0.30695444345474243, "rps_doc_frac_chars_dupe_9grams": 0.24460431933403015, "rps_doc_frac_chars_top_2gram": 0.036998968571424484, "rps_doc_frac_chars_top_3gram": 0.052415210753679276, "rps_doc_frac_chars_top_4gram": 0.06474819779396057, "rps_doc_books_importance": -216.32046508789062, "rps_doc_books_importance_length_correction": -216.32046508789062, "rps_doc_openwebtext_importance": -99.88742065429688, "rps_doc_openwebtext_importance_length_correction": -99.88742065429688, "rps_doc_wikipedia_importance": -62.40949249267578, "rps_doc_wikipedia_importance_length_correction": -62.40949249267578 }, "fasttext": { "dclm": -0.000009180000233754981, "english": 0.6589778065681458, "fineweb_edu_approx": 0.805828869342804, "eai_general_math": -0.000002859999995052931, "eai_open_web_math": 0.15166538953781128, "eai_web_code": -0.00000965999970503617 } }
{ "free_decimal_correspondence": { "primary": { "code": "629.22", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } }, "secondary": { "code": "658.6", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-9,141,674,070,101,465,000
Advertisement Drug Interactions With Portia Many medications, including numerous seizure medications, barbiturates, and protease inhibitors, may potentially cause drug interactions with Portia. These interactions can increase your risk of developing side effects or increase your chance of unintentional pregnancy. If you are ever unsure about any Portia drug interaction, it is a good idea to use backup contraception until you can talk to your healthcare provider. An Introduction to Portia Drug Interactions Portia® (levonorgestrel/ethinyl estradiol) is a generic version of Nordette®. It can potentially interact with several other medicines. Sometimes, these interactions can be severe enough to increase the risk of unintentional pregnancy, in which case a backup method of birth control is usually recommended. If you do not know what to do about any particular Portia drug interaction, it is a good idea to use backup birth control until you can speak with your healthcare provider, just in case. Some of the medicines that may lead to Portia interactions include: • Aminoglutethimide (Cytadren®) • Antibiotics • Aprepitant (Emend®) • Barbiturate medications, including (but not limited to):   • Amobarbital (Amytal®) • Butalbital (Fioricet®, Fiorinal®) • Pentobarbital (Nembutal®) • Phenobarbital (Luminal®) • Primidone (Mysoline®) • Secobarbital (Seconal®)   • Protease inhibitors, such as:   Last reviewed by: Kristi Monson, PharmD Advertisement 4 Relationship Skills for People With ADHD
{ "url": "http://women.emedtv.com/portia/drug-interactions-with-portia.html", "source_domain": "women.emedtv.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "65982", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:XJVLIITDY25K5IQRHCFN4FXH7DE57QRR", "WARC-Concurrent-To": "<urn:uuid:43e5e78a-f11b-42e8-a4e3-e00eab67b091>", "WARC-Date": "2019-10-14T18:59:12Z", "WARC-IP-Address": "54.225.185.37", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:MCUCPIL4K2ZRH7IH7OYHKWONHDUCD6Q4", "WARC-Record-ID": "<urn:uuid:4a04984a-87d6-412e-9749-6057b350310d>", "WARC-Target-URI": "http://women.emedtv.com/portia/drug-interactions-with-portia.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b6fe1a35-cf0a-441f-b6bc-fb539d6ef341>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 14, 15, 45, 46, 469, 470, 514, 515, 1077, 1111, 1127, 1151, 1212, 1213, 1215, 1216, 1244, 1284, 1316, 1347, 1375, 1405, 1406, 1408, 1409, 1443, 1444, 1446, 1447, 1487, 1501 ], "line_end_idx": [ 14, 15, 45, 46, 469, 470, 514, 515, 1077, 1111, 1127, 1151, 1212, 1213, 1215, 1216, 1244, 1284, 1316, 1347, 1375, 1405, 1406, 1408, 1409, 1443, 1444, 1446, 1447, 1487, 1501, 1543 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1543, "ccnet_original_nlines": 31, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.30651339888572693, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0038314200937747955, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2183907926082611, "rps_doc_frac_unique_words": 0.5720930099487305, "rps_doc_mean_word_length": 5.739534854888916, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.56326150894165, "rps_doc_word_count": 215, "rps_doc_frac_chars_dupe_10grams": 0.07293354719877243, "rps_doc_frac_chars_dupe_5grams": 0.07293354719877243, "rps_doc_frac_chars_dupe_6grams": 0.07293354719877243, "rps_doc_frac_chars_dupe_7grams": 0.07293354719877243, "rps_doc_frac_chars_dupe_8grams": 0.07293354719877243, "rps_doc_frac_chars_dupe_9grams": 0.07293354719877243, "rps_doc_frac_chars_top_2gram": 0.03889789059758186, "rps_doc_frac_chars_top_3gram": 0.032414909452199936, "rps_doc_frac_chars_top_4gram": 0.04213938117027283, "rps_doc_books_importance": -106.6989517211914, "rps_doc_books_importance_length_correction": -94.95256042480469, "rps_doc_openwebtext_importance": -66.15946960449219, "rps_doc_openwebtext_importance_length_correction": -66.15946960449219, "rps_doc_wikipedia_importance": -37.09830093383789, "rps_doc_wikipedia_importance_length_correction": -23.668703079223633 }, "fasttext": { "dclm": 0.0011097800452262163, "english": 0.8717249035835266, "fineweb_edu_approx": 2.7965199947357178, "eai_general_math": 0.0010234100045636296, "eai_open_web_math": 0.4003644585609436, "eai_web_code": 0.000034929998946608976 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.857", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "615.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "10", "label": "Knowledge Article" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-7,307,542,003,810,253,000
× Scotland Scotland People Stats Definitions • Population: Population, total refers to the total population. STAT AMOUNT DATE RANK Population 5.29 million 2014 3rd out of 5 SOURCES: World Bank: (1) United Nations Population Division. World Population Prospects, (2) United Nations Statistical Division. Population and Vital Statistics Report (various years), (3) Census reports and other statistical publications from national statistical offices, (4) Eurostat: Demographic Statistics, (5) Secretariat of the Pacific Community: Statistics and Demography Programme, and (6) U.S. Census Bureau: International Database. Citation Scotland People Profiles (Subcategories) Widows 6
{ "url": "https://www.nationmaster.com/country-info/profiles/Scotland/People", "source_domain": "www.nationmaster.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "155132", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LPEM34YCNK3BTS6K77FBUY3LUQE5HLU6", "WARC-Concurrent-To": "<urn:uuid:35cb37e7-a8ec-4142-a3b7-57c499c50070>", "WARC-Date": "2019-10-18T23:31:44Z", "WARC-IP-Address": "138.201.220.219", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:RFCLXBTNNOX26FNZ4SXTVOU5LTREWXVE", "WARC-Record-ID": "<urn:uuid:1895012a-7c6d-4d2c-bb9d-de7cfc1ed186>", "WARC-Target-URI": "https://www.nationmaster.com/country-info/profiles/Scotland/People", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c4bfec71-6708-4ea6-ac58-6eeae652034b>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-47.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 2, 11, 12, 34, 35, 47, 48, 114, 136, 178, 179, 623, 624, 633, 634, 675, 676 ], "line_end_idx": [ 2, 11, 12, 34, 35, 47, 48, 114, 136, 178, 179, 623, 624, 633, 634, 675, 676, 684 ] }
{ "red_pajama_v2": { "ccnet_original_length": 684, "ccnet_original_nlines": 17, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10400000214576721, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0560000017285347, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.37599998712539673, "rps_doc_frac_unique_words": 0.7078651785850525, "rps_doc_mean_word_length": 6.202247142791748, "rps_doc_num_sentences": 8, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.990846633911133, "rps_doc_word_count": 89, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.05072464048862457, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -92.32416534423828, "rps_doc_books_importance_length_correction": -96.817626953125, "rps_doc_openwebtext_importance": -46.628807067871094, "rps_doc_openwebtext_importance_length_correction": -51.12226867675781, "rps_doc_wikipedia_importance": -34.85645294189453, "rps_doc_wikipedia_importance_length_correction": -39.34991455078125 }, "fasttext": { "dclm": 0.0027438399847596884, "english": 0.7620137333869934, "fineweb_edu_approx": 3.270167827606201, "eai_general_math": 0.011620399542152882, "eai_open_web_math": 0.583149790763855, "eai_web_code": 0.00007259999983943999 } }
{ "free_decimal_correspondence": { "primary": { "code": "304.6", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "" } }, "secondary": { "code": "941.1", "labels": { "level_1": "History and Geography", "level_2": "Europe", "level_3": "Scotland and Ireland" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "20", "label": "Structured Data" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-5,171,615,937,155,865,000
This website uses cookies to ensure you have the best experience. Learn more Nasa Essay 635 words - 3 pages For hundreds of years the rocket never had a more important task than to signal, use as a weapon, and of course, fireworks. These "fire arrows", as the Chinese called them, didn't really get any serious attention until the twentieth century, when scientists started to study the way rockets worked. In 1926, Robert Goddard launched the first successful liquid rocket which he designed and built himself. It flew 184 ft. in 2 and a half seconds. Even though Goddard was successful, he refused to join any groups or organizations, in fear that others might copy his work. Goddard was never able to reach his goal of using rockets to research the upper atmosphere because of lack of funds and publicity. In 1945 the Jet Propulsion Laboratory picked up where Goddard left off and launched a rocket specifically for upper atmospheric research. This rocket, named the WAC-Corporal reached a height of 43 miles. Even though Goddard, the Jet Propulsion Laboratory and many other scientists worked hard, they didn't really have anything to do with the U.S. space program.         The ones actually responsible were a group of German scientists. At the end of WWII, the U.S. took a bunch of German V-2 rockets. And along with the rockets they captured the scientists. These rockets gathered enormous amounts of information about the atmosphere by the time the last one was launched in 1952. This information would prove to be extremely valuable for the coming space age. Scientists now wanted to make smaller rockets that were cheaper and easier to assemble. While the Applied Physics Laboratory worked on the Aerobee rocket, the Naval Research Laboratory was working on a large rocket called the Viking. The Viking was basically a replacement for the V-2. It was the most... Find Another Essay On Nasa Nasa challenge Essay 847 words - 4 pages NASA Challenge The Infinity Frontier is a futuristic space settlement for robots to test and then thousands of people . The Infinity Frontier has state of the art technology to keep the ship’s population at its best morale. It will be relaxing and have enough supplies to last a long time. The first ship will be a prototype and will house up to one thousand people. Then we would build bigger and better versions of the craft until it would meet NASA: Money Well Invested Essay 2443 words - 10 pages NASA: Money Well Invested The October 1957 launch of Sputnik alarmed the nation and the western world. The National Aeronautics and Space Administration (NASA) was founded the following year in July 1958 by congressional mandate (National Aeronautics and Space Act of 1958, 1958/2012). A belief romanticized by pop culture and the media, is that NASA was formed solely to compete with the Soviet Union. NASA was a cold war response in a time when NASA: Money Well Invested 2171 words - 9 pages NASA: Money Well Invested The October 1957 launch of Sputnik alarmed the nation and the western world. The National Aeronautics and Space Administration (NASA) was founded the following year in July 1958 by congressional mandate (National Aeronautics and Space Act of 1958, 1958/2012). A belief romanticized by pop culture and the media, is that NASA was formed solely to compete with the Soviet Union. NASA was a cold war response in a time when Benefits of NASA 1112 words - 4 pages      Since the beginning of time there have always been those that have opposed exploration of uncharted lands. This statement holds truth also for the NASA program since the beginning when President John F. Kennedy's vision was to ‘land a man on the moon by the end of the decade.' Instead of all the opposition of NASA and questions such as, “Why should we go to space?” I believe people should ask themselves, “Why NOAA Vs NASA 844 words - 4 pages being said, why is it that we need to elucidate on the importance of this organisation under the department of commerce? Why is it so difficult for the US Congress to increase the NOAA’s funding? In 2012, The National Aeronautics and Space Administration (NASA) proposed to Congress an amount of $18.7 billion that would fund its space shuttle, International Space Station (ISS) programs, scientific research and aeronautics research etc. NASA’s Should the Government Fund NASA? 953 words - 4 pages asteroid wiped out all the dinosaurs, in the Pre-historic Era. However, thanks to NASA, today there is nothing to worry about because of the satellites it has launched. NASA already does so much with the little money the government provides, if congress decides to continue funding for the company, its possibilities are endless. The government gives NASA $16 billion every year. That is only 7% of the federal government’s budget, which is $2.8 MGT 503 NASA CAIB Report 2660 words - 11 pages Untitled Running head: ORGANIZATIONAL DEVELOPMENT OF NASA Touro University International University Business 503 Module 4 Case Study Winter 2010 In April 1981, the Space Shuttle Columbia flew its first mission. It was the first reusable space shuttle to be utilized is a first American ocean vessel to travel around the world. It served as a command module for the Apollo 11 Moon lander. Columbia Unplanned Organizational Change at NASA 677 words - 3 pages After the tragedy of the Space Shuttle Columbia disaster, some unplanned changes are on the way at NASA. The changes are a direct result of the searing exploratory reports that accused management, communication, and overall cultural failures in the space shuttle program as the reason for the loss of the space shuttle. How the management teams at NASA choose to address these issues will determine the future of the space shuttle programs at The Space Race and NASA 1125 words - 5 pages . This includes NASA (the U.S.), the Russian Federal Space Agency, CNSA (China), JAXA (Japan), ESA (Europe), ISA (Italy), ROSA (Romania), and the Soviet Union. Now, some may argue that the United State’s space program has slowed down or even stopped having interest in space. However, there is a great deal of evidence that shows that NASA is still very much interested in space. On October 4th, 1957, history was made when the Soviet Union launched NASA: Past, Present And Future 6490 words - 26 pages NASA: Past, Present and Future by Jeremy Wray April 26, 2001 English 15 PSU Beaver Campus Professor Clippinger Introduction         The topics of outer space, how to get there, what's out there, and what can we do out there, have been around since the beginning of human civilization. Until only recently, the last several decades, our thoughts were at best, guesses. With the beginning of the The Challenger and Columbia Shuttle Disaster: NASA 1637 words - 7 pages NASA Shuttle Case Study Introduction For this assignment we will discuss some theories on organizational change learned during this class and how they relate to the case study of NASA (The Challenger and Columbia Shuttle Disaster). First we will look the images of managing change used by NASA in the case study. Then we will discuss the types of change(s) NASA under took. Next we will look at some of the challenges of change that NASA faced Similar Essays Nasa Essay 2287 words - 9 pages NASA The National Aeronautics and Space Administration, or NASA, was established in 1958 under the Eisenhower administration. Its main purpose was to act as an independent agency to direct the nation’s space missions and research programs. Over the past 45 years, since its inception, NASA has experienced many problems and has received recent negative publicity. NASA has had longstanding managerial problems on the inside and with outside Nasa Essay 3356 words - 13 pages The acronym NASA that stands for the National Space and Aeronautics Administration. When NASA is mentioned, most people tend to leave out the aeronautics part of the acronym, but what those people don't realize is that NASA is involved in various projects on Earth. These missions include work on military and commercial airplanes, which have led to the developments of safer, more efficient planes. NASA has played an important role in the Nasa Essay 1679 words - 7 pages INTRODUCTION          In the book Organizational Communication Imperatives, by Philip K. Tompkins, we are introduced to a chapter that deals with an organization that is held under high prestige by not only those who are employed by it, but by a country as well. This American organization is NASA, (National Aeronautical Space Administration), and although a very prestigious place to work, it is not free of its share of wrongdoing and Nasa A.T.H.L.E.T.E. Essay 1297 words - 5 pages 1. INTRODUCTION: The NASA A.T.H.L.E.T.E (All-Terrain Hex-Limbed Extra-Terrestrial Explorer) is a vehicle developed by the NASA Johnson Space Centre, NASA Ames Research Centre, Jet Propulsion Laboratory, Boeing Company and Stanford University. It is part of the Lunar and Planetary Surface Operations element of the NASA Technology Maturation Program and constitutes the “effort for a sustainable, affordable and safe human lunar return” [1]. Two
{ "url": "https://brightkite.com/essay-on/nasa-31", "source_domain": "brightkite.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "52728", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LXMFZHEDQFMN3UDSOAZ2KVPHVTDSULXL", "WARC-Concurrent-To": "<urn:uuid:2227d6ca-c503-4512-8a1b-f4d909cad125>", "WARC-Date": "2019-10-15T14:11:16Z", "WARC-IP-Address": "54.187.233.252", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:RUYGBQXLMCSOVT7BI22726UQO2LOZXZB", "WARC-Record-ID": "<urn:uuid:5704b962-3419-400d-bd3a-20519606f87e>", "WARC-Target-URI": "https://brightkite.com/essay-on/nasa-31", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:8b53b66f-e97d-4d4a-b3e4-baffffd2b775>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-166.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 77, 78, 89, 90, 110, 111, 1175, 1176, 1879, 1880, 1907, 1908, 1929, 1930, 2397, 2398, 2430, 2431, 2900, 2901, 2927, 2928, 3396, 3397, 3414, 3415, 3854, 3855, 3868, 3869, 4335, 4336, 4369, 4370, 4836, 4837, 4862, 4863, 5282, 5283, 5323, 5324, 5787, 5788, 5812, 5813, 6284, 6285, 6316, 6317, 6733, 6734, 6785, 6786, 7251, 7252, 7267, 7268, 7279, 7280, 7742, 7743, 7754, 7755, 8218, 8219, 8230, 8231, 8690, 8691, 8717, 8718 ], "line_end_idx": [ 77, 78, 89, 90, 110, 111, 1175, 1176, 1879, 1880, 1907, 1908, 1929, 1930, 2397, 2398, 2430, 2431, 2900, 2901, 2927, 2928, 3396, 3397, 3414, 3415, 3854, 3855, 3868, 3869, 4335, 4336, 4369, 4370, 4836, 4837, 4862, 4863, 5282, 5283, 5323, 5324, 5787, 5788, 5812, 5813, 6284, 6285, 6316, 6317, 6733, 6734, 6785, 6786, 7251, 7252, 7267, 7268, 7279, 7280, 7742, 7743, 7754, 7755, 8218, 8219, 8230, 8231, 8690, 8691, 8717, 8718, 9184 ] }
{ "red_pajama_v2": { "ccnet_original_length": 9184, "ccnet_original_nlines": 72, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.35369953513145447, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.053811658173799515, "rps_doc_frac_lines_end_with_ellipsis": 0.013698630034923553, "rps_doc_frac_no_alph_words": 0.17320628464221954, "rps_doc_frac_unique_words": 0.4038461446762085, "rps_doc_mean_word_length": 4.874005317687988, "rps_doc_num_sentences": 89, "rps_doc_symbol_to_word_ratio": 0.0005605400074273348, "rps_doc_unigram_entropy": 5.570565223693848, "rps_doc_word_count": 1508, "rps_doc_frac_chars_dupe_10grams": 0.0998639464378357, "rps_doc_frac_chars_dupe_5grams": 0.12952381372451782, "rps_doc_frac_chars_dupe_6grams": 0.12299320101737976, "rps_doc_frac_chars_dupe_7grams": 0.10639455914497375, "rps_doc_frac_chars_dupe_8grams": 0.0998639464378357, "rps_doc_frac_chars_dupe_9grams": 0.0998639464378357, "rps_doc_frac_chars_top_2gram": 0.009523809887468815, "rps_doc_frac_chars_top_3gram": 0.01795917935669422, "rps_doc_frac_chars_top_4gram": 0.022040819749236107, "rps_doc_books_importance": -590.7537841796875, "rps_doc_books_importance_length_correction": -590.7537841796875, "rps_doc_openwebtext_importance": -505.0315856933594, "rps_doc_openwebtext_importance_length_correction": -505.0315856933594, "rps_doc_wikipedia_importance": -311.9562072753906, "rps_doc_wikipedia_importance_length_correction": -311.9562072753906 }, "fasttext": { "dclm": 0.15830212831497192, "english": 0.9488431215286255, "fineweb_edu_approx": 3.1603243350982666, "eai_general_math": 0.23925727605819702, "eai_open_web_math": 0.21764719486236572, "eai_web_code": 0.012306869961321354 } }
{ "free_decimal_correspondence": { "primary": { "code": "629.45", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } }, "secondary": { "code": "363.73", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Political activists" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "10", "label": "Knowledge Article" }, "secondary": { "code": "15", "label": "Nonfiction Writing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
8,722,850,466,271,795,000
Sales Coordinator (Technical) or Application Engineer Job in Talent Corner Hr Services Pvt Ltd at Mumbai City-Job Description #10153659 – Shine.com Sales Coordinator (Technical) or Application Engineer 22-Aug-2019 Talent Corner Hr Services Pvt Ltd Talent Corner Hr Services Pvt Ltd ApplySend me similar jobs Apply  Already Applied Job Description Diversified distributor of pumps, motors and compressors. looking for a Technical sales coordinator / Application Engineer. Product line includes industrial products like pumps, motors and related accessories - candidate should be able to pick up industry knowledge quickly. Should be computer literate, well organized, have good communication skills in English. Understand & provide quotes to the customers & support to the Engineers on the field. Customer handling & documentation for the tenders. Candidates who shall be able to commute to Andheri (East) shall only apply.     Other details   Recruiter details • Company Name: Talent Corner Hr Services Pvt Ltd • Company Description: Travel Insurance Sales  • Email: [email protected] View similar jobs All Jobs by this recruiter Application Insights Login or Register to view insights like salary, skills etc of all applicants of this job. Register  
{ "url": "https://www.shine.com/jobs/sales-coordinator-technical-or-application-engineer/talent-corner-hr-services-pvt-ltd/10153659/", "source_domain": "www.shine.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "140160", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LMLMZ6UFC7MRT7X3NJ2D4F25M6EG7VL5", "WARC-Concurrent-To": "<urn:uuid:5dc11492-63cb-4e81-97a3-a5a2ea78f6d2>", "WARC-Date": "2019-10-23T13:53:00Z", "WARC-IP-Address": "104.119.1.99", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:KFN7Z7XTSZR5YQSS5RLMF72WUADG3GT7", "WARC-Record-ID": "<urn:uuid:f8ec502c-e6f2-4dc9-bf84-00bc37bcd4bb>", "WARC-Target-URI": "https://www.shine.com/jobs/sales-coordinator-technical-or-application-engineer/talent-corner-hr-services-pvt-ltd/10153659/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:cd6f9def-e71e-4226-9f3e-77da0e755e1e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-81.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 149, 150, 210, 211, 229, 230, 270, 271, 311, 312, 344, 356, 379, 401, 402, 532, 533, 690, 691, 785, 786, 878, 879, 936, 937, 1019, 1020, 1028, 1029, 1037, 1038, 1058, 1066, 1090, 1146, 1175, 1176, 1208, 1209, 1253, 1304, 1305, 1332, 1333, 1429, 1430, 1445 ], "line_end_idx": [ 149, 150, 210, 211, 229, 230, 270, 271, 311, 312, 344, 356, 379, 401, 402, 532, 533, 690, 691, 785, 786, 878, 879, 936, 937, 1019, 1020, 1028, 1029, 1037, 1038, 1058, 1066, 1090, 1146, 1175, 1176, 1208, 1209, 1253, 1304, 1305, 1332, 1333, 1429, 1430, 1445, 1452 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1452, "ccnet_original_nlines": 47, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.22624434530735016, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1945701390504837, "rps_doc_frac_unique_words": 0.601123571395874, "rps_doc_mean_word_length": 5.820224761962891, "rps_doc_num_sentences": 12, "rps_doc_symbol_to_word_ratio": 0.0045248898677527905, "rps_doc_unigram_entropy": 4.512726783752441, "rps_doc_word_count": 178, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.18725869059562683, "rps_doc_frac_chars_dupe_6grams": 0.10810811072587967, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04633205011487007, "rps_doc_frac_chars_top_3gram": 0.054054051637649536, "rps_doc_frac_chars_top_4gram": 0.08494208008050919, "rps_doc_books_importance": -109.9266357421875, "rps_doc_books_importance_length_correction": -105.56437683105469, "rps_doc_openwebtext_importance": -53.80874252319336, "rps_doc_openwebtext_importance_length_correction": -53.80874252319336, "rps_doc_wikipedia_importance": -32.051124572753906, "rps_doc_wikipedia_importance_length_correction": -23.39644432067871 }, "fasttext": { "dclm": -7.200000027296483e-7, "english": 0.8167434930801392, "fineweb_edu_approx": 0.6757373809814453, "eai_general_math": 0.0000021500000002561137, "eai_open_web_math": 0.02738255076110363, "eai_web_code": 0.00007724999886704609 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.3", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "620", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "1", "label": "General Audience" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-6,291,545,360,515,994,000
ITPub博客 首页 > 数据库 > 数据库开发技术 > 创建固定表头、表格体滚动的DataGrid (转) 创建固定表头、表格体滚动的DataGrid (转) 原创 数据库开发技术 作者:gugu99 时间:2007-12-11 12:37:06 0 删除 编辑 创建固定表头、表格体滚动的DataGrid (转)[@more@] 创建固定表头、表格体滚动的DataGrid do.NETplayground.com/">孟子E章 在使用DataGrid时,有时候需要表头表头固定、表格体的内容可以滚动,下面的代码就是实现这个功能的代码。 ASPx" target=_blank>查看例子 ShowFixedHeader.aspx <a href="leibie-11-1.html">web</a></a>.mengxianhui.com.ShowFixedHeader"%> w3c</a>//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <title id="lucky_elove" runat="server"></title> <meta name="GENERATOR" content="a href="tag-126-1.html""">microsoft</a> <a href="tag-39-1.html">Visual Studio</a>.NET 7.0"> <meta name="CODE_LANGUAGE" content="a href="tag-50-1.html"""><a href="leibie-7-1.html">Visual Basic</a></a> 7.0"> <meta name="vs_defaultClientScript" content="a href="tag-133-1.html"""><a href="tag-10-1.html"><a href="leibie-1-1.html">Java</a></a>script</a>"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/a href="tag-340-1.html""">intel</a>lisense/<a href="tag-393-1.html">IE5</a>"> </HEAD> <body leftmargin="0"> <fo href="tag-415-1.html">RM </a>id="Form1" method="post" runat="server"> <asp id="DataGrid1" width="720px" cellpadding="2" cellspacing="1" bordercolor="#cc9966" font-size="9pt" alternatingitemstyle-backcolor="#6699ff" runat="server" showheader="False" autogeneratecolumns="False"> <Columns> <asp datafield="Title"> <ItemStyle width="360px"></ItemStyle> </asp> <asp datafield="CreateDate"> <ItemStyle width="180px" horizontalalign="Center"></ItemStyle> </asp> <asp datafield="pid"> <ItemStyle width="140px" horizontalalign="Center"></ItemStyle> </asp> <asp datafield="HitCount"> <ItemStyle width="40px" horizontalalign="Center"></ItemStyle> </asp> </Columns> </asp> </form> </body> </HTML> ShowFixedHeader.aspx.vb Imports System Imports System.Data Imports System.Data.Ole<a href="tag-57-1.html">db</a> Public Class ShowFixedHeader Inherits System.Web.UI.Page Protected WithEvents Table1 As System.Web.UI.HtmlControls.HtmlTable Protected WithEvents DataGrid1 As System.Web.UI.WebControls.DataGrid Protected WithEvents Form1 As System.Web.UI.HtmlControls.HtmlForm Protected WithEvents lucky_elove As HtmlControls.HtmlGenericControl #Region " Web Form Designer Generated Code " 'This call is required by the Web Form Designer. <System href="tag-268-1.html">bug</a>gerStepThrough()> Private Sub InitializeComponent() End Sub Private Sub Page_Init(ByVal sender As System.<a href="tag-252-1.html">object</a>, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub #End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load lucky_elove.InnerText = "【孟宪会之精彩世界】 - 跨栏表头的实现" Table1.Rows(0).Cells(0).InnerText = "【孟宪会之精彩世界】.NET版本之最新文章" Table1.Rows(0).Cells(1).InnerText = "文章信息" Table1.Rows(1).Cells(0).InnerText = "文章标题" Table1.Rows(1).Cells(1).InnerText = "发布时间" Table1.Rows(1).Cells(2).InnerText = "所属栏目" Table1.Rows(1).Cells(3).InnerText = "点击率" Table1.Rows(0).Style.Add("color", "white") Table1.Rows(0).Style.Add("font-weight", "bold") Table1.Rows(0).Cells(0).Attributes.Add("onclick",_ "window.open('http://lucky_elove.www1.dotnetplayground.com/')") Table1.Rows(0).Cells(0).Style.Add("cursor", "hand") Try Dim cnString As String = "Prov<a href="tag-351-1.html">ide</a>r=Microsoft.Jet.OLEDB.4.0;Data <a href="tag-162-1.html">source</a>="_ + Server.MapPath("Test.mdb") Dim cn As New OleDbConnection(cnString) cn.Open() Dim str<a href="tag-54-1.html">sql</a> As String = "<a href="tag-73-1.html">select</a> TOP 30 D.Title,D.CreateDate,S.Title as pid,D.HitCount "_ + "FROM Document D INNER JOIN Subject S ON D.pid = S.id ORDER BY CreateDate DESC" Dim cmd As New OleDbCommand(strSQL, cn) DataGrid1.DataSource = cmd.ExecuteReader DataGrid1.DataBind() cn.Close() cn = Nothing Catch eOle As OleDbException Response.Write("产生错误:" + eOle.Message) End Try End Sub Private Sub DataGrid1_ItemDataBound(ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles DataGrid1.ItemDataBound If e.Item.ItemType = ListItemType.Item Or e.Item.ItemType = ListItemType.AlternatingItem Then If e.Item.Cells(0).Text.Length > 26 Then e.Item.Cells(0).Attributes.Add("Title", e.Item.Cells(0).Text) e.Item.Cells(0).Text = e.Item.Cells(0).Text.Substring(0, 26) + "…" End If e.Item.Cells(1).Text = Format(System.Convert.ToDateTime(e.Item.Cells(1).Text),_ "yyyy年M月d日 h点m分s秒") End If End Sub End Class 来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10748419/viewspace-991314/,如需转载,请注明出处,否则将追究法律责任。 请登录后发表评论 登录 全部评论 • 博文量 3122 • 访问量 2226441
{ "url": "http://blog.itpub.net/10748419/viewspace-991314/", "source_domain": "blog.itpub.net", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "28299", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:GPVIRSYNG7XBQLWOLARTNEJHXW3SJE6T", "WARC-Concurrent-To": "<urn:uuid:fb58aa50-6d91-430a-ad32-2866973dd8be>", "WARC-Date": "2019-10-23T15:23:02Z", "WARC-IP-Address": "122.226.187.18", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:IOL6MCTHLUODVMFDTQOHVRCMWJZELNLJ", "WARC-Record-ID": "<urn:uuid:352dac63-0c79-40fc-b44a-79b3d2c13db7>", "WARC-Target-URI": "http://blog.itpub.net/10748419/viewspace-991314/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:7b7e4959-4e45-4ffe-a212-462a7d8f0b20>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-144.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 8, 9, 56, 57, 83, 84, 136, 170, 171, 193, 194, 222, 223, 277, 278, 303, 304, 325, 326, 1752, 1753, 1777, 1778, 4546, 4547, 4637, 4638, 4650, 4655, 4663, 4672, 4680 ], "line_end_idx": [ 8, 9, 56, 57, 83, 84, 136, 170, 171, 193, 194, 222, 223, 277, 278, 303, 304, 325, 326, 1752, 1753, 1777, 1778, 4546, 4547, 4637, 4638, 4650, 4655, 4663, 4672, 4680, 4691 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4691, "ccnet_original_nlines": 32, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.05401235073804855, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.029320990666747093, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.540123462677002, "rps_doc_frac_unique_words": 0.6591549515724182, "rps_doc_mean_word_length": 9.83661937713623, "rps_doc_num_sentences": 156, "rps_doc_symbol_to_word_ratio": 0.0038580200634896755, "rps_doc_unigram_entropy": 5.201303482055664, "rps_doc_word_count": 355, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.036655209958553314, "rps_doc_frac_chars_dupe_6grams": 0.019473079591989517, "rps_doc_frac_chars_dupe_7grams": 0.019473079591989517, "rps_doc_frac_chars_dupe_8grams": 0.019473079591989517, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.021764030680060387, "rps_doc_frac_chars_top_3gram": 0.012886599637567997, "rps_doc_frac_chars_top_4gram": 0.009163799695670605, "rps_doc_books_importance": -468.4802551269531, "rps_doc_books_importance_length_correction": -468.4802551269531, "rps_doc_openwebtext_importance": -284.9725341796875, "rps_doc_openwebtext_importance_length_correction": -284.9725341796875, "rps_doc_wikipedia_importance": -149.63748168945312, "rps_doc_wikipedia_importance_length_correction": -149.63748168945312 }, "fasttext": { "dclm": 0.21524137258529663, "english": 0.1617426574230194, "fineweb_edu_approx": 3.261878252029419, "eai_general_math": 0.06250137090682983, "eai_open_web_math": 0.1663912534713745, "eai_web_code": 0.5348383188247681 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.133", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "005.1", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "4", "label": "Code/Software" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "1", "label": "Leftover HTML" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "3", "label": "Undergraduate Level" }, "secondary": { "code": "4", "label": "Graduate/Expert Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-5,445,239,267,931,309,000
How To Install Duct Work How To Clean Your Own Air Ducts Vacuum Hose Inserted Into A Floor Register Demonstrating how to install duct work how to clean your own air ducts vacuum hose inserted into a floor register demonstrating how to install duct work how to clean your own air ducts vacuum hose inserted into a floor register demonstrating . installing central air without ductwork preferred mechanical services installing central air in a home without ductwork, how to replace ductwork and install a return vent howtos diy seal new flex duct to new box with ties, how to insulate ductwork youtube how to insulate ductwork, hvac install an airsupply line and a cold air return howtos diy step , round ductwork installation tips the family handyman fhjauducpip ductwork, neptronic avoid modifyingaltering duct work to install heaters knowing in advance the type of installation required can save you time money and frustration, ductwork in basement , finished basement edition , rules for flexible ducts that remodelers need to know pro remodeler all ducts whether rigid or flexible should be sealed with ulrated duct mastic duct tape has many uses but sealing ducts isnt one of them, installation images and photo gallery for kirkwood heating air slab ductwork installation, rules for flexible ducts that remodelers need to know pro remodeler rules for remodelers when installing flexbile ductwork. how to install duct work is it time to replace or repair your duct work are you losing heat through leaking ducts contact our duct work experts to evaluate repair or replace your peoria civic center hvac ductwork fabrication and installation peoria civic center hvac ductwork fabrication and installation project jcc inc . how to install duct work bath fan installation venting installing ceiling drops for a dropped or suspended ceiling youtube installing ceiling drops for a dropped or suspended ceiling . how to install duct work installing a drop ceiling to hide duct work installation of the ductwork ies how to install air inlets into the installation of the ductwork ies how to install air inlets into the download scientific diagram . how to install duct work air diffusion council flex duct installation standards 2 friction rate compression dont kill your air flow with this flex duct disease . how to install duct work name floorplan 3jpg views 2197 size 160 kb minimizing energy losses in ducts department of energy designing and installing new duct systems . how to install duct work installing a drop ceiling to hide duct work youtube installing a drop ceiling to hide duct work . how to install duct work peoria civic center hvac ductwork fabrication and installation project how to install bath kitchen fans bath fan installation venting . how to install duct work how to clean your own air ducts vacuum hose inserted into a floor register demonstrating . how to install duct work ductwork install how to install a round start collar in ductwork youtube how to install a round start collar in ductwork . how to install duct work ductwork clearance how to replace ductwork and install a return vent howtos diy seal new flex duct to new box with ties . how to install duct work how to clean your own air ducts and save money how to clean your own air ducts vacuum hose inserted into a floor register demonstrating . how to install duct work see what makes efficiency heating cooling your number one choice for duct repair in milwaukie rules for flexible ducts that remodelers need to know pro remodeler plan the framing package to include chases or trusses to accommodate ductwork b ducts that are not stretched tight or . how to install duct work rules for remodelers when installing flexbile ductwork how to clean your own air ducts and save money how to clean your own air ducts vacuum hose inserted into a floor register demonstrating . how to install duct work tips and tricks for installing drop ceilings drop ceilings once the borders are determined mark the location of the main runners on the floor or have someone hold a tape measure and verify the main runner locations . how to install duct work avoid modifyingaltering duct work to install heaters knowing in advance the type of installation required can save you time money and frustration ductwork installation repair see what makes efficiency heating cooling your number one choice for duct repair in milwaukie . how to install duct work if you have very low basement or you want to build drop soffit tight to the duct you may be interested to take a look at this type of installation list how to install balancing dampers for installing a new collar into fiber board ductwork you will need to install a fiber board duct collar and then screw the balancing damper into that . how to install duct work broan installation tips duct dynasty building science corporation figure b ugly and unfortunately typical this is a percent or more energy hit on cooling and heating compared to the base case . how to install duct work older ductwork as time passes ductwork can become contaminated with dust dirt debris mold slime dead rodents dead bugs as well as other contaminants installing ceiling drops for a dropped or suspended ceiling youtube installing ceiling drops for a dropped or suspended ceiling . how to install duct work air diffusion council flex duct installation standards 3 sag support tips and tricks for installing drop ceilings drop ceilings tips . how to install duct work image titled install a bathroom fan step 1 how to install a drop ceiling simple steps and big mistake i figured out how to install a drop ceiling for my basement . how to install duct work installing ceiling drops for a dropped or suspended ceiling rules for flexible ducts that remodelers need to know pro remodeler rules for remodelers when installing flexbile ductwork . how to install duct work can ductless ac installation be the answer youve been looking for how to install new heating air duct work in a crawl space hunker step . how to install duct work hvac ductwork replacement cost design and ultimate buying guide this information is aimed at the homeowner who wants to fully understand the mechanical systems in their home in this case the ducts their purpose . how to install duct work understanding hvac duct installation understanding hvac duct installation hvac apprenticeship understanding hvac duct installation while it is important to und . how to install duct work once the borders are determined mark the location of the main runners on the floor or have someone hold a tape measure and verify the main runner locations how to install duct wrap insulation insulation and room careful sizing and installation of the duct work helps equalize the airflow but once the experts calculate and . how to install duct work name floorplan 1jpg views 1990 size 183 kb how to replace ductwork and install a return vent howtos diy seal new flex duct to new box with ties . how to install duct work why fabric ductwork . how to install duct work round sheet metal duct materials list . Leave a Reply Your email address will not be published. Required fields are marked *
{ "url": "http://takefiles.info/how-to-install-duct-work/how-to-install-duct-work-how-to-clean-your-own-air-ducts-vacuum-hose-inserted-into-a-floor-register-demonstrating-/", "source_domain": "takefiles.info", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "55884", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:YB6UM5K65PTBLFYJLKBYDK37N5LPAFUO", "WARC-Concurrent-To": "<urn:uuid:69cbf8a7-0925-4c19-bfad-275472d4df4d>", "WARC-Date": "2019-10-20T06:44:18Z", "WARC-IP-Address": "104.31.95.250", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:6TRZJEMTU2AAQJC7HWNFQQPXKIEWOPP3", "WARC-Record-ID": "<urn:uuid:8550ea12-d4c5-44de-9f2d-a5da557d5704>", "WARC-Target-URI": "http://takefiles.info/how-to-install-duct-work/how-to-install-duct-work-how-to-clean-your-own-air-ducts-vacuum-hose-inserted-into-a-floor-register-demonstrating-/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f3609696-72d8-4806-9dab-ec75e0718722>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-24.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 114, 115, 229, 230, 346, 347, 1404, 1405, 1728, 1913, 2148, 2310, 2477, 2601, 2762, 2878, 3026, 3173, 3337, 3644, 3862, 4105, 4401, 4764, 4983, 5287, 5447, 5636, 5846, 6009, 6248, 6436, 6786, 6957, 7004, 7069, 7070, 7084, 7085 ], "line_end_idx": [ 114, 115, 229, 230, 346, 347, 1404, 1405, 1728, 1913, 2148, 2310, 2477, 2601, 2762, 2878, 3026, 3173, 3337, 3644, 3862, 4105, 4401, 4764, 4983, 5287, 5447, 5636, 5846, 6009, 6248, 6436, 6786, 6957, 7004, 7069, 7070, 7084, 7085, 7155 ] }
{ "red_pajama_v2": { "ccnet_original_length": 7155, "ccnet_original_nlines": 39, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.34910276532173157, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0008156599942594767, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.0399673692882061, "rps_doc_frac_unique_words": 0.2753378450870514, "rps_doc_mean_word_length": 4.971283912658691, "rps_doc_num_sentences": 32, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.892024040222168, "rps_doc_word_count": 1184, "rps_doc_frac_chars_dupe_10grams": 0.441386342048645, "rps_doc_frac_chars_dupe_5grams": 0.5932721495628357, "rps_doc_frac_chars_dupe_6grams": 0.558613657951355, "rps_doc_frac_chars_dupe_7grams": 0.5361875891685486, "rps_doc_frac_chars_dupe_8grams": 0.524974524974823, "rps_doc_frac_chars_dupe_9grams": 0.5095140933990479, "rps_doc_frac_chars_top_2gram": 0.0458715595304966, "rps_doc_frac_chars_top_3gram": 0.08358818292617798, "rps_doc_frac_chars_top_4gram": 0.08698607236146927, "rps_doc_books_importance": -556.4531860351562, "rps_doc_books_importance_length_correction": -556.4531860351562, "rps_doc_openwebtext_importance": -376.1184997558594, "rps_doc_openwebtext_importance_length_correction": -376.1184997558594, "rps_doc_wikipedia_importance": -230.6095428466797, "rps_doc_wikipedia_importance_length_correction": -230.6095428466797 }, "fasttext": { "dclm": 0.0010042800568044186, "english": 0.8819863200187683, "fineweb_edu_approx": 1.4319120645523071, "eai_general_math": 0.00341654010117054, "eai_open_web_math": 0.05500274896621704, "eai_web_code": 0.00014913000632077456 } }
{ "free_decimal_correspondence": { "primary": { "code": "697.048", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "Heating, Ventilation, and Air conditioning" } }, "secondary": { "code": "690", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,189,400,721,775,912,400
In Vivo is part of Informa PLC This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC’s registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726. This copy is for your personal, non-commercial use. For high-quality copies or electronic reprints for distribution to colleagues or customers, please call +44 (0) 20 3377 3183 Printed By UsernamePublicRestriction UsernamePublicRestriction Triax Pharmaceuticals LLC Division of Bausch Health Companies Inc. www.triaxpharma.com Latest From Triax Pharmaceuticals LLC Start-Up Quarterly Statistics, Q2 2012 In the second quarter of 2012, start-up companies raised a total of $556 million across all industries. Most of that financing – $439.8 million – went to the biopharma sector. Cancer was the most prevalent therapeutic area for alliances. There were just four start-up acquisitions – two each in the biopharma and medical device industries. BioPharmaceutical Medical Device Pharmaceutical/Biotechnology Deal Statistics Quarterly, Q2 2011 Of the $6.3 billion total raised, 32% was from China distributor Shanghai Pharmaceuticals' $1.99 billion IPO - not only Q2's biggest financing, but also the second-largest pharma IPO of all time. Six of the 26 completed mergers were done to gain access to emerging markets, most notably, Takeda's $13.7 billion buy of Nycomed, almost half of the total $27.9 billion spent on pharma acquisitions this quarter. Q2's largest alliance was Vertex's in-licensing of Alios BioPharma's preclinical HCV nucleotide analogues, a deal that could be worth up to $775 million in up fronts and development milestones. BioPharmaceutical Deals Shaping the Medical Industry (06/2011) The dealmaking column is a survey of recent transactions, including strategic alliances, mergers & acquisitions, and financings, in the life sciences industries. Deals are listed by the following industry sectors: in vitro diagnostics, pharmaceuticals, medical devices, and research/analytical instrumentation and reagents. All transactions are excerpted from Elsevier's Strategic Transactions. See All Company Information • Industry • Biotechnology • Pharmaceuticals • Generic Drugs • Specialty Pharmaceuticals • Therapeutic Areas • Dermatology • Alias(es) • Ownership • Private • Headquarters • Worldwide • North America • USA • Parent & Subsidiaries • Bausch Health Companies Inc. • Senior Management • Joseph J Krivulka, Pres. Leonard L Mazur, COO Peter Volk, VP, Mktg. Gary F Talarico, SVP, Sales • Contact Info • Triax Pharmaceuticals LLC Phone: (908) 372-0500 20 Commerce Drive Suite 232 Cranford, NJ 07016-3599 USA Advertisement Advertisement UsernamePublicRestriction Register
{ "url": "https://invivo.pharmaintelligence.informa.com/companies/200700971", "source_domain": "invivo.pharmaintelligence.informa.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "80461", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:KDWRJGOYHJHBQ5UWCRQDVTKESSABXS4I", "WARC-Concurrent-To": "<urn:uuid:98f2ac2d-262f-413a-a735-fb309163925b>", "WARC-Date": "2019-10-14T14:42:51Z", "WARC-IP-Address": "104.16.255.107", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:QKLP2LOYC5TYXUJ6FGEEKP25WMR2OZVF", "WARC-Record-ID": "<urn:uuid:5d61d6ba-925c-43b2-bf2a-b12923ed044f>", "WARC-Target-URI": "https://invivo.pharmaintelligence.informa.com/companies/200700971", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1e67a4c0-11db-4b37-b9f0-044257f3991b>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-123.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 31, 32, 257, 258, 435, 436, 447, 448, 474, 500, 501, 527, 528, 569, 589, 590, 628, 629, 668, 669, 1009, 1010, 1043, 1044, 1108, 1109, 1712, 1730, 1731, 1776, 1777, 2172, 2180, 2181, 2201, 2202, 2215, 2233, 2253, 2273, 2305, 2327, 2343, 2357, 2371, 2383, 2400, 2414, 2434, 2446, 2472, 2505, 2527, 2556, 2581, 2607, 2639, 2656, 2686, 2712, 2734, 2748, 2776, 2784, 2798, 2812, 2838, 2839 ], "line_end_idx": [ 31, 32, 257, 258, 435, 436, 447, 448, 474, 500, 501, 527, 528, 569, 589, 590, 628, 629, 668, 669, 1009, 1010, 1043, 1044, 1108, 1109, 1712, 1730, 1731, 1776, 1777, 2172, 2180, 2181, 2201, 2202, 2215, 2233, 2253, 2273, 2305, 2327, 2343, 2357, 2371, 2383, 2400, 2414, 2434, 2446, 2472, 2505, 2527, 2556, 2581, 2607, 2639, 2656, 2686, 2712, 2734, 2748, 2776, 2784, 2798, 2812, 2838, 2839, 2847 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2847, "ccnet_original_nlines": 68, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.21470019221305847, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.046421658247709274, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2901354134082794, "rps_doc_frac_unique_words": 0.6136363744735718, "rps_doc_mean_word_length": 5.6994948387146, "rps_doc_num_sentences": 27, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.187009811401367, "rps_doc_word_count": 396, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02658396027982235, "rps_doc_frac_chars_top_3gram": 0.030571559444069862, "rps_doc_frac_chars_top_4gram": 0.02126717008650303, "rps_doc_books_importance": -222.81491088867188, "rps_doc_books_importance_length_correction": -222.81491088867188, "rps_doc_openwebtext_importance": -121.16698455810547, "rps_doc_openwebtext_importance_length_correction": -121.16698455810547, "rps_doc_wikipedia_importance": -78.49072265625, "rps_doc_wikipedia_importance_length_correction": -78.49072265625 }, "fasttext": { "dclm": 0.0000324200009345077, "english": 0.8767768740653992, "fineweb_edu_approx": 1.0520918369293213, "eai_general_math": 0.004267449956387281, "eai_open_web_math": 0.10299866646528244, "eai_web_code": 0.000008580000212532468 } }
{ "free_decimal_correspondence": { "primary": { "code": "615.19", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } }, "secondary": { "code": "658.83", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "1", "label": "About (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
6,578,096,413,574,702,000
Loading Events Events for November 2019 Events Search and Views Navigation Event Views Navigation Calendar of Events Calendar of Events MondayTuesdayWednesdayThursdayFridaySaturdaySunday 28 29 30 31 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Chicago Pop Culture Con 1 Chicago Pop Culture Con + Export Events
{ "url": "https://www.chimerascomics.com/calendar/2019-11/", "source_domain": "www.chimerascomics.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "74407", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ODJG5KOOBWXY2GKWRML73DXZM5OLPAPI", "WARC-Concurrent-To": "<urn:uuid:93d2c626-59e6-4db6-b4e5-6bd65714c664>", "WARC-Date": "2019-10-17T20:27:55Z", "WARC-IP-Address": "146.66.99.190", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:NK7SQ5REU7F65Q5VXROAJXHGWKPXS3CM", "WARC-Record-ID": "<urn:uuid:f13fb485-f114-44ab-9864-b8ab69060a92>", "WARC-Target-URI": "https://www.chimerascomics.com/calendar/2019-11/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4695852f-c9c9-4561-92ab-12f933fd27e5>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 15, 16, 41, 42, 77, 78, 101, 102, 121, 122, 141, 192, 195, 198, 201, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 225, 228, 231, 234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 270, 273, 276, 279, 282, 285, 286, 310, 311, 313, 314, 338, 339 ], "line_end_idx": [ 15, 16, 41, 42, 77, 78, 101, 102, 121, 122, 141, 192, 195, 198, 201, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 225, 228, 231, 234, 237, 240, 243, 246, 249, 252, 255, 258, 261, 264, 267, 270, 273, 276, 279, 282, 285, 286, 310, 311, 313, 314, 338, 339, 354 ] }
{ "red_pajama_v2": { "ccnet_original_length": 354, "ccnet_original_nlines": 53, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.05970149114727974, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.5522388219833374, "rps_doc_frac_unique_words": 0.7424242496490479, "rps_doc_mean_word_length": 4.21212100982666, "rps_doc_num_sentences": 1, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.7747139930725098, "rps_doc_word_count": 66, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.10791367292404175, "rps_doc_frac_chars_top_3gram": 0.11510790884494781, "rps_doc_frac_chars_top_4gram": 0.14388489723205566, "rps_doc_books_importance": -26.81058692932129, "rps_doc_books_importance_length_correction": -26.81058692932129, "rps_doc_openwebtext_importance": -16.594789505004883, "rps_doc_openwebtext_importance_length_correction": -16.594789505004883, "rps_doc_wikipedia_importance": -17.5495662689209, "rps_doc_wikipedia_importance_length_correction": -17.5495662689209 }, "fasttext": { "dclm": -0.000009780000254977494, "english": 0.6823185086250305, "fineweb_edu_approx": 0.8921921253204346, "eai_general_math": -0.00000810999972600257, "eai_open_web_math": 0.4042081832885742, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.436", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "025.044", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,591,900,021,165,992,700
Subscribe To Wreck-It Ralph 2: What We Know So Far About Ralph Breaks The Internet Updates Traditionally, Disney is fairly gunshy when it comes to theatrically released animated sequels. In fact, Disney Animation Studios has only ever produced one direct sequel to a theatrical release, The Rescuers Down Under, back in 1990. However, the sequels begin to increase in 2018 when Wreck-It Ralph sees a sequel of its own, Ralph Breaks the Internet: Wreck-it Ralph 2. The first movie brought us into a world that exists inside our favorite video games. The sequel, as the name implies, will expand on that theme and take on the entire internet. With a scope that large, nearly anything can happen, and, based on what we know, quite a lot of it will. Here's everything we know about the sequel to Wreck-It Ralph. Wreck-It Ralph 2 What Is The Wreck-It Ralph 2 Release Date? There are several "big weekends" on the release calendar, and Disney is frequently associated with all of them. However, there may be no weekend more synonymous with Disney than Thanksgiving weekend. Movies like Frozen, Moana, and Coco have all been released the day before Thanksgiving, and Ralph Breaks the Internet: Wreck-It Ralph 2 will be Disney's 2018 representative for the holiday weekend when it gets released on November 21, 2018. Originally, Ralph 2 was going to be released in the spring of 2018. However, likely due to the issues Disney was having producing Gigantic, Ralph was pushed to November. The film will have some competition for that release, as it opens the same day as Creed 2. It also opens the week after Fantastic Beasts: The Crimes of Grindelwald. Ralph and Vanellope What Is Wreck-It Ralph 2 Rated? It's a bit early to know exactly what the release date for Ralph Breaks the Internet: Wreck-It Ralph 2 will be. However, the first movie received a PG rating and so it's a safe bet the sequel will fall in line with that. This is Disney that we're talking about, so really a G rating is the only other viable option. At this point, PG is becoming the standard for Disney animation and while the first film likely could have gotten away with a G rating, we expect the tone of the sequel to be on par with its predecessor. What Have We Seen From Wreck-It Ralph 2? Lucky for us, after years of waiting to see something from Ralph Breaks the Internet: Wreck-It Ralph 2, a trailer was finally released at the end of February 2018. In it, we see that Mr. Litwak, the arcade owner, has installed a Wi-Fi router in his business, which is plugged into the same power strip as the games, making it possible for Ralph and Venellope to go from the game world to the internet. While we still don't get much of the larger story in this two-minute trailer, it's easy to see that this sequel will be a lot of fun. Wreck-It Ralph 2 still What Is Wreck-It Ralph 2 About? The first details about the actual plot of Ralph Breaks the Internet: Wreck-It Ralph 2 came out last summer during Disney's D23 Expo. While we already had an idea where the movie would take place due to the title, we have a bit of information as to why. Apparently, the copy of Sugar Rush inside the arcade from the first movie is in need of a replacement part. This leads Ralph and Vanellope to make use of a router that has been installed in the arcade to jump from the arcade onto the internet in order to go looking for it. This will take the pair to, we assume, a number of different worlds, similar to the way that each game in the arcade was unique in the first film. Exactly how a couple of digital characters are going to pick up a physical replacement part from the actual internet is unclear. Maybe they need to make nice with an Amazon buy box or digitally alter the results of an eBay auction in order to make sure the arcade wins. Either way, we saw how scary going "Out of Order" was for the people inside Fix-It Felix Jr in the first movie, and clearly that possibility happening for Sugar Rush will make this adventure an equally serious one. Zootopia The Writers The story of Ralph Breaks the Internet: Wreck-It Ralph 2 comes to us from three Disney veterans who have a strong history behind them. The Head of Story is Jim Reardon, who previously was part of the story team for both Zootopia and the original Wreck-It Ralph. Then we have Pamela Ribon who previously assisted with the story for Disney's Moana. Before that, she had worked on television comedies like Mind of Mencia and Samantha Who? Finally, the third member of the story team for Ralph 2 is Phil Johnston, who co-wrote the screenplay for both Zootopia and the first Wreck-It Ralph. He's also got another big job on this movie, which takes us to our next section. Wreck-It Ralph The Directors The first Wreck-It Ralph was a solo directorial effort from Rich Moore, who also co-directed Zootopia. He'll be back in the director's chair for Ralph Breaks the Internet: Wreck-It Ralph 2, but this time he'll share directorial responsibilities with Phil Johnston. This is Johnston's debut as a feature film director, but considering how intimately he's been involved with this franchise, it certainly feels like he's picked the right film to start with. Wreck-It Ralph w/ Q-Bert Wreck-It Ralph Long before Wreck-It Ralph 2 was official, we knew that it was coming, mostly because voice actor John C. Reilly likes to talk. The original Wreck-It Ralph was all about a character who had been designed to be a particular way, in this case, a video game villain, who tried to step outside his role and find more in his existence. His quest took him outside of his Donkey Kong-esque 8-bit video game and into other games, including modern first-person shooters and kart racers. Ralph succeeded in finding more, but also made peace with his role as the bad guy. One assumes that we'll find Ralph in a similar state as Ralph Breaks the Internet: Wreck-It Ralph 2 begins. The shift away from video games and into the internet will probably be the biggest shift for him. We certainly got the impression in the first movie that the characters were very much a product of their era, and so Ralph, from a game over 30 years old, likely won't know where to start when navigating the web. We've been promised that the friendship between Ralph and Vanellope will be tested in the sequel, though we're not exactly sure what that means. Vanellope Von Schweetz Vanellope Von Schweetz Most of Wreck-It Ralph took place in the game of Sugar Rush, the candy go-kart game and home of Vanellope Von Schweetz, voiced by Sarah Silverman. At the end of the first film, we learned that Vanellope was actually the princess of the land, though her time as an apparent glitch made her feel more comfortable in a hoodie than a frilly dress. Sugar Rush will be key to the sequel as well, as Vanellope and Ralph's journey into the internet is undertaken in an attempt to find a part that will fix the Sugar Rush arcade cabinet. This could indicate a slight shift in the character dynamic. Even though the film's title is all about Ralph, he may take a more secondary role in Vanellope's quest to fix her game. Fix-It Felix Jr. Fix-It Felix Jr. Fix-It Felix Jr. was the name of the video game that Ralph came from, and Felix was an important supporting character in the first film. While Jack McBrayer was apparently the last person to know that Ralph Breaks the Internet: Wreck-It Ralph 2 was coming, it has been confirmed that he'll be back to reprise his role as the guy who fixes everything. It's unclear how big a role Felix will have, but as the character was married at the end of the first movie, there are a lot of opportunities to do some new things with him. Calhoun Calhoun Fix-It Felix Jr's bride at the end of the first movie was the tough-as-nails Calhoun, voiced by Jane Lynch. The actress has confirmed that she will be back for the sequel, and we would expect her part to be on par with that of Felix as far as its size an importance, but that's pure speculation. Calhoun's modern military video game character represented the current generation of more mature games, which are very popular among actual online communities, so, perhaps, she'll be in a better position to navigate the world of the internet than the others. Mr. Litwak Mr. Litwak One character from the first film who has seemingly not been confirmed for the sequel is Mr. Litwak, the owner of the arcade where Ralph and the gang all reside. He was voiced by the hilarious Ed O'Neil and while he wasn't a major character in the first film, with the plot of the game revolving around the Sugar Rush arcade cabinet, there's a good chance that the owner will make another supporting appearance as he did before. Sugar Rush Other Returning Characters There was a nearly endless number of small supporting characters in Wreck-It Ralph in the form of the Nicelanders of Fix-it Felix Jr. and the additional racers in Sugar Rush. Since this adventure will take our leads out of the arcade, we wouldn't expect any of them to have roles even as large as what they had before. Still, expect the likes of Mindy Kaling and others to appear briefly, if only to keep the worlds feeling lived in and to help give us an idea of what has happened in the intervening years. Taraji P Henson Yesss So far, only one brand new character has been introduced for Ralph Breaks the Internet: Wreck it Ralph 2. During the D23 Expo last summer, attendees were treated to footage of the character known as Yesss who is voiced by Taraji P. Henson. She plays a digital algorithm for a website known as Buzzaholic, the apparent stand-in for BuzzFeed in this universe. She will be the film's tour guide of sorts as the character who introduces the internet world to our characters and helps them navigate it. No images have been released publicly of Yesss, but she's described as a character with blue hair that dresses fairly hip and has clothes made from fiber optics. James Corden Into the Woods New Voices Two voice actors have been attached to the movie to play brand new characters that we don't know much about. Ugly Betty's Ana Ortiz was the first name announced for what is being called a "small role," but beyond that, we don't know much. Late night TV host James Corden, who seems to be doing voice acting in everything these days, is also apparently involved in Wreck-it Ralph 2. His casting was revealed by Jane Lynch, so it's possible his role will be involved with whatever Calhoun is up to in the new movie. King Candy Alan Tudyk There are only about two things you can be sure of when it comes to a Disney Animation Studios movie these days. First, it will open with a shot of a castle, and two, you'll hear the voice of Alan Tudyk at some point. He's been in every animated Disney movie for the last several years, including voicing the major role of King Candy in the first Wreck-It Ralph. Tudyk has confirmed he'll be back for the sequel, though in a different role. It could be another major role like it was last time, though in Moana he voiced a sidekick chicken, so, really, anything is possible. Disney Princesses Disney References Disney has become a massive entity in recent years and Wreck-it Ralph 2 will actually make reference to this fact with a major scene that they showed off at the D23 Expo last year. The characters will actually go to one of Disney's real homes on the internet, OhMyDisney.com, where they will see elements of Star Wars and Marvel as well as Disney animation. In fact, Ralph and Vanellope will meet all of the classic Disney princesses in one place, in a moment that will be a major joy for all the Disney fanatics out there. All of the original voice actors who are still with us will reprise their roles. With everybody from Snow White to Anna and Elsa making an appearance. Whether this will actually be a scene that is important in the grand scheme of the story or just one for fun is unclear, but it will be a major event either way. Sarah Silverman and John C. Reilly Talk 'Ralph Breaks The Internet' Subscribe to our Newsletter Blended From Around The Web   Related Hot Topics Cookie Settings
{ "url": "https://blend.cinemablend.com/news/2302621/wreck-it-ralph-2-what-we-know-so-far-about-ralph-breaks-the-internet", "source_domain": "blend.cinemablend.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "156060", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:GM62XRZOQNQZZNM5Q7NSROSWYP57M2XZ", "WARC-Concurrent-To": "<urn:uuid:b526803f-9ada-4380-90eb-d96454529689>", "WARC-Date": "2019-10-22T23:38:23Z", "WARC-IP-Address": "104.18.139.76", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:H65YU3LJSYCLT3JKO3VQSUPLC7JP62SW", "WARC-Record-ID": "<urn:uuid:fde1377e-0302-4da4-88e1-a6fd06617eba>", "WARC-Target-URI": "https://blend.cinemablend.com/news/2302621/wreck-it-ralph-2-what-we-know-so-far-about-ralph-breaks-the-internet", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:097b43aa-5588-498d-80bc-6a216dfb5ea6>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 91, 92, 465, 466, 810, 811, 828, 829, 872, 873, 1649, 1650, 1670, 1671, 1703, 1704, 2224, 2225, 2266, 2267, 2803, 2804, 2827, 2828, 2860, 2861, 3536, 3537, 4022, 4023, 4032, 4033, 4045, 4046, 4713, 4714, 4729, 4730, 4744, 4745, 5200, 5201, 5226, 5227, 5242, 5243, 6368, 6369, 6392, 6393, 6416, 6417, 7128, 7129, 7146, 7147, 7164, 7165, 7690, 7691, 7699, 7700, 7708, 7709, 8264, 8265, 8276, 8277, 8288, 8289, 8718, 8719, 8730, 8731, 8758, 8759, 9267, 9268, 9284, 9285, 9291, 9292, 9952, 9953, 9981, 9982, 9993, 9994, 10508, 10509, 10520, 10521, 10532, 10533, 11108, 11109, 11127, 11128, 11146, 11147, 11984, 11985, 12053, 12054, 12082, 12083, 12111, 12112, 12114, 12115, 12123, 12124, 12135, 12136 ], "line_end_idx": [ 91, 92, 465, 466, 810, 811, 828, 829, 872, 873, 1649, 1650, 1670, 1671, 1703, 1704, 2224, 2225, 2266, 2267, 2803, 2804, 2827, 2828, 2860, 2861, 3536, 3537, 4022, 4023, 4032, 4033, 4045, 4046, 4713, 4714, 4729, 4730, 4744, 4745, 5200, 5201, 5226, 5227, 5242, 5243, 6368, 6369, 6392, 6393, 6416, 6417, 7128, 7129, 7146, 7147, 7164, 7165, 7690, 7691, 7699, 7700, 7708, 7709, 8264, 8265, 8276, 8277, 8288, 8289, 8718, 8719, 8730, 8731, 8758, 8759, 9267, 9268, 9284, 9285, 9291, 9292, 9952, 9953, 9981, 9982, 9993, 9994, 10508, 10509, 10520, 10521, 10532, 10533, 11108, 11109, 11127, 11128, 11146, 11147, 11984, 11985, 12053, 12054, 12082, 12083, 12111, 12112, 12114, 12115, 12123, 12124, 12135, 12136, 12151 ] }
{ "red_pajama_v2": { "ccnet_original_length": 12151, "ccnet_original_nlines": 114, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.44543689489364624, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.005436889827251434, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13553397357463837, "rps_doc_frac_unique_words": 0.30531176924705505, "rps_doc_mean_word_length": 4.438798904418945, "rps_doc_num_sentences": 99, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.552123546600342, "rps_doc_word_count": 2165, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.07981269806623459, "rps_doc_frac_chars_dupe_6grams": 0.04547347128391266, "rps_doc_frac_chars_dupe_7grams": 0.039854321628808975, "rps_doc_frac_chars_dupe_8grams": 0.02049948088824749, "rps_doc_frac_chars_dupe_9grams": 0.008532780222594738, "rps_doc_frac_chars_top_2gram": 0.03870968148112297, "rps_doc_frac_chars_top_3gram": 0.02570239081978798, "rps_doc_frac_chars_top_4gram": 0.027471380308270454, "rps_doc_books_importance": -891.3543701171875, "rps_doc_books_importance_length_correction": -891.3543701171875, "rps_doc_openwebtext_importance": -515.86279296875, "rps_doc_openwebtext_importance_length_correction": -515.86279296875, "rps_doc_wikipedia_importance": -414.0177001953125, "rps_doc_wikipedia_importance_length_correction": -414.0177001953125 }, "fasttext": { "dclm": 0.08410108089447021, "english": 0.973392903804779, "fineweb_edu_approx": 1.101897954940796, "eai_general_math": 0.022852059453725815, "eai_open_web_math": 0.14525574445724487, "eai_web_code": 0.013641719706356525 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.4372", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "791.457", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-945,013,139,918,788,000
Impatience Yves was a man of few words. He expressed his ideas in the form of drawings and collages tossed off wordlessly. They always contained an element of violence, aggression and unbelievable impatience. The most significant thing for me was the fact that his knowledge of nature helped me to confirm the hunch I had about the change of route under way, about the fact that landscape was in the process of becoming the only medium capable of establishing connections in the city. These hypotheses about tension between city and country came to the fore at La Villette competition, not only in relation to our project, but the projects of Cedric Price, Jean Nouvel and Bernard Tschumi as well. Since then they have been confirmed, specially in Asian cities, not only for these positive reasons, but for other less admissible reasons too, because landscape is less expensive and politically correct. So the 20th century is drawing to a close with the death of town planning and with his highly cynical apotheosis of landscape. Yves was a molecule in this field with his bipolar tension between city and country. He foreshadowed this shift. Rem Koolhaas about Yves Brunier, Interview (1996) Brunier_9c 1ab70371a7d4509f7a389a1bae5fab17 4d647a05278e06edbb69830a861ff6b3Yves Brunier, Diverse Design Documents (circa 1990) 9b0d035628e1602ecd5cd706dc07d609 143da37f  Image 37f003ca689b54fa64c91616e69de1e2 Yves Brunier, Model for the Garden Rooms of the Museumpark (1992) FIND IT ON THE MAP Advertisements
{ "url": "https://landscapetheory1.wordpress.com/tag/yves-brunier/", "source_domain": "landscapetheory1.wordpress.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "231206", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:EGR37W7IJYXW35YJXCU7BBR3OHDLNXBY", "WARC-Concurrent-To": "<urn:uuid:289cf294-375b-4873-b74e-3c64f09f58ce>", "WARC-Date": "2019-10-14T23:02:03Z", "WARC-IP-Address": "192.0.78.12", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:JTDKB6PBSW7H2ACZ7D4RGIDTWLKEBYWN", "WARC-Record-ID": "<urn:uuid:43870e96-2441-4842-b27e-5967d728698a>", "WARC-Target-URI": "https://landscapetheory1.wordpress.com/tag/yves-brunier/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:0d009544-19d7-4c86-a01c-50d0f41e468a>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-123.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 11, 12, 1144, 1145, 1195, 1196, 1324, 1325, 1358, 1359, 1375, 1376, 1409, 1475, 1476, 1495 ], "line_end_idx": [ 11, 12, 1144, 1145, 1195, 1196, 1324, 1325, 1358, 1359, 1375, 1376, 1409, 1475, 1476, 1495, 1509 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1509, "ccnet_original_nlines": 16, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.41015625, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0234375, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1171875, "rps_doc_frac_unique_words": 0.6419214010238647, "rps_doc_mean_word_length": 5.436681270599365, "rps_doc_num_sentences": 10, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.689892292022705, "rps_doc_word_count": 229, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.044979918748140335, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.012048190459609032, "rps_doc_frac_chars_top_3gram": 0.012851409614086151, "rps_doc_frac_chars_top_4gram": 0.033734939992427826, "rps_doc_books_importance": -112.98702239990234, "rps_doc_books_importance_length_correction": -103.35895538330078, "rps_doc_openwebtext_importance": -56.054290771484375, "rps_doc_openwebtext_importance_length_correction": -56.054290771484375, "rps_doc_wikipedia_importance": -49.90288162231445, "rps_doc_wikipedia_importance_length_correction": -37.61206817626953 }, "fasttext": { "dclm": 0.028824390843510628, "english": 0.9516623616218567, "fineweb_edu_approx": 2.21854305267334, "eai_general_math": 0.06610912084579468, "eai_open_web_math": 0.23569977283477783, "eai_web_code": 0.0035592899657785892 } }
{ "free_decimal_correspondence": { "primary": { "code": "711.0", "labels": { "level_1": "Arts", "level_2": "Gardening, Parks, and Forests and forestry", "level_3": "City planning and Regional planning" } }, "secondary": { "code": "720.0", "labels": { "level_1": "Arts", "level_2": "Architecture", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "3", "label": "Undergraduate Level" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
4,937,288,031,711,633,000
Second letter to Lord Pelham, &c. &c. &c in continuation of the comparative view of the system of penal colonization in New South Wales, and the home penitentiary system, prescribed by two acts of Parliament of the years 1794 & 1799 Main Author: Bentham, Jeremy Other Authors: Pelham, Thomas Format: eBook Language:English Published: S.l. s.n [1802], 1802 Subjects: Online Access: Collection: Making of the Modern World - Collection details see MPG.ReNa Item Description:Caption title. - Goldsmiths'-Kress no. 18543. - OCLC, 16991769. - Reproduction of original from Goldsmiths' Library, University of London. - Signed: Jeremy Bentham. - With: Letter to Lord Pelham / Jeremy Bentham. [London : s.n., 1802] Physical Description:72 p Format:Full text online
{ "url": "https://ebooks.mpdl.mpg.de/ebooks/Record/EB000975980", "source_domain": "ebooks.mpdl.mpg.de", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "30259", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:GK6YSWH3N6RDUOEZPE6FLUFP4QHQ3WYG", "WARC-Concurrent-To": "<urn:uuid:5d971619-04c8-420c-9c9e-4cadde06a86e>", "WARC-Date": "2019-10-16T18:09:42Z", "WARC-IP-Address": "134.76.28.192", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:YNB7GK5TKXLMCJOBJT47WJM4PDEG6SJZ", "WARC-Record-ID": "<urn:uuid:898543c2-54a9-4e6d-bfc3-10e5a8a95d31>", "WARC-Target-URI": "https://ebooks.mpdl.mpg.de/ebooks/Record/EB000975980", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:7477e1bc-6c9e-43f0-9ef0-af837761e680>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 233, 234, 263, 293, 307, 324, 357, 367, 382, 455, 707, 733 ], "line_end_idx": [ 233, 234, 263, 293, 307, 324, 357, 367, 382, 455, 707, 733, 756 ] }
{ "red_pajama_v2": { "ccnet_original_length": 756, "ccnet_original_nlines": 12, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19161677360534668, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.017964070662856102, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3652694523334503, "rps_doc_frac_unique_words": 0.7142857313156128, "rps_doc_mean_word_length": 5.580952167510986, "rps_doc_num_sentences": 16, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.1431169509887695, "rps_doc_word_count": 105, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.03412969037890434, "rps_doc_frac_chars_top_3gram": 0.04095562919974327, "rps_doc_frac_chars_top_4gram": 0.061433449387550354, "rps_doc_books_importance": -96.82313537597656, "rps_doc_books_importance_length_correction": -96.8231430053711, "rps_doc_openwebtext_importance": -54.030975341796875, "rps_doc_openwebtext_importance_length_correction": -54.030982971191406, "rps_doc_wikipedia_importance": -45.7397575378418, "rps_doc_wikipedia_importance_length_correction": -45.73976516723633 }, "fasttext": { "dclm": 0.000028849999580415897, "english": 0.7134628891944885, "fineweb_edu_approx": 2.2362754344940186, "eai_general_math": 0.002424119971692562, "eai_open_web_math": 0.2921569347381592, "eai_web_code": 0.00010371000098530203 } }
{ "free_decimal_correspondence": { "primary": { "code": "364.90994", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Criminology" } }, "secondary": { "code": "364.9092", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Criminology" } } }, "bloom_cognitive_process": { "primary": { "code": "4", "label": "Analyze" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "2", "label": "Academic/Research" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "3", "label": "Academic Writing" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "4", "label": "Advanced Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "3", "label": "Undergraduate Level" }, "secondary": { "code": "4", "label": "Graduate/Expert Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-9,059,123,339,421,218,000
A clean house is a proper house. The top vacuum cleaner will remove dust and dirt along with many harmful allergens and pathogens. There are many vacuum cleaners that may clean your floors while blowing fine dust particles and airborne antagonists throughout your house. Selecting the ideal vacuum cleaner requires research. You will find a number of sorts of vacuum cleaners to consider when making your selection. Each has its strengths and weaknesses when it comes to cleaning. The best vacuum cleaners are typically more expensive but have the very best features needed to keep the house of yours neat and fresh. Investing into the best vacuum cleaner is a great investment in the house of yours as well as your family's overall health. http%3A%2F%2Fimages.samsung.com%2Fis%2FiThe top vacuum cleaner can often be purchased at the local retail outlet of yours or online. Many times you can find an effective local store that focuses primarily on vacuums. These vacuum specialty stores normally carry the very best vacuum cleaner that you can purchase. Often the costs at these vacuum cleaner specialty retailers are over at many big box stores like Wal Mart, Lowes or Circuit City. However if you purchase at a store that focuses primarily on the very best vacuum cleaners you've a good local source for maintenance as well as parts. Just about any warranty work is going to be accomplished locally in matter of many days. If you buy the vacuum of yours cleaner online then you most likely are going to need to ship your vacuum cleaner to probably the nearest maintenance facility. Purchasing the perfect vacuum cleaner offered will definitely limit the danger of any reliability complications. The best vacuum cleaner in india vacuum cleaner available can include a good used piece of equipment. Great vacuum cleaners that are not abused and are refurbished at vacuum cleaner shops are a great option for the budget minded vacuum better shopper. The people who refurbished your pre-owned vacuum cleaner will know it inside and out and so if you need treats or help they'll be able to easily solve some complications that you might encounter. Online auctions are also a great place to find good utilized or maybe factory refurbished vacuum cleaners. You will have to do the research of yours to be sure that the model that you're thinking about has a great record of reliability. Most online vacuum cleaner sales have just a brief return time or perhaps short warranty period and quite a few haven't any protection to the end user at all. The best vacuum cleaner available could be the person that doesn't lead you to be concerned about its reliability. Remember the top vacuum cleaner in india will have all the features you are looking for and the ability to clean the surfaces located in the house of yours. The best vacuum cleaners will last a long time in case taken care of. Additional options to contemplate would be the design of vacuum cleaner, is it and upright or perhaps canister version, is it bag less and if does use bags can they be readily available. The top vacuum cleaners have HEPA filters to get rid of fine dust particles and allergens. This's a really vital feature in ensuring the house of yours remains healthy and clean. As a home owner it only is a good idea to invest in just the finest vacuum cleaner available. 댓글 0 목록 번호 제목 글쓴이 날짜 조회 수 공지 [公知] 紛失物センター利用方法 octagonseoul 2017.09.06 804 공지 [Notice] the method of using Lost and Found service [22] octagonseoul 2017.09.06 1183 공지 [공지] 분실물 센터 이용 방법 [24] octagonseoul 2017.09.06 1333 공지 [公告] 失物品使用方式 octagonseoul 2017.09.06 632 1581 Women's Swimwear 75044 SusieChidley4822 2019.06.22 539 1580 Seluruh Keluhan Sepak Bola Kamu Akan Dijawab Di Sini Oleh Dewi365 CarrieShumway797492 2019.06.22 12263 1579 Yang Mesti Kamu Ketahui Berkenaan Main-Main Sepak Bola Di Bandar Bola FredrickWatts8711 2019.06.22 17260 1578 Bandar Judi Bola Online Terpopuler Di Asia RetaMudie469493537 2019.06.22 30 1577 Nonton Film Indoxxi Terbaru Serta Terlengkap ZulmaRobinette95 2019.06.22 43 1576 Mount Bromo Tour Package, Low-cost Rate 2019 From Surabaya Malang CathleenMcGuinness24 2019.06.22 87 1575 Idn Poker Terbaik Di Asia 2019 MarshaJoris6666494 2019.06.22 15 » Best Vacuum Cleaner In India, What Is It And Also Where Can I Find It FelixZiemba87807 2019.06.22 898 1573 BROMO TOUR Travel Surabaya Bromo Ijen Tours Plans 2019 JohnathanKroll58570 2019.06.22 89 1572 Fifty 2 Best Online Buying Sites For Female DerrickD11724519 2019.06.22 149 1571 Taruhan Bola Online Terpercaya Di Indonesia MonroeStoker9368 2019.06.22 15 1570 Rahasia Yang Mengerikan Dari Situs Download Lagu Aplikasi Mp3 Unduh Cuma-cuma LaurenceWhitford125 2019.06.22 112 1569 Aplikasi Nonton Movie Gratis Di Android WilhelminaBosley 2019.06.22 24 1568 Website Aplikasi Download Lagu Mp3 Gratis Serta Apa Yang Mesti Dilakoni Dengan Bertentangan PercyDemko3722713 2019.06.22 377 1567 Taruhan Bola Online Terpercaya Di Indonesia VirgilBenjamin0448 2019.06.22 59 1566 Download Movie Gratis Terkini Yang Sungguh Update OlgaChute49688356 2019.06.22 75 1565 Agen Bola Resmi Dan Terpercaya KathaleenHarrel75 2019.06.22 73 1564 Nonton Movie Gratis Subtitle Indonesia Terlengkap JeraldFranklin196 2019.06.22 119 1563 Taruhan Online Bola Terbaik LavonNmc6328885550 2019.06.22 28 1562 Bandar Bola Terpercaya TajTedesco640281 2019.06.22 58
{ "url": "https://www.octagonlost.com:446/board_zYMd91/8563", "source_domain": "www.octagonlost.com:446", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "31473", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:QPVEGR3MENAUNYYSN5TP6WIA7SR53BEI", "WARC-Concurrent-To": "<urn:uuid:591afd44-ac07-483f-9cf8-890dfbc5bffa>", "WARC-Date": "2019-10-15T21:06:54Z", "WARC-IP-Address": "112.175.184.38", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:4VV3OIAZRLEQATEJ5SMKXN4QQOLOLWMC", "WARC-Record-ID": "<urn:uuid:c8d2da39-31d3-409f-afe8-b81c1f5d65fe>", "WARC-Target-URI": "https://www.octagonlost.com:446/board_zYMd91/8563", "WARC-Truncated": "disconnect", "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:fedaeaad-91af-4cfa-8374-e106944a471d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-81.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 741, 742, 1699, 1700, 1701, 2660, 2661, 3348, 3349, 3354, 3355, 3358, 3376, 3424, 3513, 3568, 3612, 3672, 3780, 3890, 3971, 4052, 4158, 4227, 4331, 4425, 4506, 4586, 4704, 4780, 4910, 4992, 5079, 5147, 5235, 5301 ], "line_end_idx": [ 741, 742, 1699, 1700, 1701, 2660, 2661, 3348, 3349, 3354, 3355, 3358, 3376, 3424, 3513, 3568, 3612, 3672, 3780, 3890, 3971, 4052, 4158, 4227, 4331, 4425, 4506, 4586, 4704, 4780, 4910, 4992, 5079, 5147, 5235, 5301, 5359 ] }
{ "red_pajama_v2": { "ccnet_original_length": 5359, "ccnet_original_nlines": 36, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2973760962486267, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.00680272001773119, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2507288455963135, "rps_doc_frac_unique_words": 0.5029446482658386, "rps_doc_mean_word_length": 5.239104747772217, "rps_doc_num_sentences": 80, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.510043144226074, "rps_doc_word_count": 849, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.04766187071800232, "rps_doc_frac_chars_dupe_6grams": 0.01708633080124855, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.052607908844947815, "rps_doc_frac_chars_top_3gram": 0.014613309875130653, "rps_doc_frac_chars_top_4gram": 0.013489210046827793, "rps_doc_books_importance": -444.70465087890625, "rps_doc_books_importance_length_correction": -444.70465087890625, "rps_doc_openwebtext_importance": -243.3387908935547, "rps_doc_openwebtext_importance_length_correction": -243.3387908935547, "rps_doc_wikipedia_importance": -235.6049346923828, "rps_doc_wikipedia_importance_length_correction": -235.6049346923828 }, "fasttext": { "dclm": 0.0038911099545657635, "english": 0.8681730628013611, "fineweb_edu_approx": 0.9535374641418457, "eai_general_math": 0.002461249940097332, "eai_open_web_math": 0.13984417915344238, "eai_web_code": 0.00010692999785533175 } }
{ "free_decimal_correspondence": { "primary": { "code": "623.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Military engineering and Marine engineering" } }, "secondary": { "code": "640", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
7,889,963,727,485,826,000
Category: Issue 89 Editor’s Note: Winter Returns Are you willing to play? As storm after storm pounds into California we are finally aware that the winter of 2016 is legit. For many of us, this presents a problem. The problem is that after a few lean winters we have grown lazy and unmotivated. As the Sierra snowpack continues to accumulate it’s almost like we don’t know what to do. Having spent so much time eulogizing about the death of winter and the good old days of skiing and riding in California it’s almost like we lost the ability to actually go skiing or riding anymore. Backcountry lines that haven’t been skied since 2011 are now just sitting there … waiting. Compounding the problem is that the surf has been incredible all up and down the coast. Spots that normally see small crumbly waves in the summer are now seeing relentless sets of grinding barrels day after … Read More Ear to the Ground: February / March 2016 Outdoor News and Notes for the California Region USFS to Plant Trees in Rim Fire Burn Area The US Forest Service is enlisting the help of all available stakeholders and members of the public to help plant 90,000 trees in the Rim Fire burn area this spring. In partnership with Tuolumne River Trust, the Stanislaus National Forest hosted public meetings in January to inform and recruit volunteers for tree planting days scheduled to take place seven days per week throughout the spring. 2013’s Rim Fire burned over 257,000 acres on the Stanislaus National Forest. Forest scientists/specialists estimate that without reforestation it is highly unlikely the forest would grow back in our lifetimes. Anyone interested in helping to reforest the area is welcome – individuals, groups, families. For more information, call the Stanislaus National Forest at (209) 532-3671 or the Tuolumne River Trust at (949) 533-2346. Steven Hemphill Returns to Sierra-at-Tahoe Read More Technique Clinic: Winter Whitewater Tips for cold weather paddling By Haven Livingston When Buck Crocket and Brian Banks arrived to kayak the first spring run of Gore Canyon on the upper Colorado River and found that the banks were still iced over and so was one of the rapids, Crocket did what any resourceful multi-sport adventurer would do. He reached into his truck and pulled out his ice axe. Getting into the river would be a slide, but getting out would require mounting a few feet of overhanging ice and snow. Paddling under these conditions may seem like a masochistic task, but consider the benefits: Instead of sitting in traffic en route to the slopes to ski groomers, you sneak off the beaten path to a lower elevation river and have the entire flowing wonderland to yourself. Rivers on the northwest edge of California come alive with winter rains and glow with the … Read More EPiC: Protecting Mono Lake Mono Lake Committee safeguards California gem Words by Leonie Sherman Photos courtesy Mono Lake Committee On the edge of Yosemite National Park, fifteen miles east of Tioga Pass, Mono Lake shimmers like a jewel amid the vast monochromatic expanse of the Great Basin. More than twice as salty as the ocean and over ten times as alkaline, the lake hosts hundreds of thousands of nesting migratory birds and up to 80% of the state’s nesting California Gulls. Most visitors passing through have no idea how close this rich ecosystem came to complete biological collapse. “Mono Lake is the most significant environmental success story of its time,” says Lisa Cutting, Eastern Sierra Policy Director for the Mono Lake Committee (MLC). Started almost forty years ago by a dedicated group of visionary graduate students, the MLC has grown to thirteen full-time staff and acts as the on-the-ground watchdog of the Mono … Read More Raising the Bar The evolution of sports fuel By Avery Robins RaisingBar-iStock_000014014805_Small We haven’t always had a dizzying array of energy supplements to power us before, during and after a long trail run or mountain bike ride. It used to be that endurance athletes would refuel with Gatorade, bananas, or whatever else was in their fridge. That was until 1986, when Cal Berkeley track coach Brian Maxwell and his wife Jennifer began tinkering with the concept of the energy bar. Brian was having trouble bonking at the 21st mile mark during marathons, so the couple began experimenting with different recipes in their home kitchen to find a solution. They started with a blender to mix ingredients like oat bran, milk proteins, fructose and maltodextrins into a thick sludge. The sludge would then cool into the more chewy consistency that we associate with sports bars today. After three years of experimentation the couple landed … Read More Athlete Profile: Big Wave Bianca Catching up with pro surfer Bianca Valenti By Haven Livingston For professional surfer Bianca Valenti the progression into surfing big waves comes naturally after 23 years at the sport. From the first scared moment of catching a stand up barrel, Valenti has been hooked on seeking bigger waves to satiate the desire for that same rush of adrenaline. Now a regular at the lineup at Mavericks, Valenti is progressing at a calculated pace to become one of the world’s top big wave women surfers. The 5’4” Italian-American charger moonlights as an Italian wine specialist, following in the footsteps of her master sommelier grandfather and chef father at the family’s restaurant in Marin County. Though she can charm diners in Italian, Spanish or English, when it comes to the ocean, she’s just as fluent in nature’s universal language of power. Her thrills come from stepping outside of her comfort zone. … Read More Over the Mountain and through the Woods A look at classic cross country and skate skiing By Avery Robins Are you looking to shake up your time in the mountains this winter season? Perhaps you are looking for a full body workout that fires up your core. Or, perhaps you need a break from the downhill ski scene, and are yearning for a way to soak in the tranquility of the backcountry. Look no further, because cross country sking could be the answer. Modern cross country skiing is strikingly similar to the original form of skiing that was invented in Scandinavia over five thousand years ago. Nordic people strapped on what they called “skíðs” (the Old Norse word for “planks of wood”) in order to transport themselves across large distances of snowy terrain. But don’t get us wrong, modern cross country skiing is no old school walk in the park. It is one of the most … Read More Snow Biking Fat bikes open up a whole new world of two-wheeled adventures By Dave Zook Fat bikes are all the buzz. Those absurdly wide tires — sometimes over five inches of knobby, under-inflated width — does anyone know exactly what makes them so great? Regardless they are certainly hitting mass appeal as this variation on a traditional mountain bike has been growing steadily around California and the US for the last decade. More brands than ever are manufacturing them, giving riders options formerly reserved for the MTB or road riding crowd. Full-suspension rides are offered for the most cushy of experiences and even fancy components like carbon wheel sets can lighten the load, depending on your riding style — and the size of your wallet. Many riders become believers due to the bike’s ability to make some terrain more accessible. The traction is the key here and they “float” over … Read More Winter Returns El Niño gives Tahoe backcountry skiers a huge helping of powder Words and photos by Brennan Lagasse “I’m going to ski this super cautiously, island of safety to island of safety. Copy?” “Yes. I have eyes on,” my partner responds. Slowly, I dance my way into Emerald Chute, one of the most classic backcountry ski lines in the greater Tahoe area. Earlier in the day, Ming Poon and I had broken trail, methodically working our way up crystalline fields of powder until we crested the top of the line, which feeds directly into the iconic Emerald Bay. A couple of friends caught us as we were getting to the top, and together the four of us shared in one of the best runs any of us has experienced in our Tahoe backyard in at least four years. Our friends had to take off after that run, but Ming and … Read More Pedaling the Wild The quest to allow cycling in federally designated Wilderness By Kurt Gensheimer Bicycles in federally protected Wilderness. Depending on who you ask, this is a linchpin issue for the future of conservation or you’ll get a blank stare and a “what about it?” Regardless of the reaction, the topic has been emotionally charged for decades, and as a result, there has been a lot of misunderstanding surrounding the original intent of the Wilderness Act of 1964. The issue of bicycles in Wilderness was recently rekindled when the Boulder-White Clouds region of Idaho, a coveted gem of backcountry mountain biking for generations, was designated federal Wilderness this past summer, shutting out mountain bike use forever. Despite the fact that mountain bikes have been proven through numerous independent environmental studies to be as low-impact on trails as hiking and far lower impact than equestrian use, bicycles are still banned from 110 … Read More The Bright Side of Suffering Gravel grinder season kicks off By Sarah Hansing Well, the holiday season is officially over. It was a glorious time of joyous celebrations and gratitude, festivities and feasts, family and … well, family. Which is to say, togetherness. The type of togetherness that can – at times – make you want to end your lineage. Because family celebrations in real life somehow never quite follow the storyline of those heartwarming holiday specials that no one can collectively agree on watching as a family. It goes something like this: Someone gets the short straw on hosting the meal. Extended family – who are absent the rest of the year – come together like flocks of politically, morally, and dietarily disagreeing birds. Due to the close quarters and possibly because of some minor incident that happened (perhaps involving Uncle Dave and his now ex-wife) cause a rift, which leads to an … Read More Event Profiles: February / March 2016 A sneak peek at some of the season’s best upcoming events EP-Banff-Paddle-for-the-North-03-Simon-Lucas Banff Mountain Film Festival February 19-21, Santa Cruz National Geographic and the North Face present the Banff Mountain Film Festival World Tour. Join UCSC Recreation and get set to explore the edge of believable with some of the best films from the Banff Mountain Film Festival as it brings amazing stories to the big screen at the Rio Theatre. Journey to exotic locations, paddle the wildest waters, and climb the highest peaks. Celebrate the 25th anniversary of bringing this event to Santa Cruz while also celebrating the 50th anniversary of UC Santa Cruz. This event benefits the UCSC Wilderness Orientation Scholarship Fund. Different films will be shown each night so come for one or all three shows. Tickets are available at brownpapertickets.com or in person at Bicycle Trip in Santa Cruz. recreation.ucsc.edu/banff.html EP-Alpenglow1-untitled-(6-of-21) Alpenglow Mountain Festival February 20-28, Tahoe City… Read More Loading Join the Tribe ENO Upcoming Events WarrenMiller Like Us On Facebook ENO Read past issues online issue85-ASJ Issue 85 Issue 86 Issue 86 Issue 87 Issue 87 issue85-ASJ Issue 88 Issue 86 Issue 89 Issue 87 Issue 90 FourWheel Our Sponsors WM_PreSale
{ "url": "https://adventuresportsjournal.com/category/archives/issue-89/", "source_domain": "adventuresportsjournal.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "111687", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:T4NH6NB3NWWR2JLSUDRFOZWULJKEKTPA", "WARC-Concurrent-To": "<urn:uuid:55c9b426-f663-4afb-a532-0daef278eff2>", "WARC-Date": "2019-10-20T12:33:08Z", "WARC-IP-Address": "192.124.249.14", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:IAQNLZSMWND5XSIOXSCHGTH2COXAAKFN", "WARC-Record-ID": "<urn:uuid:41998dca-ec0d-4697-a94b-4db347f3c7f4>", "WARC-Target-URI": "https://adventuresportsjournal.com/category/archives/issue-89/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:64b6e6f1-c600-405d-9c9d-3dfa3a820aeb>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-180.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 19, 20, 50, 51, 76, 77, 677, 678, 887, 888, 898, 899, 940, 941, 990, 991, 1033, 1429, 1430, 1734, 1735, 1858, 1859, 1860, 1903, 1904, 1914, 1915, 1951, 1952, 1983, 1984, 2004, 2005, 2436, 2437, 2801, 2802, 2812, 2813, 2840, 2841, 2887, 2888, 2912, 2948, 2949, 3410, 3411, 3756, 3757, 3767, 3768, 3784, 3785, 3814, 3815, 3831, 3832, 3869, 3870, 4260, 4261, 4433, 4434, 4660, 4661, 4718, 4719, 4729, 4730, 4763, 4764, 4807, 4808, 4828, 4829, 5259, 5260, 5671, 5672, 5682, 5683, 5723, 5724, 5773, 5774, 5790, 5791, 6137, 6138, 6449, 6450, 6561, 6562, 6572, 6573, 6585, 6586, 6648, 6649, 6662, 6663, 7006, 7007, 7328, 7329, 7475, 7476, 7486, 7487, 7502, 7503, 7567, 7568, 7604, 7605, 7691, 7692, 7736, 7737, 8307, 8308, 8318, 8319, 8337, 8338, 8400, 8401, 8420, 8421, 9059, 9060, 9284, 9285, 9295, 9296, 9325, 9326, 9358, 9359, 9376, 9377, 9534, 9535, 9829, 9830, 10218, 10219, 10229, 10230, 10268, 10269, 10327, 10328, 10373, 10374, 10403, 10430, 10431, 11085, 11086, 11177, 11178, 11209, 11210, 11211, 11244, 11245, 11273, 11301, 11302, 11312, 11320, 11321, 11336, 11337, 11341, 11342, 11358, 11359, 11372, 11373, 11393, 11394, 11398, 11399, 11423, 11424, 11436, 11437, 11446, 11447, 11456, 11457, 11466, 11467, 11476, 11477, 11486, 11487, 11499, 11500, 11509, 11510, 11519, 11520, 11529, 11530, 11539, 11540, 11549, 11550, 11560, 11561, 11574, 11575 ], "line_end_idx": [ 19, 20, 50, 51, 76, 77, 677, 678, 887, 888, 898, 899, 940, 941, 990, 991, 1033, 1429, 1430, 1734, 1735, 1858, 1859, 1860, 1903, 1904, 1914, 1915, 1951, 1952, 1983, 1984, 2004, 2005, 2436, 2437, 2801, 2802, 2812, 2813, 2840, 2841, 2887, 2888, 2912, 2948, 2949, 3410, 3411, 3756, 3757, 3767, 3768, 3784, 3785, 3814, 3815, 3831, 3832, 3869, 3870, 4260, 4261, 4433, 4434, 4660, 4661, 4718, 4719, 4729, 4730, 4763, 4764, 4807, 4808, 4828, 4829, 5259, 5260, 5671, 5672, 5682, 5683, 5723, 5724, 5773, 5774, 5790, 5791, 6137, 6138, 6449, 6450, 6561, 6562, 6572, 6573, 6585, 6586, 6648, 6649, 6662, 6663, 7006, 7007, 7328, 7329, 7475, 7476, 7486, 7487, 7502, 7503, 7567, 7568, 7604, 7605, 7691, 7692, 7736, 7737, 8307, 8308, 8318, 8319, 8337, 8338, 8400, 8401, 8420, 8421, 9059, 9060, 9284, 9285, 9295, 9296, 9325, 9326, 9358, 9359, 9376, 9377, 9534, 9535, 9829, 9830, 10218, 10219, 10229, 10230, 10268, 10269, 10327, 10328, 10373, 10374, 10403, 10430, 10431, 11085, 11086, 11177, 11178, 11209, 11210, 11211, 11244, 11245, 11273, 11301, 11302, 11312, 11320, 11321, 11336, 11337, 11341, 11342, 11358, 11359, 11372, 11373, 11393, 11394, 11398, 11399, 11423, 11424, 11436, 11437, 11446, 11447, 11456, 11457, 11466, 11467, 11476, 11477, 11486, 11487, 11499, 11500, 11509, 11510, 11519, 11520, 11529, 11530, 11539, 11540, 11549, 11550, 11560, 11561, 11574, 11575, 11585 ] }
{ "red_pajama_v2": { "ccnet_original_length": 11585, "ccnet_original_nlines": 217, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3826322853565216, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.009950250387191772, "rps_doc_frac_lines_end_with_ellipsis": 0.050458721816539764, "rps_doc_frac_no_alph_words": 0.13025780022144318, "rps_doc_frac_unique_words": 0.4760914742946625, "rps_doc_mean_word_length": 4.86018705368042, "rps_doc_num_sentences": 77, "rps_doc_symbol_to_word_ratio": 0.005879689939320087, "rps_doc_unigram_entropy": 6.060111999511719, "rps_doc_word_count": 1924, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.01154956966638565, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.00908994022756815, "rps_doc_frac_chars_top_3gram": 0.009624640457332134, "rps_doc_frac_chars_top_4gram": 0.008662180043756962, "rps_doc_books_importance": -855.8555297851562, "rps_doc_books_importance_length_correction": -855.8555297851562, "rps_doc_openwebtext_importance": -542.3984985351562, "rps_doc_openwebtext_importance_length_correction": -542.3984985351562, "rps_doc_wikipedia_importance": -422.8210144042969, "rps_doc_wikipedia_importance_length_correction": -422.8210144042969 }, "fasttext": { "dclm": 0.0005754199810326099, "english": 0.944472074508667, "fineweb_edu_approx": 1.4532874822616577, "eai_general_math": 0.0018844599835574627, "eai_open_web_math": 0.09883003681898117, "eai_web_code": 0.00016803000471554697 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.5", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "333.91", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Land use" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,085,386,193,308,495,000
Jump to content Holiday Ops Discounts • Please log in to reply 5 replies to this topic Jamadeus #1 Posted 14 January 2019 - 04:01 PM Staff Sergeant • Player • 21220 battles • 327 • [LOC-A] LOC-A • Member since: 02-19-2015 Have I missed the discounts? On this page it says   Block Quote  You can choose a vehicle for the discount until the release of Update 1.4   But obviously the festive garage is now gone, so there is no dropdown. It would be most annoying to miss out on all those credits. Geno1isme #2 Posted 14 January 2019 - 04:07 PM Field Marshal • Player • 48103 battles • 10,223 • [TRYIT] TRYIT • Member since: 09-03-2013 View PostJamadeus, on 14 January 2019 - 05:01 PM, said: Have I missed the discounts? On this page it says     But obviously the festive garage is now gone, so there is no dropdown. It would be most annoying to miss out on all those credits.   When you log into the client you'll get a notification about unused Holiday Ops rewards with a button that takes you to the interface where you can assign the discounts. Jamadeus #3 Posted 14 January 2019 - 04:10 PM Staff Sergeant • Player • 21220 battles • 327 • [LOC-A] LOC-A • Member since: 02-19-2015 Okay, I put my spectacles on and found it. Bottom right hand side, notifications, ⓘ . Thanks Geno1isme.   Edited by Jamadeus, 14 January 2019 - 04:18 PM. TungstenHitman #4 Posted 14 January 2019 - 04:13 PM Major General • Player • 30631 battles • 5,764 • Member since: 08-28-2016 That's why I just slapped any unused ones onto the Italian tech tree just in case.   T10 - FV something something new death star S-barn thingy T9- Conway, bought it, still semi-stock. T8- Italian  T7-Italian  T6-Italian  T5- T-34(Russian) bought it, put 2 marks on it, hated it so much, rage sold it again T4- Italian. Bought it, 7-8 battles from stock to complete grind and unlocked T5. Sold it.(nice tank for a T4 btw)) 15:15 Added after 1 minute O and didn't bother assigning T1-T3 since I don't care, free xp passed those tanks anyway and they're practically free anyway. If the option is still there later I might just use them and sell for a little extra credits... might be worth 1 shot of premium ammo lol Lorensoth #5 Posted 14 January 2019 - 05:50 PM Staff Sergeant • Player • 21029 battles • 335 • Member since: 06-17-2011 I was wondering same. After reading this, apperantly, i have crews sitting there, but still can't find place to apply my discounts.   Edit; ok figured out, you get message about using discount once login, so if you need to use discount, try reloging to game, message should be at where after battle reports shown. Edited by Lorensoth, 14 January 2019 - 06:48 PM. FU7D0M3 #6 Posted 19 January 2019 - 12:04 PM Private • Player • 18067 battles • 14 • Member since: 12-27-2013 Check here, the guy below shows the right place with a picture   http://forum.worldof...anks-discounts/ 1 user(s) are reading this topic 0 members, 0 guests, 0 anonymous users
{ "url": "http://forum.worldoftanks.eu/index.php?/topic/696894-holiday-ops-discounts/", "source_domain": "forum.worldoftanks.eu", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "66862", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:TSBRJOHETAHM7YNXOLTKKUO4UHA2EFNP", "WARC-Concurrent-To": "<urn:uuid:b91b766a-b0fe-44ab-9f6a-6ac291c98f08>", "WARC-Date": "2019-10-18T20:38:11Z", "WARC-IP-Address": "92.223.20.126", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:L2D3HDJQ2OWXRAIJKGEZVVDJJ5Z36EHO", "WARC-Record-ID": "<urn:uuid:e07421e6-89a5-4c50-9453-57a6fbabb6fd>", "WARC-Target-URI": "http://forum.worldoftanks.eu/index.php?/topic/696894-holiday-ops-discounts/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1c0c2ff8-6f78-4848-8b2b-519021b71e3e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-47.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 16, 17, 18, 40, 41, 42, 69, 93, 94, 140, 141, 160, 161, 172, 190, 198, 216, 234, 249, 250, 300, 301, 303, 304, 316, 317, 392, 393, 395, 396, 527, 528, 575, 576, 594, 595, 606, 624, 635, 653, 671, 686, 687, 743, 744, 794, 795, 797, 798, 800, 801, 932, 933, 935, 936, 1106, 1107, 1153, 1154, 1173, 1174, 1185, 1203, 1211, 1229, 1247, 1262, 1263, 1349, 1350, 1368, 1369, 1371, 1372, 1373, 1421, 1422, 1423, 1475, 1476, 1494, 1495, 1506, 1524, 1534, 1552, 1567, 1568, 1651, 1652, 1654, 1655, 1713, 1714, 1755, 1756, 1769, 1770, 1782, 1783, 1795, 1796, 1881, 1882, 1998, 1999, 2026, 2291, 2292, 2339, 2340, 2359, 2360, 2371, 2389, 2397, 2415, 2430, 2431, 2563, 2564, 2566, 2567, 2747, 2748, 2749, 2798, 2799, 2800, 2845, 2846, 2858, 2859, 2870, 2888, 2895, 2913, 2928, 2929, 2992, 2993, 2995, 2996, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3074, 3075 ], "line_end_idx": [ 16, 17, 18, 40, 41, 42, 69, 93, 94, 140, 141, 160, 161, 172, 190, 198, 216, 234, 249, 250, 300, 301, 303, 304, 316, 317, 392, 393, 395, 396, 527, 528, 575, 576, 594, 595, 606, 624, 635, 653, 671, 686, 687, 743, 744, 794, 795, 797, 798, 800, 801, 932, 933, 935, 936, 1106, 1107, 1153, 1154, 1173, 1174, 1185, 1203, 1211, 1229, 1247, 1262, 1263, 1349, 1350, 1368, 1369, 1371, 1372, 1373, 1421, 1422, 1423, 1475, 1476, 1494, 1495, 1506, 1524, 1534, 1552, 1567, 1568, 1651, 1652, 1654, 1655, 1713, 1714, 1755, 1756, 1769, 1770, 1782, 1783, 1795, 1796, 1881, 1882, 1998, 1999, 2026, 2291, 2292, 2339, 2340, 2359, 2360, 2371, 2389, 2397, 2415, 2430, 2431, 2563, 2564, 2566, 2567, 2747, 2748, 2749, 2798, 2799, 2800, 2845, 2846, 2858, 2859, 2870, 2888, 2895, 2913, 2928, 2929, 2992, 2993, 2995, 2996, 3035, 3036, 3037, 3038, 3039, 3040, 3041, 3074, 3075, 3113 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3113, "ccnet_original_nlines": 152, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2632331848144531, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.06008584052324295, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3605150282382965, "rps_doc_frac_unique_words": 0.501937985420227, "rps_doc_mean_word_length": 4.3643412590026855, "rps_doc_num_sentences": 26, "rps_doc_symbol_to_word_ratio": 0.011444919742643833, "rps_doc_unigram_entropy": 5.169025897979736, "rps_doc_word_count": 516, "rps_doc_frac_chars_dupe_10grams": 0.1865008920431137, "rps_doc_frac_chars_dupe_5grams": 0.19671402871608734, "rps_doc_frac_chars_dupe_6grams": 0.19671402871608734, "rps_doc_frac_chars_dupe_7grams": 0.1865008920431137, "rps_doc_frac_chars_dupe_8grams": 0.1865008920431137, "rps_doc_frac_chars_dupe_9grams": 0.1865008920431137, "rps_doc_frac_chars_top_2gram": 0.043960921466350555, "rps_doc_frac_chars_top_3gram": 0.04618116840720177, "rps_doc_frac_chars_top_4gram": 0.04218472167849541, "rps_doc_books_importance": -291.3363952636719, "rps_doc_books_importance_length_correction": -291.3363952636719, "rps_doc_openwebtext_importance": -190.68763732910156, "rps_doc_openwebtext_importance_length_correction": -190.68763732910156, "rps_doc_wikipedia_importance": -127.6866226196289, "rps_doc_wikipedia_importance_length_correction": -127.6866226196289 }, "fasttext": { "dclm": -0.000005479999799717916, "english": 0.9099408388137817, "fineweb_edu_approx": 0.9240398406982422, "eai_general_math": 0.0012130100512877107, "eai_open_web_math": 0.351894736289978, "eai_web_code": -0.000009540000064589549 } }
{ "free_decimal_correspondence": { "primary": { "code": "794.8", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-7,536,225,689,327,196,000
Cushions Cushion crush! These beauties have been handwoven by artisans using traditional techniques and the finest wools, cottons and metallic threads. 48 results TRIBE CUSHION BLUSH/TAN CALYPSO ROUND CUSHION BLUE/CORAL/TAN HARLEQUIN RECTANGULAR CUSHION SHIMMER CUSHION SHIMMER CUSHION $139.00 Mexicola Cushion DESERT BOLSTER CUSHION TAN AND FUSCHIA CLEO CUSHION CLEO CUSHION $175.00 Paz Silver Cushion Sale Paz Silver Cushion $75.00 $125.00 POPPY PEACHY CUSHION TRIANGLE SHAG CUSHION SHAG DIAMOND SILVER CUSHION VIVIAN CUSHION BLACK AND WHITE 48 results Continue shopping Your Order You have no items in your cart
{ "url": "https://langdonltd.com.au/collections/frontpage?page=3", "source_domain": "langdonltd.com.au", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "85712", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:62XF363ISHL346N6N7ZODJYNQHR3TLVF", "WARC-Concurrent-To": "<urn:uuid:1eb0636d-bbe9-4619-8bcd-09fc33ba44f8>", "WARC-Date": "2019-10-21T17:17:37Z", "WARC-IP-Address": "23.227.38.32", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:CM3V5KKUQ2TUJD75UYFVT2ZLHZRX6727", "WARC-Record-ID": "<urn:uuid:f7dc40db-0cfa-4be7-8746-088dbcf6e167>", "WARC-Target-URI": "https://langdonltd.com.au/collections/frontpage?page=3", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:17501954-ff0a-4e55-b6fb-53b5d0229c0f>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-173.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 9, 10, 153, 164, 188, 225, 255, 271, 287, 295, 312, 351, 364, 377, 385, 404, 409, 428, 443, 464, 486, 514, 545, 546, 557, 558, 576, 587, 588 ], "line_end_idx": [ 9, 10, 153, 164, 188, 225, 255, 271, 287, 295, 312, 351, 364, 377, 385, 404, 409, 428, 443, 464, 486, 514, 545, 546, 557, 558, 576, 587, 588, 618 ] }
{ "red_pajama_v2": { "ccnet_original_length": 618, "ccnet_original_nlines": 29, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.10091742873191833, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.38532111048698425, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.22018349170684814, "rps_doc_frac_unique_words": 0.6818181872367859, "rps_doc_mean_word_length": 5.829545497894287, "rps_doc_num_sentences": 7, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.746737003326416, "rps_doc_word_count": 88, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.0760233923792839, "rps_doc_frac_chars_top_3gram": 0.08187135308980942, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -46.65186309814453, "rps_doc_books_importance_length_correction": -59.362632751464844, "rps_doc_openwebtext_importance": -29.511985778808594, "rps_doc_openwebtext_importance_length_correction": -42.222755432128906, "rps_doc_wikipedia_importance": -27.733257293701172, "rps_doc_wikipedia_importance_length_correction": -40.444026947021484 }, "fasttext": { "dclm": 0.0015948399668559432, "english": 0.6462141871452332, "fineweb_edu_approx": 0.402728408575058, "eai_general_math": 0.00010920000204350799, "eai_open_web_math": 0.009312509559094906, "eai_web_code": 0.000010130000191566069 } }
{ "free_decimal_correspondence": { "primary": { "code": "647.9", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Household employees, Caterers and catering, and Real estate management" } }, "secondary": { "code": "746.9", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Needlework and Fancy work" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
8,155,786,734,375,173,000
ARLHS Kolaka (Sulawesi) Light ARLHS IDO-367 ARLHS ARLHS World List of Lights (WLOL) Located in Indonesia Call Area Add a photograph Details Also Known As: ARLHS IDO 367, IDO-367, IDO 367 Approximate Coordinates LAT: 04° 03' S LON: 121° 36' E Please Help Us Refine these Coordinates Map Link - KML Maidenhead Coordinates aka 'Gridsquare' PI05 Structure removed, relocated, destroyed or otherwise lost? no Listed in the World List of Lights since 2006-06-01 Google Map in New Window Red Lighthouse Map Icon Approx. Location yellow Lighthouse Map Icon Location Report Received Green Lighthouse Map Icon Location Verified Circle shows 1000m radius from light This record modified May 12, 2008. - Feedback to the WLOL Maintainer Amateur radio activity for this Lighthouse Start DateEnd DateCallsignNotes No Activations Known - Please add below Add a past, current or future operation. Activation Start Date - YYYY-MM-DD Activation End Date - YYYY-MM-DD (only if multiple days) Callsign of activator Notes The information contained within the ARLHS World List of Lights is Copyright 2003-2019 ARLHS, LLC. Visit ARLHS for usage information. Database HTML Rendering Programs, MySQL Schema and Web Site Content (excluding the actual lighthouse data) Copyright 2006-2019 John Huggins PHP/MySQL Database Engine: $Revision: 1.88 $ Lighthouse Display Program: $Revision: 1.49 $
{ "url": "http://wlol.arlhs.com/lighthouse/IDO367.html", "source_domain": "wlol.arlhs.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "10775", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MAHH6YRPBQVC6NB5EQKSWCOMNTTQQMTK", "WARC-Concurrent-To": "<urn:uuid:e9b24306-e7a3-4f28-b920-63fa07b09621>", "WARC-Date": "2019-10-18T06:06:22Z", "WARC-IP-Address": "184.106.236.246", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:ZXAPT44STQGOV7VJNQZLXVN7I3XMSIQS", "WARC-Record-ID": "<urn:uuid:86abf5c0-2a2f-4816-b9e5-4bafde4d785c>", "WARC-Target-URI": "http://wlol.arlhs.com/lighthouse/IDO367.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:178f5aaf-da75-43cc-9eb0-241627418d78>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-173.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 6, 7, 31, 32, 46, 47, 53, 54, 88, 89, 90, 91, 122, 123, 140, 141, 149, 164, 196, 220, 235, 251, 291, 306, 329, 346, 351, 413, 454, 465, 490, 514, 531, 558, 583, 609, 627, 628, 665, 666, 735, 736, 779, 811, 851, 892, 927, 960, 984, 1006, 1012, 1013, 1112, 1147, 1148, 1255, 1288, 1333 ], "line_end_idx": [ 6, 7, 31, 32, 46, 47, 53, 54, 88, 89, 90, 91, 122, 123, 140, 141, 149, 164, 196, 220, 235, 251, 291, 306, 329, 346, 351, 413, 454, 465, 490, 514, 531, 558, 583, 609, 627, 628, 665, 666, 735, 736, 779, 811, 851, 892, 927, 960, 984, 1006, 1012, 1013, 1112, 1147, 1148, 1255, 1288, 1333, 1378 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1378, "ccnet_original_nlines": 58, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.1111111119389534, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.10740741342306137, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2888889014720917, "rps_doc_frac_unique_words": 0.7049999833106995, "rps_doc_mean_word_length": 5.514999866485596, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.782726287841797, "rps_doc_word_count": 200, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.039891209453344345, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.024478690698742867, "rps_doc_frac_chars_top_3gram": 0.029918400570750237, "rps_doc_frac_chars_top_4gram": 0.0462375283241272, "rps_doc_books_importance": -140.6638641357422, "rps_doc_books_importance_length_correction": -140.66099548339844, "rps_doc_openwebtext_importance": -77.10444641113281, "rps_doc_openwebtext_importance_length_correction": -77.10444641113281, "rps_doc_wikipedia_importance": -42.19860076904297, "rps_doc_wikipedia_importance_length_correction": -41.17239761352539 }, "fasttext": { "dclm": 0.00003396999818505719, "english": 0.7207417488098145, "fineweb_edu_approx": 1.450924277305603, "eai_general_math": -0.000007269999969139462, "eai_open_web_math": 0.07250093668699265, "eai_web_code": 0.00001109000004362315 } }
{ "free_decimal_correspondence": { "primary": { "code": "623.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Military engineering and Marine engineering" } }, "secondary": { "code": "959.8", "labels": { "level_1": "History and Geography", "level_2": "Asia", "level_3": "Southeast Asia" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "1", "label": "Truncated Snippets" } }, "document_type_v2": { "primary": { "code": "8", "label": "Documentation" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,800,272,364,776,291,800
List Rental - Statlistics Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database The Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database reaches beef and dairy cattle producers who turn to Progressive Publishing to deliver practical tips, relevant news, cutting edge technology, and resources within the beef and dairy cattle industries. SEGMENTSSELECTS SELECTS 40,483 Total Universe / Universe Rate $160.00/M 40,483 Active Subscribers DESCRIPTION The Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database reaches beef and dairy cattle producers who turn to Progressive Publishing to deliver practical tips, relevant news, cutting edge technology, and resources within the beef and dairy cattle industries.  To make informed business and purchasing decisions, these professionals read Progressive Publishing magazines to receive timely data on market statistics, industry trends, herd management, and new product developments within the farm and ranch industry.   They rely on Progressive Dairyman, Progressive Cattleman, Progressive Forage Growers, and El Lechero magazines to provide informative topics on operational and managerial success. Informational articles from veterinarians, producers, and professors provide insight into breeding, calf and heifer raising, consumer consumption trends, bull management, range and pasture management, herd health, and nutrition.   Responsive to marketing offers that give them viable solutions in a highly competitive industry, these producers purchase the products and services they need to effectively manage and expand their operations. They purchase products like farm and ranch apparel, barn supplies, 4-wheelers, livestock medical supplies, feed, livestock supplements, fencing supplies, vaccines, gates, ID tags, castration supplies, disinfectants, wormers, ropes, branding equipment, milking buckets, milker cleaning equipment, udder care, pumps, regulators, gauges, stalls, milk stands, hay and alfalfa, milk storage, tractors, cooling tanks, muck boots, and barn cooling fans to ensure profitability in their livelihood as cattlemen and dairymen.    Producers in the Progressive Publishing Cattle, Calves, Heifers and Dairy Cow Professionals Database are receptive to marketing offers from work-wear clothiers, industry trade publications, software providers, computer manufacturers, agricultural equipment providers, livestock accessory suppliers, farm and ranch suppliers, office supply providers, trade show organizers, feed stores, financial and lending institutions, and continuing education providers. ORDERING INSTRUCTIONS   SELECTS State $15.00/M SCF $15.00/M Zip $15.00/M ADDRESSING Key Coding $3.50/M P/S Labels $15.00/M Run Charges $10.00/M Email/FTP $100.00/F    
{ "url": "https://www.statlistics.com/mailing-lists/progressive-publishing-cattle-calves-heifers-and-dairy-cow-professionals-database.html", "source_domain": "www.statlistics.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "9440", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CRCSXP46HCPM7XJGJGE66TZ7G5DVJMHH", "WARC-Concurrent-To": "<urn:uuid:ad6b58cc-c0cd-4bc8-a3d4-51697fcfc998>", "WARC-Date": "2019-10-18T11:32:34Z", "WARC-IP-Address": "50.204.49.200", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:CQJBOPLNK4RGPNP553KIKXVM3M4FJEKW", "WARC-Record-ID": "<urn:uuid:5b883c9b-3304-4dd6-8f2b-5a23ceb34f2d>", "WARC-Target-URI": "https://www.statlistics.com/mailing-lists/progressive-publishing-cattle-calves-heifers-and-dairy-cow-professionals-database.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:b53db663-5b2a-4ac0-8fd0-6d8187f23a9f>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-47.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 26, 27, 111, 112, 401, 402, 418, 419, 427, 428, 476, 502, 503, 515, 516, 1060, 1061, 1063, 1064, 1473, 1474, 1476, 1477, 2204, 2205, 2207, 2208, 2666, 2667, 2689, 2690, 2692, 2693, 2701, 2702, 2717, 2730, 2743, 2744, 2755, 2756, 2775, 2795, 2816, 2836, 2837, 2839, 2840 ], "line_end_idx": [ 26, 27, 111, 112, 401, 402, 418, 419, 427, 428, 476, 502, 503, 515, 516, 1060, 1061, 1063, 1064, 1473, 1474, 1476, 1477, 2204, 2205, 2207, 2208, 2666, 2667, 2689, 2690, 2692, 2693, 2701, 2702, 2717, 2730, 2743, 2744, 2755, 2756, 2775, 2795, 2816, 2836, 2837, 2839, 2840, 2841 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2841, "ccnet_original_nlines": 48, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.14198783040046692, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.040567949414253235, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2636916935443878, "rps_doc_frac_unique_words": 0.5635359287261963, "rps_doc_mean_word_length": 6.447513580322266, "rps_doc_num_sentences": 17, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.939629077911377, "rps_doc_word_count": 362, "rps_doc_frac_chars_dupe_10grams": 0.2712082266807556, "rps_doc_frac_chars_dupe_5grams": 0.2712082266807556, "rps_doc_frac_chars_dupe_6grams": 0.2712082266807556, "rps_doc_frac_chars_dupe_7grams": 0.2712082266807556, "rps_doc_frac_chars_dupe_8grams": 0.2712082266807556, "rps_doc_frac_chars_dupe_9grams": 0.2712082266807556, "rps_doc_frac_chars_top_2gram": 0.027420740574598312, "rps_doc_frac_chars_top_3gram": 0.04627249017357826, "rps_doc_frac_chars_top_4gram": 0.05655527114868164, "rps_doc_books_importance": -192.91615295410156, "rps_doc_books_importance_length_correction": -192.91615295410156, "rps_doc_openwebtext_importance": -151.30364990234375, "rps_doc_openwebtext_importance_length_correction": -151.30364990234375, "rps_doc_wikipedia_importance": -112.93760681152344, "rps_doc_wikipedia_importance_length_correction": -112.93760681152344 }, "fasttext": { "dclm": 0.0227468591183424, "english": 0.8664919137954712, "fineweb_edu_approx": 1.6260273456573486, "eai_general_math": 0.0005105099990032613, "eai_open_web_math": 0.007977190427482128, "eai_web_code": 0.0029504899866878986 } }
{ "free_decimal_correspondence": { "primary": { "code": "636.2", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Domestic animals and Pets" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,118,403,867,508,051,000
Narcotics Anonymous UK Helpline: 10.00am - midnight 0300 999 1212 Bangor To tell us about changes to this meeting, please press the NEW DRAFT tab (above when logged in). Click here for an illustrated guide Monday 12:00 pm Monday lunchtime meeting Group Classroom Penrhyn House Llandegai Road Bangor Gwynedd County Wales LL57 1PZ Open meeting. Area:  NW England & N Wales Area Meeting Format "Open to all" Candlelight Living Clean Study Wheelchair Accessible? :  No Length of meeting:  1 hour 30 mins Train stations:  Bangor Postcode:  Llandegai Road Bangor LL57 1PZ Customize This
{ "url": "https://ukna.org/meeting/bangor-0", "source_domain": "ukna.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "55098", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CXK3X5LRKCPQCXFEWAFCWE3UKVRYB5U2", "WARC-Concurrent-To": "<urn:uuid:8e3fe8e0-28b2-4374-af1c-4168245b0516>", "WARC-Date": "2019-10-16T10:10:03Z", "WARC-IP-Address": "104.25.226.4", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:NCH7S564CDPRLCUWTRVGJEKGC6G4VR5I", "WARC-Record-ID": "<urn:uuid:25efb910-d367-490e-b436-593be9953687>", "WARC-Target-URI": "https://ukna.org/meeting/bangor-0", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:8066f6da-4e3b-4cde-9295-93fed032519b>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-192.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 23, 24, 53, 67, 68, 75, 76, 209, 210, 217, 226, 257, 267, 281, 296, 303, 318, 324, 333, 347, 354, 380, 381, 396, 397, 411, 423, 442, 468, 471, 491, 506, 523, 530, 541, 556, 572 ], "line_end_idx": [ 23, 24, 53, 67, 68, 75, 76, 209, 210, 217, 226, 257, 267, 281, 296, 303, 318, 324, 333, 347, 354, 380, 381, 396, 397, 411, 423, 442, 468, 471, 491, 506, 523, 530, 541, 556, 572, 586 ] }
{ "red_pajama_v2": { "ccnet_original_length": 586, "ccnet_original_nlines": 37, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.15596330165863037, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.08256880939006805, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2293577939271927, "rps_doc_frac_unique_words": 0.800000011920929, "rps_doc_mean_word_length": 5.166666507720947, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.1735334396362305, "rps_doc_word_count": 90, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.055913981050252914, "rps_doc_frac_chars_top_3gram": 0.08172042667865753, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -41.139251708984375, "rps_doc_books_importance_length_correction": -55.347476959228516, "rps_doc_openwebtext_importance": -16.993350982666016, "rps_doc_openwebtext_importance_length_correction": -31.20157814025879, "rps_doc_wikipedia_importance": -17.773611068725586, "rps_doc_wikipedia_importance_length_correction": -31.98183822631836 }, "fasttext": { "dclm": -0.000007870000445109326, "english": 0.6455252766609192, "fineweb_edu_approx": 0.5750917792320251, "eai_general_math": 0.000014539999938278925, "eai_open_web_math": 0.0064940499141812325, "eai_web_code": -0.000009420000424142927 } }
{ "free_decimal_correspondence": { "primary": { "code": "362.29285", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "20", "label": "Structured Data" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,423,643,082,984,752,000
New Subaru Ascent Olathe KS 66061 Subaru Ascent Limited 8-Passenger The 2020 Subaru Ascent. Under the hood you'll find a 4 cylinder engine with more than 200 horsepower, and all wheel drive keeps this model firmly attached to the road surface. Well tuned suspension and stability control deliver a spirited, yet composed, ride and drive Turbocharger technology provides forced air induction, enhancing performance while preserving fuel economy. Subaru infused the interior with top shelf amenities, such as: variably intermittent wipers, adjustable headrests in all seating positions, an automatic dimming rear-view mirror, heated front and rear seats, air conditioning, heated steering wheel, and power seats. Subaru also prioritized safety and security with features such as: head curtain airbags, front side impact airbags, traction control, brake assist, a security system, an emergency communication system, and 4 wheel disc brakes with ABS. Adaptive cruise control maintains a pre set distance behind the car ahead of you, simplifying highway driving and enhancing safety. Our experienced sales staff is eager to share its knowledge and enthusiasm with you. They'll work with you to find the right vehicle at a price you can afford. Please don't hesitate to give us a call. Tags: Subaru, New, SUV, Ascent * Although every reasonable effort has been made to ensure the accuracy of the information contained on this site, absolute accuracy cannot be guaranteed. This site, and all information and materials appearing on it, are presented to the user "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability, fitness for a particular purpose, title or non-infringement. All vehicles are subject to prior sale. Price does not include applicable tax, title, and license. Not responsible for typographical errors. ) ; ;
{ "url": "https://www.olathesubaru.com/blog/video/2019/october/2/2020-Subaru-Ascent-Olathe-KS-679737360a0e0ae7370e1c361aa0a830.htm?locale=en_US", "source_domain": "www.olathesubaru.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "137221", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:TPTOQZI62XHAXQ3NS7LKK5GPQVKI3AC7", "WARC-Concurrent-To": "<urn:uuid:72a2f768-3d7c-41fa-a04d-24a7de1975b8>", "WARC-Date": "2019-10-17T17:38:22Z", "WARC-IP-Address": "165.254.45.175", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:FZMWD7M54WOUNHFUM7NAD4KJV2OFMXM7", "WARC-Record-ID": "<urn:uuid:8b564ef3-be3a-477b-b5c0-84269a30a621>", "WARC-Target-URI": "https://www.olathesubaru.com/blog/video/2019/october/2/2020-Subaru-Ascent-Olathe-KS-679737360a0e0ae7370e1c361aa0a830.htm?locale=en_US", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:93d0bd91-5b75-43bc-b7c8-3f007d51e3cc>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-191.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 34, 35, 36, 70, 71, 1283, 1284, 1315, 1316, 1898, 1899, 1901 ], "line_end_idx": [ 34, 35, 36, 70, 71, 1283, 1284, 1315, 1316, 1898, 1899, 1901, 1904 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1904, "ccnet_original_nlines": 12, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2909604609012604, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.008474580012261868, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1836158186197281, "rps_doc_frac_unique_words": 0.6816608905792236, "rps_doc_mean_word_length": 5.352941036224365, "rps_doc_num_sentences": 14, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.041193008422852, "rps_doc_word_count": 289, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.023270849138498306, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -212.55638122558594, "rps_doc_books_importance_length_correction": -212.55625915527344, "rps_doc_openwebtext_importance": -92.39299774169922, "rps_doc_openwebtext_importance_length_correction": -92.39299774169922, "rps_doc_wikipedia_importance": -72.44495391845703, "rps_doc_wikipedia_importance_length_correction": -72.44495391845703 }, "fasttext": { "dclm": 0.015004280023276806, "english": 0.9232551455497742, "fineweb_edu_approx": 0.7389299273490906, "eai_general_math": 0.005479339975863695, "eai_open_web_math": 0.14165657758712769, "eai_web_code": 0.000658750010188669 } }
{ "free_decimal_correspondence": { "primary": { "code": "629.2222", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } }, "secondary": { "code": "629.22", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "13", "label": "News (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
5,382,342,605,490,926,000
Close Support Global Voices To stay independent, free, and sustainable, our community needs the help of friends and readers like you. Donate now » See all those languages up there? We translate Global Voices stories to make the world's citizen media available to everyone. Learn more about Lingua Translation  » China: Can a cop-killer be a hero? Actually, the majority opinion in the story of Beijing resident Yang Jia who recently rushed into a police building in Shanghai and stabbed and killed six police officers, wounding several others, seems to be on Yang's side. Since then, Yang's mother has mysteriously disappeared, Beijing police have been sent to investigate and, judging from what's being said online, Shanghai police are refusing to cooperate. Another thing that remains is GenitalGate, the rumor/story flying around that Yang was beaten so badly by police last year when he was accused of having stolen a bicycle that his genitalia no longer functioned properly, and this was the reason for his revenge. Related to that is the idea that Roland Soong at EastSouthWestNorth put forth recently following the Weng'an pushup-riots, that either the most effective or most recent technique used by China's human flesh internet discussion directors aka the 50 Cent Party (will somebody please write them an entry on Wikipedia already!) in an age where enough netizens are savvy enough to get around keyword blocks, is to flood the blogosphere with disinformation in situations like these similar enough to divide portions of the online community and discredit the rest. More information continues to surface on who these 50 Centers are and how they go about their work, so, second, is it likely that this short personal essay which appeared (briefly, for some) on all the usual major BBS forums yesterday was planted in an attempt to influence discussion? For example, how could the journalist mentioned below be so certain that any talk of Yang Jia's genital dysfunction was a lie? One commenter in the post linked to below notes that whoever posted it also only registered that account yesterday. ‘Fragmented thoughts on the Zhaibei police attack case “GenitalGate”‘ as posted on XinhuaNet on July 25: 一、关于生命 袭警案发生了有些日子了,网上各种声音起云涌,其中最夺人心魄的便是“生殖器”门了。由于生殖器被打残,杨佳才愤而杀人,夺走6条人命。于是乎群情激愤,杀人者成了英雄,被杀者成了活该。反过来的话,要是一个警察哪怕是杀了6个罪犯,这个警察恐怕会面临武力使用过当的指控,是绝对成不了英雄的。 难道6个警察的命就不是人命吗?难道面对6条无辜逝去的生命一律忍心用“尽管杀人是不对的,但是……”这种语言来说话不嫌太冷酷吗? 社会进步的最高表现便是尊重生命。不久前的纹川地震,我们一起哀悼死难的同胞,从未追问他生前是好人还是坏人,共同唱响对生命的礼赞,使我们民族的灵魂升华。这一次,难道我们就应该冷酷地拷问生前是非,仅仅就应为他们是警察吗?试问,如果杨佳式的“英雄”行为得以褒扬,我们的社会不就成了杀戮至上野蛮的丛林了吗? 不懂得尊重生命,就是野蛮和落后,别拿林冲来说事儿! 杨佳成了英雄,真是亘古奇闻! 1. Regarding life It's been a good few days since the attack on police took place, and all sorts of voices have rung forth on the internet, the most sensational of which has been “GenitalGate”. Because he'd had his genitalia ruined in a beating, he became enraged and a killer, taking six lives. Then the public became furious, the killer became a hero, and the murdered then deserved it. Flip that around, if this had been a cop who killed six criminals, that cop would just be accused of excessive use of force. He definitely would not have become a hero. So…six cops, aren't these human lives too? Six innocent lives were lost and to go and so easily say things like, ‘killing people is wrong, but……”, don't you think that's a little cold-hearted? The clearest display of social progress is respect for life. Just a short time ago, we mourned for the tragic deaths of our compatriots in the Wenchuan earthquake. There was no asking if they were good people or bad throughout their lives, there was only unity in singing praise for life, uplifting the souls of our people. Now, though, it's like people are ready to torture others just to prove that they were wrong, and why, because they were cops? So let me ask, if “heroes” like Yang Jia are worthy of praise, won't our society then become some sort of kill-or-be-killed barbaric jungle? To not know how to respect life is to be backwards and primitive, so don't even think about talking about Lin Chong! How Yang Jia became a hero is far beyond me! 二、关于杨佳 杨佳已经被舆论打扮成大大的良民,其父说他“好读书”,旅馆说他按时交房钱,且不论是否真的,这就够良民了吗?我就看到有报道说他平时寡言少语,但为点鸡毛琐事就和邻居拔拳相向,大打出手,是个不叫则已,一叫就咬死人的疯狗,更加接近为了打牌输掉就杀死同学的马家爵!这种人在社会上确有一些,其自有存在的合理性,正常人千万敬而远之,以免杀生之祸。 2. Regarding Yang Jia Popular opinion has already painted Yang Jia as some sort of model citizen, his dad has said that he was “good in school”, the hostel he was staying at said he paid his rent on time, and regardless of if these are true or not, is that alone enough to make someone a model citizen? I see reports saying he kept to himself and didn't talk much, but then went picking fights with the neighbors over the most trivial of things, getting violent with them, a mad dog who needed no provocation, but when provoked would bite and not be able to stop, overall looking a lot like Ma Jiajue who killed his classmates over a poker match! People like this definitely do exist in society, and normal people always keep a safe distance, so to avoid tragic loss of life. 三、关于警察 这些年贪官污吏也杀了不少,抓得更多,但新的还在出现。原因很复杂,从人们如潮的怒骂背后,我更多听到的不是道德的谴责和法制的呼唤,而是心态“不平衡” 三个字。试想,这样的人一旦为官,怎能不去“找平衡”?价值观不正,这是贪官不断的一个重要原因。警察作为官府的人,也是从老百姓中来的人,既不象宣传得那么好,也不象大家说的那么坏。为什么一出事就无根据地认定是警察坏了呢?在杨佳被警察拦下的事情上,我就听说他是在人行道上骑着一辆无牌自行车才被拦住的。全世界的警察都在街上盘查可疑人,而每个害怕在街上遭遇飞车抢劫的上海人也都会赞同这样的盘查。当然我也没根据说警察的态度很好,但说警察不对的目前也没看到什么根据,有的都是推断。 3. Regarding the police Over the past few years, more than a few corrupt officials have been killed, and even more have been arrested, but new ones continue to appear. The reasons for this are complicated, but behind all the people cursing angrily like the tide, what I hear most are not moral condemnations or cries for the legal system, but signs of unbalanced mentality. If you think about it, when people like this become officials, why is it that they don't go find balance? Unhealthy values, this is one of the key reasons for unending official corruption. Police, as authority officials, are also people who come from the public, neither as good as gets propagandized, nor as bad as everyone says. Why is that that when something goes wrong police are groundlessly assumed to be bad? As for the incident of Yang Jia being stopped by police, I even heard that he was only stopped for riding an unlicensed bicycle in a pedestrian lane. Police around the world stop and check suspicious people on the streets, and every Shanghai resident afraid of being jacked in a rob-and-run will agree with these inspections. Of course, I don't have any basis to say that police have good attitudes, but then I haven't seen any basis at present to go and say that police are bad, and anyone who does is just speculating. 四、关于“生殖器门” 这个消息可靠吗?我搜了一下,最早是一个匿名者2号晚上发在Myspace的一个跟贴上的,故事很煽情,但至今没有任何可靠一点的渠道能证实。传的人多了,却几乎变成了确凿事实,据说连凤凰卫视都信了。我有个记者朋友通过关系看到了杨佳自己写的申述状,连杨佳自己都从未说过关于腰部以下的任何事!他告诉我此事肯定是假的,但是发新闻效果不讨人喜欢所以不吭气。从此我鄙视他。 “生殖器门”比周老虎的照片容易分辨,打坏了要变好恐不那么容易,我不信警察隐瞒得掉。要是真的,杨佳杀的就不会是分局,而是派出所,因为拦他的警察就是派出所的,那个地方每天都有老百姓随便进去办户口,不想某些想象力过高的人说的比分局更难冲进去,这是每个中国人都知道的常识。我看他要杀的是在处理中不给他钱的人,因为有可靠消息证明他在山西警察那里就搞到了数万元钱,搞钱的方法和动迁时做“钉子户”差不多。 呜呼,可悲的“生殖器门”!世上本无所谓真相,说的人多了,也就成了真相。 舆论能杀人!它既把秦桧钉上了历史的耻辱柱,弘扬了千古正气,也把大明的长城袁崇焕送上了断头台,使大好河山沦于鞑虏之手。不管许多人喜欢不喜欢,我要说的是: 好听的故事不等于事实,这一次,舆论错了! 4. Regarding “GenitalGate” Is this information reliable? I did a search, and the earliest I was able to find was an anonymous MySpace user who posted it on the evening of the 2nd. The story is very stirring, but to this day there hasn't been anything more substantial to confirm this. The number of people who have spread it around is quite high, and that alone has nearly made it irrefutable fact, apparently even Phoenix TV even believed it. I have one journalist friend who through his connections was able to see Yang Jia's handwritten statement, and even Yang Jia himself has never said anything at all regarding the area below his waist! He told me that GenitalGate was a lie, but to put that in the news wouldn't please viewers, and that's why he kept silent. Because of this, I despise him. “GenitalGate” is even easier to refute than the Zhou Tiger photos, because for that to be beaten bad and then recover, I'm afraid, is not that easy, so I don't believe that the police would have been able to cover that up. If it is true, Yang Jia wouldn't have killed people at a central police office, but at a local police station, because the police who stopped him were from a police station, and people go in and out of there every day to process hukous, which, unlike those people with too much imagination are saying, is not harder to rush into than a central police office building. This is common sense of which every Chinese person is aware. I can see that the people he wanted to kill were those who wouldn't give him money while he was being processed, because there is reliable information which proves that while he was being held by police there in Shanxi, he got them for tens of thousands of RMB, using pretty much the same tactics at the same time as the “Nailhouse”. Alas, for this unfortunate “GenitalGate”! There is no so-called truth on this earth, only people who talk a lot, of stuff that becomes truth on its own. Public opinion gets people killed! It got Qin Hui fixed in the most humiliating pose in history, bringing about ages of righteousness, put Yuan Chonghuan of the Great Wall up on the head-chop block, even led to our rivers and valleys falling at the hands of the foreigners. No matter how many people like or dislike this, what I want to say is: Just because a story sounds good doesn't mean it's true, and this time, public opinion is wrong! 26 comments • Kai And the plot thickens… This is one of those situations where one doesn’t know who to believe as there is sufficient precedent to believe either side: The government cover-up and the public rumor mill. I’m curious what some of GVO’s resident anti-West China-defenders think of this domestic situation. Are they inclined to be on the side of the authorities or the public? Especially when the facts of the matter are so difficult to be sure of due to issues of credibility. • ali baba 选录天涯社区 天涯杂谈 网友呼吁给杨佳寡母捐款的帖子,我谨照录如下: On http://www.tianya.cn,bbs named 天涯杂谈 ,there are many netizens support Yang Jia,calling for donation for Yang Jia mother.Below are a few of them: “号召给英雄杨佳的母亲捐款吧!” Lets give some money to hero Yang Jia’s mother ! “杨佳杀了警察客观上是为我们每一个人杀的!他的愤怒,他的恶其实是我们每一个人身上都有的!” The fact is,Yang Jia did kill some cops,but he KILLED for US,everyone of us! His rage,fury,and indignation actually are all very common to us! “计划生育让每个家庭里都只有独苗!他需要多大的勇气!他需要被逼到多惨的境地才做出这么极端的事情!” Under birth planning and control,every family can only have one child! A solitude seedling ! What enormous courage he needed to command !What absolute hopeless situation he was forced into,in order for him to execute such an extreme deeds ! “在现在这么腐败的社会,每个人都有可能是杨佳,我们不爆发也许是还未被逼到绝路!” In this terriblely corrupted society,every person can possiblely become a Yang Jia, we have not exploded yet,may be it is because we have not being forced into the road of no return ! “希望杨佳案件能让政府重新尊重老百姓!小人物其实是可以改变历史的。” Lets hope this Yang Jia case would let the government start fresh to show some respect for ordinay folks ! Insignificant folks can infact change history. “杨佳走好,你代替了我们去为恶,就像孙志刚代替我们去死一样。” Yang Jia you have a good journey to heaven, you did the wicked thing for us,just like Soon Tse-gan who die for all of us. “当年贺龙、彭德怀两把菜刀杀恶吏被称英雄,是闹革命。小民用牺牲来唤醒民众,抗议不公正,可敬。不是每个人都有这勇气的。向杨佳致敬!” Years ago He Long and Pang De-why (note: this 2 revolutionaries were Mao’s comrades) were praised as heros,and was revolution when they killed bad officials using 2 chopping knifes .Ordinary folk sacrifice oneself in order to wake up others,to protest against injustice, is to be respected. Not everyone has this kind of courage.Lets salute to Yang Jia! Kungfu Panda says: There are thousands and thousands of netizens showing support towards Yang Jia,even on http://www.people.com.cn ,the official CCP web site,its bbs 强国论坛 ,translate strong nation forum. • ali baba 作者:遥远的净土 回复日期:2008-7-21 3:44:37      刀客之歌(原《游击队之歌》改编) This post is one that I copy n paste from http://www.kdnet.com.cn  游击队之歌 ,The Song of the guerrilla, is a very famous mainland chinese song in the 60s,it was a theme song in one of those revolutionary movie,millions of older mainland Chinese grew up with this song during their childhood. The following is an adaptation of The Song of the guerrilla.I cannot imagine someone with musical talent might turn this new adaptation into a MTV and put it on youtube. It might become an overnight heat.             我们都是快刀手 Our knifes are faster than lightning       每一个刀光点燃一个希望 Every shining blade sparks one more desire       我们都是热血儿呀 Our blood is hot and boiling       哪怕那楼高防卫森 Spit at the high security n tall building       在这无理的社会里 In this ruthless lawless society       无门申诉只好自己动手 Take law into our hand because nowhere to plead       在这辽阔的大地上 On this vast n broad motherland       有我们无数的杨刀客 Yang knifemen are millions n millions indeed              虽有吃虽有穿 We all have food we all have clothes       尊严怎能任践踏呀 But no one is to step on our dignity       没有枪没有炮 No gun or no cannon       家家有菜刀 Choppin knife can still be user to chop meat       和谐社会还遥远呀 Harmonious society too far away       还需要无数悲歌来唤醒 Millions of us will sing millions songs of tragdies       自古燕赵多壮士呀 Heroic warriorrs abundant in these countries       血染淞江唤不归 Lets blood stain Sung River is our destiny    • Thanks, ali baba. Seems that song has already been harmonized.. • ali baba To JK, Have you ever listen to the original Song of the guerrilla?It was quite a song,with marching tempo,and male only choir.I think it showed a lot of soviet influence.It does make the blood boil a bit,especially with the new lyric. You mention it’s being harmonized,that is not all.The national anthem,Le International,plus heaps of others. That really makes one wonder,a nation that ban its own national anthem on internet forum,wouldn’t it score a first in the guinness book of record ? But then,nothing from mainland China surprise me any more. • ali baba 奥运和杀警案 挑动京沪瑜亮情节 Olympic and police-being-slayed,stir up uneasy feelings between Beijing and Shanghai  2008-07-14 中国时报 徐尚礼/上海报导 China Times Su Shang Le reports from Shanghai  北京举行奥运及北京人杨佳在上海杀警案再次挑起京沪瑜亮情节。昨两地网民相互叫骂到了口不择言地步。 The fact that Beijing stage olympic,and Yang Jia,being Beijing local,stabbed a numbers of Shanghai policemen to death,has again stired up uneasy feelings between Beijing and Shanghai.The swearing and cursing between netizens from these two rivaling cities has gone a bit out of hand.  上海闸北分局本月一日遭来自北京的杨佳闯入并杀死六名警察后,许多北京人对上海警方竟然称中国首都百姓为「外地人」很不爽。近日,北京报纸还反驳上海警方指称杨佳「个性孤癖」,说杨佳「乘巴士会主动让座」。 On 1-July,Yang Jia,a Beijing local,went into Shanghai Jah-bei police building and stabbed six policemen to death; Shanghai police not only called Yang Jia a “outsider”,also claimed that Yang is a “queer kind of guy”.Beijing newspaper retorte that Yang “would offer his seat to others in a bus”,and many Beijing citizens are not happy that Shanghai police calling national capital’s citizen an “outsider”  昨天大陆一知名网路论坛有一被认为是来自上海网民,在网上质疑北京空气污浊不适合办奥运,立即引发激烈论战。 Yesterday,on one mainland famous internet forum,a supposed to be from Shanghai netizen,made the accusation that Beijing’s polluted air is not suitable for olympic events.It immediately sparks a fierce volley of verbal exchange.  一北京网民说,「北京的奥运会跟你们有关系吗?不就是没在你家办吗?一群SB就欠猛人捅,多捅你们几个就好了,黄埔江的水都给你们喝成脑残了」。 One Beijing netizen said:”What has Beijing Olympic got to do with you guys ? Just because it is not being staged in your home town ? A bunch of SB,you need to be stabbed by real macho men,should have stabbed a few more,the water from Huang Pu Jiang has turned you lots into brain-deaths.”  另一「最近我们北京男人真是威啊」帖子说「出了个杨大侠,单刀赴会杀了六个上海警察。我们北京男人狠狠出了口恶气。这几年被上海小男人姚明、刘翔等压得喘不过气来了,建议大赦杨大侠,选他为北京政协委员」。 Another netizen:”Recently us Beijing men really are very proud of ourself.Hero Yang,one of us,killed six Shanghai policemen with a single blade.What a beautiful and sweet feeling of revenge.This few years,we are sick of petty and sissy Shanghai men the like of Yao Ming and Liu Xiang. I suggest full pardon for Hero Yang,and vote him into the central government.” To JK, The above post was on your another thread “Citizen journalists prepare for the Olympic” but score no response. I put it up on here again hopefully someone might bother to send in a few comments,for or against it,whatever. • alibaba @alibaba: This natonal anthem written for this Yan Zhao area hero, represent what most chinese think, not just people from Yang Jia’s hometown. These comments you posted as dialogs between shanghai and beijing netizens, what are the purpose of that? The best will be painting a picture of beijingers rude rivary discredit Yang Jia case in legal sense. We all know, Beijing has many rivals, shanghai is not one of them. To stur a scene like a fight between Beijing and Shanghai hoping for Beijing’s international rivals (by acting like a rival of Beijing)helping win sympathy for cops is something new this time. • purpose I can’t believe how low this is yet to go to turn this case into a seemingly regional conflict to discredit the legal sense of it. • ali baba To alibaba: Are you going to continue using this name “alibaba” ? If you are,I can change to another name,otherwise is a bit of confusion. I am glad you like the new song of the guerrilla.I will post more of them because it shows that people do have talents. • purpose If you are one of those 50-cents party who rely earnings through clicks, thanks, I still can donate though. I didn’t commnent on song of the guerrilla, you seem to call the writers of this song guerrillas. Regardless how much you want to prove the “talents” of guerrillas you disagree with, it is still a legal case that has been handled very poorly. Cancel this reply Join the conversation -> alibaba Authors, please log in » Guidelines • All comments are reviewed by a moderator. Do not submit your comment more than once or it may be identified as spam. • Please treat others with respect. Comments containing hate speech, obscenity, and personal attacks will not be approved.
{ "url": "https://globalvoices.org/2008/07/25/china-can-a-cop-killer-be-a-hero/?replytocom=1492202", "source_domain": "globalvoices.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "199961", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:N7EH6Q7CR64S7FI2VBYFHJB2L4OYMD2X", "WARC-Concurrent-To": "<urn:uuid:e738beb9-225b-45d8-b95b-a23003871b39>", "WARC-Date": "2019-10-21T23:00:39Z", "WARC-IP-Address": "213.108.110.5", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:UZ32XCGBRH67VIZAOXE75WY7KZJZIFBC", "WARC-Record-ID": "<urn:uuid:a8294fbe-fa4c-4adb-b3ed-3243ff1e318b>", "WARC-Target-URI": "https://globalvoices.org/2008/07/25/china-can-a-cop-killer-be-a-hero/?replytocom=1492202", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ec0e66f3-a0a4-4082-9911-4e2a46c351fa>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-166.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 6, 7, 29, 30, 136, 137, 150, 151, 277, 278, 317, 318, 353, 354, 767, 768, 1029, 1030, 1588, 1589, 2118, 2119, 2224, 2225, 2232, 2233, 2373, 2374, 2437, 2438, 2587, 2588, 2614, 2615, 2630, 2631, 2649, 2650, 3190, 3191, 3384, 3385, 3977, 3978, 4095, 4096, 4141, 4142, 4149, 4150, 4316, 4317, 4339, 4340, 5094, 5095, 5102, 5103, 5409, 5410, 5434, 5435, 6723, 6724, 6735, 6913, 6914, 7110, 7111, 7147, 7148, 7224, 7225, 7246, 7247, 7274, 7275, 8047, 8048, 9034, 9035, 9188, 9189, 9534, 9535, 9632, 9633, 9645, 9646, 9654, 9655, 9682, 9683, 9865, 9866, 10141, 10142, 10155, 10156, 10195, 10196, 10347, 10348, 10369, 10370, 10423, 10424, 10474, 10475, 10622, 10623, 10677, 10678, 10923, 10924, 10969, 10970, 11158, 11159, 11198, 11199, 11357, 11358, 11394, 11395, 11521, 11522, 11592, 11593, 11951, 11952, 12159, 12160, 12173, 12174, 12211, 12236, 12306, 12307, 12534, 12535, 12744, 12754, 12772, 12813, 12814, 12836, 12883, 12884, 12903, 12936, 12937, 12956, 13002, 13003, 13022, 13059, 13060, 13081, 13133, 13134, 13153, 13189, 13190, 13210, 13259, 13270, 13287, 13328, 13329, 13348, 13389, 13390, 13407, 13431, 13432, 13448, 13497, 13498, 13517, 13553, 13554, 13575, 13631, 13632, 13651, 13700, 13701, 13719, 13766, 13773, 13774, 13842, 13843, 13856, 13857, 13868, 14100, 14101, 14214, 14366, 14429, 14430, 14443, 14444, 14464, 14554, 14555, 14584, 14585, 14635, 14636, 14689, 14690, 14978, 14979, 15082, 15083, 15491, 15492, 15549, 15550, 15782, 15783, 15857, 15858, 16151, 16152, 16255, 16256, 16624, 16625, 16636, 16751, 16866, 16867, 16879, 16880, 16894, 17032, 17244, 17508, 17509, 17521, 17522, 17657, 17658, 17671, 17672, 17688, 17746, 17823, 17824, 17948, 17949, 17961, 17962, 18074, 18075, 18322, 18323, 18341, 18342, 18375, 18376, 18401, 18402, 18413, 18414, 18535 ], "line_end_idx": [ 6, 7, 29, 30, 136, 137, 150, 151, 277, 278, 317, 318, 353, 354, 767, 768, 1029, 1030, 1588, 1589, 2118, 2119, 2224, 2225, 2232, 2233, 2373, 2374, 2437, 2438, 2587, 2588, 2614, 2615, 2630, 2631, 2649, 2650, 3190, 3191, 3384, 3385, 3977, 3978, 4095, 4096, 4141, 4142, 4149, 4150, 4316, 4317, 4339, 4340, 5094, 5095, 5102, 5103, 5409, 5410, 5434, 5435, 6723, 6724, 6735, 6913, 6914, 7110, 7111, 7147, 7148, 7224, 7225, 7246, 7247, 7274, 7275, 8047, 8048, 9034, 9035, 9188, 9189, 9534, 9535, 9632, 9633, 9645, 9646, 9654, 9655, 9682, 9683, 9865, 9866, 10141, 10142, 10155, 10156, 10195, 10196, 10347, 10348, 10369, 10370, 10423, 10424, 10474, 10475, 10622, 10623, 10677, 10678, 10923, 10924, 10969, 10970, 11158, 11159, 11198, 11199, 11357, 11358, 11394, 11395, 11521, 11522, 11592, 11593, 11951, 11952, 12159, 12160, 12173, 12174, 12211, 12236, 12306, 12307, 12534, 12535, 12744, 12754, 12772, 12813, 12814, 12836, 12883, 12884, 12903, 12936, 12937, 12956, 13002, 13003, 13022, 13059, 13060, 13081, 13133, 13134, 13153, 13189, 13190, 13210, 13259, 13270, 13287, 13328, 13329, 13348, 13389, 13390, 13407, 13431, 13432, 13448, 13497, 13498, 13517, 13553, 13554, 13575, 13631, 13632, 13651, 13700, 13701, 13719, 13766, 13773, 13774, 13842, 13843, 13856, 13857, 13868, 14100, 14101, 14214, 14366, 14429, 14430, 14443, 14444, 14464, 14554, 14555, 14584, 14585, 14635, 14636, 14689, 14690, 14978, 14979, 15082, 15083, 15491, 15492, 15549, 15550, 15782, 15783, 15857, 15858, 16151, 16152, 16255, 16256, 16624, 16625, 16636, 16751, 16866, 16867, 16879, 16880, 16894, 17032, 17244, 17508, 17509, 17521, 17522, 17657, 17658, 17671, 17672, 17688, 17746, 17823, 17824, 17948, 17949, 17961, 17962, 18074, 18075, 18322, 18323, 18341, 18342, 18375, 18376, 18401, 18402, 18413, 18414, 18535, 18659 ] }
{ "red_pajama_v2": { "ccnet_original_length": 18659, "ccnet_original_nlines": 270, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.39816564321517944, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.010520639829337597, "rps_doc_frac_lines_end_with_ellipsis": 0.003690039971843362, "rps_doc_frac_no_alph_words": 0.24008631706237793, "rps_doc_frac_unique_words": 0.3981145918369293, "rps_doc_mean_word_length": 5.3861494064331055, "rps_doc_num_sentences": 133, "rps_doc_symbol_to_word_ratio": 0.0016185600543394685, "rps_doc_unigram_entropy": 6.137024402618408, "rps_doc_word_count": 2758, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.004442949779331684, "rps_doc_frac_chars_dupe_6grams": 0.004442949779331684, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.007068329956382513, "rps_doc_frac_chars_top_3gram": 0.002692699898034334, "rps_doc_frac_chars_top_4gram": 0.0014809799613431096, "rps_doc_books_importance": -1543.364501953125, "rps_doc_books_importance_length_correction": -1543.364501953125, "rps_doc_openwebtext_importance": -877.6134033203125, "rps_doc_openwebtext_importance_length_correction": -877.6134033203125, "rps_doc_wikipedia_importance": -676.0958251953125, "rps_doc_wikipedia_importance_length_correction": -676.0958251953125 }, "fasttext": { "dclm": 0.08204442262649536, "english": 0.9070076942443848, "fineweb_edu_approx": 1.5098519325256348, "eai_general_math": 0.0408022403717041, "eai_open_web_math": 0.207375168800354, "eai_web_code": 0.005987230222672224 } }
{ "free_decimal_correspondence": { "primary": { "code": "303.48", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Social sciences — Dictionaries" } }, "secondary": { "code": "320.951", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "4", "label": "Analyze" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "2", "label": "Click Here References" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "3", "label": "Intermediate Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,106,573,841,979,895,000
Football Football games inspire us in many ways, from the joy of watching our team win to the inspiration of players who live by values we admire. Faith the dog with her family Dogs Faith in Action How a puppy taught my family to take that great leap of faith. Continue Reading
{ "url": "https://www.guideposts.org/football-0?page=5", "source_domain": "www.guideposts.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "51733", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:IC2NZVEWHJ5DDNWABQYWZ5OUUULBIN5S", "WARC-Concurrent-To": "<urn:uuid:43b6d294-0221-41f2-871e-247e7ce622bd>", "WARC-Date": "2019-10-23T23:50:05Z", "WARC-IP-Address": "104.20.190.9", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:URSJ4IGQ5QEHKUAOSX2Z3D7SEL3IWCYH", "WARC-Record-ID": "<urn:uuid:5fef8827-2eeb-44e3-8f0c-f19121fbad0d>", "WARC-Target-URI": "https://www.guideposts.org/football-0?page=5", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:8f85d14c-a72d-4ade-8f70-295489d6377f>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-68.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 9, 10, 148, 178, 183, 184, 200, 201, 264, 265 ], "line_end_idx": [ 9, 10, 148, 178, 183, 184, 200, 201, 264, 265, 281 ] }
{ "red_pajama_v2": { "ccnet_original_length": 281, "ccnet_original_nlines": 10, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.41818180680274963, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.05454545095562935, "rps_doc_frac_unique_words": 0.807692289352417, "rps_doc_mean_word_length": 4.288461685180664, "rps_doc_num_sentences": 3, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.654461145401001, "rps_doc_word_count": 52, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -12.763444900512695, "rps_doc_books_importance_length_correction": -12.763444900512695, "rps_doc_openwebtext_importance": -10.525005340576172, "rps_doc_openwebtext_importance_length_correction": -10.525005340576172, "rps_doc_wikipedia_importance": -5.934459686279297, "rps_doc_wikipedia_importance_length_correction": -5.934459686279297 }, "fasttext": { "dclm": 0.000034690001484705135, "english": 0.9563771486282349, "fineweb_edu_approx": 0.9863089919090271, "eai_general_math": -0.000009780000254977494, "eai_open_web_math": 0.0290756206959486, "eai_web_code": -0.000009890000001178123 } }
{ "free_decimal_correspondence": { "primary": { "code": "248.4", "labels": { "level_1": "Religion", "level_2": "Devotional literature and Theology, Practical", "level_3": "Christian life" } }, "secondary": { "code": "796.33", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "16", "label": "Personal Blog" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,292,433,228,094,392,000
Recombinant Human MIF (carrier-free) Pricing & Availability Other Names Macrophage migration inhibitory factor, GIF, GLIF, MMIF Ave. Rating Submit a Review Product Citations publications Cat # Size Price Quantity Avail. Save 599404 25 µg $185 Check Availability Need larger quantities of this item? Request Bulk Quote 599406 100 µg $585 Check Availability Need larger quantities of this item? Request Bulk Quote 599408 500 µg $1,695 Check Availability Need larger quantities of this item? Request Bulk Quote Description MIF was discovered in the 1960’s as a T-lymphocyte product that inhibits the random migration of macrophages during delayed-type hypersensitivity responses. This cytokine is a single, non-glycosylated, 115 amino acids polypeptide that has a β-α-β motif. It is known that MIF induces inflammatory cytokines, nitric oxide and superoxide anions, and regulates macrophage and lymphocyte proliferation. The immunoregulatory activities of MIF are based upon transcriptional regulation of inflammatory gene products, modulation of cell proliferation and cell cycle inhibition of p53-mediated apoptosis, and a number of metabolic effects. MIF also demonstrates broad regulatory properties and is considered as a critical mediator of multiple disorders, including inflammatory and autoimmune diseases such as rheumatoid arthritis, glomerulonephritis, diabetes, atherosclerosis, sepsis, asthma, and acute respiratory distress syndrome. Furthermore, studies have highlighted the role of MIF in tumorigenesis. Human cancer tissues, including skin, brain, breast, colon, prostate, and lung-derived tumors overexpress MIF; MIF levels correlated with tumor aggressiveness and metastatic potential. Therefore, MIF is considered a viable therapeutic target for treating inflammatory diseases and neoplasia. In addition to its physiologic and pathophysiologic activities, MIF is known to act as a tautomerase and has a catalytically active N-terminal proline that is invariant in structurally homologous bacterial isomerases. Although the relationship between the catalytic activity and biological function of MIF is not yet fully understood, targeting MIF tautomerase activity using small-molecule inhibitors has emerged as an attractive strategy for inhibiting MIF proinflammatory activity and attenuating its biological activity in vitro and in vivo. Human and mouse MIF share a 90% homology. Product Details Technical data sheet Product Details Reactivity Human Source Human MIF, amino acids (Pro2-Ala115) (Accession# NP_002406.1), was expressed in E. coli with an additional N-terminal Met. Molecular Mass The 115 amino acid recombinant protein has a predicted molecular mass of approximately 12.5 kD. The protein migrates above 14 kD by SDS-PAGE in DTT-reducing conditions and above 12.5 kD in non-reducing conditions. The predicted N-terminal amino acid is Met. Purity >95%, as determined by Coomassie stained SDS-PAGE. Formulation 0.22 µm filtered protein solution is in PBS. Endotoxin Level Less than 0.1 EU per µg of protein as determine by the LAL method. Concentration 10 and 25 µg sizes are bottled at 200 µg/mL. 100 µg size and larger sizes are lot-specific and bottled at the concentration indicated on the vial (please contact technical support for concentration, or use our Lookup tool if you have a lot number.) Please note, new lots of the 100 µg size will be lot-specific and may differ from previous lots that had a fixed concentration. Storage & Handling Unopened vial can be stored between 2°C and 8°C for three months, at -20°C for six months, or at -70°C for one year. For maximum results, quick spin vial prior to opening. Stock solutions should be prepared at no less than 10 µg/mL in sterile buffer (PBS, HPBS, DPBS, and EBSS) containing carrier protein such as 1% BSA or HSA. After dilution, the cytokine can be stored between 2°C and 8°C for one month or from -20°C to -70°C for up to 3 months. Avoid repeated freeze/thaw cycles. Application Bioassay Application Notes We currently check the quality of this recombinant protein by purity, endotoxin level and molecular weight. At this time, we do not have bioassay system established yet for testing this protein. However, we are continuing to seek out options to test its activity. BioLegend carrier-free recombinant proteins provided in liquid format are shipped on blue-ice. Our comparison testing data indicates that when handled and stored as recommended, the liquid format has equal or better stability and shelf-life compared to commercially available lyophilized proteins after reconstitution. Our liquid proteins are validated in-house to maintain activity after shipping on blue ice and are backed by our 100% satisfaction guarantee. If you have any concerns, contact us at [email protected]. Antigen Details Structure Monomer Distribution Macrophages, eosinophils, T cells, pituitary gland. Function MIF stimulates IL-1, IL-8, and MMP expression on fibroblasts. It also stimulates NO and TNF-alpha production on macrophages. MIF regulates the migration of macrophages. The secretion of MIF is regulated by steroids. Interaction Macrophages, fibroblasts Ligand/Receptor CD74 Bioactivity Human MIF inhibits the migration of THP-1 cells in the presence of human MCP-1 Biology Area Cell Biology, Cell Motility/Cytoskeleton/Structure, Immunology, Innate Immunity Molecular Family Cytokines/Chemokines Antigen References 1. David JR. 1966. Proc. Natl. Acad. Sci. 56:72. 2. Hare AA, et al. 2010. Bioorg. Med. Chem. Lett. 20:5811. 3. Calandra T, et al. 2003. J. Infect. Dis. 187:s385. 4. Senter PD, et al. 2002. Proc. Natl. Acad. Sci. 99:144. 5. Calandra T, et al. 1995. Nature. 377:68. 6. Ouertatani-Sakouhi H, et al. 2010. Biol. Chem. 285:26581. Gene ID 4282 View all products for this Gene ID UniProt View information about MIF on UniProt.org Related FAQs Does specific activity of a recombinant protein vary between lots? Specific activity will vary for each lot and for the type of experiment that is done to validate it, but all passed lots will have activity within the established ED50 range for the product and we guarantee that our products will have lot-to-lot consistency. Please conduct an experiment-specific validation to find the optimal ED50 for your system. Have your recombinants been tested for stability? Our testing shows that the recombinant proteins are able to withstand room temperature for a week without losing activity. In addition the recombinant proteins were also found to withstand four cycles of freeze and thaw without losing activity. How do you convert activity as an ED50 in ng/ml to a specific activity in Units/mg? Use formula Specific activity (Units/mg) = 10e6/ ED50 (ng/mL) How does the activity of your recombinant proteins compare to competitors? We quality control each and every lot of recombinant protein. Not only do we check its bioactivity, but we also compare it against other commercially available recombinant proteins. We make sure each recombinant protein’s activity is at least as good as or better than the competition’s. In order to provide you with the best possible product, we ensure that our testing process is rigorous and thorough. If you’re curious and eager to make the switch to BioLegend recombinants, contact your sales representative today! What is the specific activity or ED50 of my recombinant protein? The specific activity range of the protein is indicated on the product datasheets. Because the exact activity values on a per unit basis can largely fluctuate depending on a number of factors, including the nature of the assay, cell density, age of cells/passage number, culture media used, and end user technique, the specific activity is best defined as a range and we guarantee the specific activity of all our lots will be within the range indicated on the datasheet. Please note this only applies to recombinants labeled for use in bioassays. ELISA standard recombinant proteins are not recommended for bioassay usage as they are not tested for these applications. Go To Top Version: 3    Revision Date: 04/13/2018 For research use only. Not for diagnostic use. Not for resale. BioLegend will not be held responsible for patent infringement or other violations that may occur with the use of our products.   *These products may be covered by one or more Limited Use Label Licenses (see the BioLegend Catalog or our website, www.biolegend.com/ordering#license). BioLegend products may not be transferred to third parties, resold, modified for resale, or used to manufacture commercial products, reverse engineer functionally similar materials, or to provide a service to third parties without written approval of BioLegend. By use of these products you accept the terms and conditions of all applicable Limited Use Label Licenses. Unless otherwise indicated, these products are for research use only and are not intended for human or animal diagnostic, therapeutic or commercial use.   8999 BioLegend Way, San Diego, CA 92121 www.biolegend.com Toll-Free Phone: 1-877-Bio-Legend (246-5343) Phone: (858) 768-5800 Fax: (877) 455-9587 Login/Register Forgot your password? Reset Password Request an Account
{ "url": "https://www.biolegend.com/en-us/products/recombinant-human-mif-carrier-free-9602", "source_domain": "www.biolegend.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "79444", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:VLXAJFFXJ3XT464BZSCHMSCCLDLPS5MB", "WARC-Concurrent-To": "<urn:uuid:a87bd04f-2970-4e1d-9ff4-1ed6d1206812>", "WARC-Date": "2019-10-16T05:35:40Z", "WARC-IP-Address": "173.46.145.40", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:NSY2CAJGH4NZIEIH6WNBXIA4YCZJTZMA", "WARC-Record-ID": "<urn:uuid:831dc95e-92ee-4a93-a690-4a622dc45025>", "WARC-Target-URI": "https://www.biolegend.com/en-us/products/recombinant-human-mif-carrier-free-9602", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f5d084d7-2b66-4537-8f79-9939873d7bdb>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 37, 38, 61, 73, 129, 141, 157, 175, 188, 226, 244, 263, 264, 265, 302, 321, 340, 359, 360, 361, 398, 417, 438, 457, 458, 459, 496, 515, 527, 528, 2406, 2407, 2423, 2444, 2445, 2461, 2462, 2473, 2479, 2486, 2609, 2624, 2882, 2889, 2940, 2952, 2997, 3013, 3080, 3094, 3343, 3471, 3490, 3973, 3985, 3986, 3995, 3996, 4014, 4015, 4279, 4280, 4801, 4802, 4818, 4819, 4829, 4837, 4850, 4851, 4903, 4904, 4913, 5129, 5141, 5166, 5182, 5187, 5199, 5278, 5291, 5371, 5388, 5409, 5428, 5429, 5478, 5537, 5591, 5649, 5693, 5754, 5755, 5763, 5803, 5811, 5853, 5854, 5867, 5868, 5935, 5936, 6286, 6287, 6337, 6338, 6583, 6584, 6668, 6730, 6805, 6806, 7326, 7327, 7392, 7393, 8063, 8064, 8114, 8115, 8306, 8307, 8309, 8310, 8985, 8986, 8988, 8989, 9047, 9134, 9135, 9150, 9187 ], "line_end_idx": [ 37, 38, 61, 73, 129, 141, 157, 175, 188, 226, 244, 263, 264, 265, 302, 321, 340, 359, 360, 361, 398, 417, 438, 457, 458, 459, 496, 515, 527, 528, 2406, 2407, 2423, 2444, 2445, 2461, 2462, 2473, 2479, 2486, 2609, 2624, 2882, 2889, 2940, 2952, 2997, 3013, 3080, 3094, 3343, 3471, 3490, 3973, 3985, 3986, 3995, 3996, 4014, 4015, 4279, 4280, 4801, 4802, 4818, 4819, 4829, 4837, 4850, 4851, 4903, 4904, 4913, 5129, 5141, 5166, 5182, 5187, 5199, 5278, 5291, 5371, 5388, 5409, 5428, 5429, 5478, 5537, 5591, 5649, 5693, 5754, 5755, 5763, 5803, 5811, 5853, 5854, 5867, 5868, 5935, 5936, 6286, 6287, 6337, 6338, 6583, 6584, 6668, 6730, 6805, 6806, 7326, 7327, 7392, 7393, 8063, 8064, 8114, 8115, 8306, 8307, 8309, 8310, 8985, 8986, 8988, 8989, 9047, 9134, 9135, 9150, 9187, 9205 ] }
{ "red_pajama_v2": { "ccnet_original_length": 9205, "ccnet_original_nlines": 133, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.2840335965156555, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.04257702827453613, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.22913165390491486, "rps_doc_frac_unique_words": 0.4651668965816498, "rps_doc_mean_word_length": 5.418722629547119, "rps_doc_num_sentences": 125, "rps_doc_symbol_to_word_ratio": 0.0016806699568405747, "rps_doc_unigram_entropy": 5.875392436981201, "rps_doc_word_count": 1378, "rps_doc_frac_chars_dupe_10grams": 0.025311369448900223, "rps_doc_frac_chars_dupe_5grams": 0.03334673121571541, "rps_doc_frac_chars_dupe_6grams": 0.03334673121571541, "rps_doc_frac_chars_dupe_7grams": 0.03334673121571541, "rps_doc_frac_chars_dupe_8grams": 0.03334673121571541, "rps_doc_frac_chars_dupe_9grams": 0.025311369448900223, "rps_doc_frac_chars_top_2gram": 0.01714208908379078, "rps_doc_frac_chars_top_3gram": 0.010178119875490665, "rps_doc_frac_chars_top_4gram": 0.010847729630768299, "rps_doc_books_importance": -848.2930297851562, "rps_doc_books_importance_length_correction": -848.2930297851562, "rps_doc_openwebtext_importance": -405.1677551269531, "rps_doc_openwebtext_importance_length_correction": -405.1677551269531, "rps_doc_wikipedia_importance": -282.4317626953125, "rps_doc_wikipedia_importance_length_correction": -282.4317626953125 }, "fasttext": { "dclm": 0.010402919724583626, "english": 0.8878149390220642, "fineweb_edu_approx": 1.5474985837936401, "eai_general_math": 0.01660930924117565, "eai_open_web_math": 0.2236647605895996, "eai_web_code": 0.00199132994748652 } }
{ "free_decimal_correspondence": { "primary": { "code": "572.6", "labels": { "level_1": "Science and Natural history", "level_2": "Biology and Anthropology", "level_3": "Anthropology" } }, "secondary": { "code": "615.5", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Medicine", "level_3": "Materia medica, Drugs, and Pharmacy" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "4", "label": "Graduate/Expert Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
8,013,290,869,553,405,000
Donald Trump sent a top ally to sleep with the 'low energy' and 'boring' tone of his speech to the UN General Assembly. The President of the United States addressed the UN during its congress in New York just after 3pm GMT. While the speech hit a number of key talking points, it was the tone of Mr Trump's delivery that caught the most attention. And one critic took to social media to say the 73-year-old sounded 'medicated'. At points the US leader seemed to slur his words in a lengthy speech that rarely got out of first gear. As well as seemingly sending most of social media into a sleepy daze, Mr Trump's address appeared to be too much for the US's Secretary of Commerce Wilbur Ross. The American investor was filmed in the crowd with his eyes closed. As Mr Ross snoozed, people took to Twitter to register their waning interest with his delivery. "He is a terrible speaker," one Twitter user wrote. Mr Trump's speech failed to get out of first gear   "So boring. So monotone. I’m also having a very hard time believing anything he says."  Another Twitter user suggested the President's speech stuck too closely to the script. "Trump sounds medicated as he drones on through his boring teleprompter UN speech," they said. "There has never been a more boring delivery of a speech on the world stage as you gave today at the UN," a third said. "Why do you even bother? It does nothing except embarrass yourself and our country." While the high energy, raucous delivery associated with Mr Trump's appearances at campaign rallies clearly wasn't visible, the President did touch on many of his favourite talking points. The energy associated with Mr Trump's campaign rallies was not there   At the head of the address he took the time to advance his America First world view. "Wise leaders put the good of their own people and their own country first," he said. "The future does not belong to globalists. The future belongs to patriots. "The future belongs to sovereign and independent nations, who protect their citizens, respect their neighbors and honor the differences that make each country special and unique." Mr Trump also promoted his domestic record, calling the US "the world's most powerful nation" at the beginning of the speech. He went on to highlight the $2.5 trillion his administration had spent on the US military since he took office, before accusing the Iranian government of 'squandering' its wealth in its pursuit of nuclear weapons. "America will never tolerate such anti-semitic hate," the President said of the Middle Eastern country. "Fanatics have long used hatred of Israel to distract form their failures." Mr Trump accused Iran of anti-semitism   The Republican leader did say that his country was "ready to embrace friendship with all who genuinely embrace peace and respect", ramping down previously fiery rhetoric aimed at Iran. The government of China was also in the firing line of the President. "Not only has China declined to adopt promised reforms, it has embraced an economic model, dependent on massive market barriers, heavy state subsidies, currency manipulation, product dumping, forced technology transfers and the theft of intellectual property and also trade secrets on a grand scale," he said. Boris Johnson received a much needed boost from Mr Trump In a much needed boost for Boris Johnson, who is in New York at the UN Assembly, Mr Trump said he was working closely with UK prime minister on a trade deal. He said: "I have made clear that we stand ready to enter an exceptional new trade agreement with the UK which will bring tremendous trade benefits to both of our countries. "I have been working closely with Boris Johnson for a terrific new trade deal."
{ "url": "https://www.mirror.co.uk/news/us-news/donald-trump-sounds-medicated-low-20166872", "source_domain": "www.mirror.co.uk", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "301661", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:L2S2AK67XCFGUL2375AALG2236OS72FR", "WARC-Concurrent-To": "<urn:uuid:7bdaaa39-5626-4ef9-9fb2-8edef04f9ebb>", "WARC-Date": "2019-10-19T07:29:49Z", "WARC-IP-Address": "99.84.181.97", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:5N3R2Q72EISVZ7SKE3VR6OKNXZKBHCBR", "WARC-Record-ID": "<urn:uuid:43f79fdb-1c29-46b3-a842-3231e6bb5a5f>", "WARC-Target-URI": "https://www.mirror.co.uk/news/us-news/donald-trump-sounds-medicated-low-20166872", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f77ed8c3-60df-49a5-88c7-e3f7c2832cbb>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-166.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 120, 121, 225, 226, 350, 351, 431, 432, 536, 537, 698, 699, 767, 768, 864, 865, 917, 918, 968, 970, 971, 1059, 1060, 1147, 1148, 1243, 1244, 1364, 1365, 1450, 1451, 1639, 1640, 1709, 1711, 1712, 1797, 1798, 1884, 1885, 1960, 1961, 2141, 2142, 2268, 2269, 2483, 2484, 2588, 2589, 2665, 2666, 2705, 2707, 2708, 2893, 2894, 2964, 2965, 3275, 3276, 3333, 3334, 3492, 3493, 3666, 3667 ], "line_end_idx": [ 120, 121, 225, 226, 350, 351, 431, 432, 536, 537, 698, 699, 767, 768, 864, 865, 917, 918, 968, 970, 971, 1059, 1060, 1147, 1148, 1243, 1244, 1364, 1365, 1450, 1451, 1639, 1640, 1709, 1711, 1712, 1797, 1798, 1884, 1885, 1960, 1961, 2141, 2142, 2268, 2269, 2483, 2484, 2588, 2589, 2665, 2666, 2705, 2707, 2708, 2893, 2894, 2964, 2965, 3275, 3276, 3333, 3334, 3492, 3493, 3666, 3667, 3746 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3746, "ccnet_original_nlines": 67, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.39300134778022766, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.020188430324196815, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13458949327468872, "rps_doc_frac_unique_words": 0.500792384147644, "rps_doc_mean_word_length": 4.7036452293396, "rps_doc_num_sentences": 34, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.2417731285095215, "rps_doc_word_count": 631, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.00842318031936884, "rps_doc_frac_chars_top_3gram": 0.006064690183848143, "rps_doc_frac_chars_top_4gram": 0.009433959610760212, "rps_doc_books_importance": -344.0247802734375, "rps_doc_books_importance_length_correction": -344.0247802734375, "rps_doc_openwebtext_importance": -190.7366180419922, "rps_doc_openwebtext_importance_length_correction": -190.7366180419922, "rps_doc_wikipedia_importance": -134.357421875, "rps_doc_wikipedia_importance_length_correction": -134.357421875 }, "fasttext": { "dclm": 0.06860482692718506, "english": 0.9839543700218201, "fineweb_edu_approx": 1.2776778936386108, "eai_general_math": 0.0019949700217694044, "eai_open_web_math": 0.1471700668334961, "eai_web_code": 0.0002666100044734776 } }
{ "free_decimal_correspondence": { "primary": { "code": "327.73", "labels": { "level_1": "Social sciences", "level_2": "Political science", "level_3": "International relations and World politics" } }, "secondary": { "code": "973.932", "labels": { "level_1": "History and Geography", "level_2": "America and North America", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "5", "label": "Comment Section" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
6,806,659,362,051,358,000
Announcement Collapse No announcement yet. Mesa 19.0.7 Now Available As The Last Of The Series Collapse X • Filter • Time • Show Clear All new posts • Mesa 19.0.7 Now Available As The Last Of The Series Phoronix: Mesa 19.0.7 Now Available As The Last Of The Series Mesa 19.0.7 was released on Monday as the last Mesa 19.0 stable release, ending this quarterly update series from Q1... http://www.phoronix.com/scan.php?pag...9.0.7-Released Working... X
{ "url": "https://www.phoronix.com/forums/forum/linux-graphics-x-org-drivers/opengl-vulkan-mesa-gallium3d/1109190-mesa-19-0-7-now-available-as-the-last-of-the-series", "source_domain": "www.phoronix.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "57741", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:O5TQKKTPAROZ5U62GYMWAMENUXQSYUYZ", "WARC-Concurrent-To": "<urn:uuid:95cdb277-b98b-4246-9905-0443c3dff514>", "WARC-Date": "2019-10-17T15:54:11Z", "WARC-IP-Address": "104.18.61.250", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:Q7QFLNQOK5CP453MT2OY4B33M3553FKB", "WARC-Record-ID": "<urn:uuid:aa753076-14fc-4f1c-b841-be4a9bd24963>", "WARC-Target-URI": "https://www.phoronix.com/forums/forum/linux-graphics-x-org-drivers/opengl-vulkan-mesa-gallium3d/1109190-mesa-19-0-7-now-available-as-the-last-of-the-series", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:59c89f37-8e8a-413e-bee0-eaa070e03772>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-24.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 13, 14, 23, 44, 45, 97, 98, 107, 109, 120, 129, 138, 148, 158, 159, 215, 216, 282, 283, 407, 408, 466, 477 ], "line_end_idx": [ 13, 14, 23, 44, 45, 97, 98, 107, 109, 120, 129, 138, 148, 158, 159, 215, 216, 282, 283, 407, 408, 466, 477, 478 ] }
{ "red_pajama_v2": { "ccnet_original_length": 478, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.08695652335882187, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0260869599878788, "rps_doc_frac_lines_end_with_ellipsis": 0.0833333283662796, "rps_doc_frac_no_alph_words": 0.3913043439388275, "rps_doc_frac_unique_words": 0.5277777910232544, "rps_doc_mean_word_length": 4.833333492279053, "rps_doc_num_sentences": 20, "rps_doc_symbol_to_word_ratio": 0.0260869599878788, "rps_doc_unigram_entropy": 3.395543336868286, "rps_doc_word_count": 72, "rps_doc_frac_chars_dupe_10grams": 0.3448275923728943, "rps_doc_frac_chars_dupe_5grams": 0.3448275923728943, "rps_doc_frac_chars_dupe_6grams": 0.3448275923728943, "rps_doc_frac_chars_dupe_7grams": 0.3448275923728943, "rps_doc_frac_chars_dupe_8grams": 0.3448275923728943, "rps_doc_frac_chars_dupe_9grams": 0.3448275923728943, "rps_doc_frac_chars_top_2gram": 0.09195402264595032, "rps_doc_frac_chars_top_3gram": 0.1034482792019844, "rps_doc_frac_chars_top_4gram": 0.17241379618644714, "rps_doc_books_importance": -44.37995147705078, "rps_doc_books_importance_length_correction": -50.1337890625, "rps_doc_openwebtext_importance": -17.56709098815918, "rps_doc_openwebtext_importance_length_correction": -23.3209285736084, "rps_doc_wikipedia_importance": -0.503885805606842, "rps_doc_wikipedia_importance_length_correction": -6.257722854614258 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.8052539825439453, "fineweb_edu_approx": 0.8144555687904358, "eai_general_math": -0.000008820000402920414, "eai_open_web_math": 0.04063593968749046, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.4", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "781.2", "labels": { "level_1": "Arts", "level_2": "Music", "level_3": "Music theory" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "13", "label": "News (Org.)" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,659,470,370,726,606,000
Elliptic Curve Cryptography Explained – Fang-Pen's coding note 30 bookmarks. First posted by romac 16 days ago. A primer and tutorial on Elliptical Curve Cryptography. More of an intuitive approach than mathematical. Good to get started and develop intuitions. Good visualizations as well. ecc  ellipticalcurves  cryptography  mathematics  visualization  yesterday by drmeme Recently, I am learning how Elliptic Curve Cryptography works. I searched around the internet, found so many articles and videos explaining it. Most of them are… from instapaper 11 days ago by johnrclark Fang-Pen Lin's blog about programming security  math  cryptography  encryption  elliptic  14 days ago by geetarista Fang-Pen Lin's blog about programming type:article  cryptography  elliptic  curve  14 days ago by endorama Fang-Pen Lin's blog about programming 15 days ago by parsoj Elliptic Curve Cryptography Explained () from twitter_favs 16 days ago by fkbarrett Elliptic Curve Cryptography Elliptic  Curve  Cryptography  16 days ago by guiambros Elliptic Curve Cryptography Explained from twitter_favs 16 days ago by demon386 My new article: Elliptic Curve Cryptography Explained 👩🏻‍💻🔑✉️🔒👨‍💻 security  Cryptography  from twitter_favs 16 days ago by romac
{ "url": "http://pinboard.in/url:99053faea154c1befb29213ffc79092d14df59e6", "source_domain": "pinboard.in", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "20091", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:7SY6NEYEQUBXCXWGTOLOLAEF7G7LWBGA", "WARC-Concurrent-To": "<urn:uuid:4145adf8-2898-40b5-9ae0-32a12e6e97fb>", "WARC-Date": "2019-10-24T04:49:05Z", "WARC-IP-Address": "64.62.134.190", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:6DOHV5D5YXM7PRVSCN7DWNZYYMTVCLLG", "WARC-Record-ID": "<urn:uuid:5f2af0f0-f304-48c7-ab93-c79118d90169>", "WARC-Target-URI": "http://pinboard.in/url:99053faea154c1befb29213ffc79092d14df59e6", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f9d498b4-fcf7-4392-9e26-65d1304ee168>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-173.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 1, 64, 65, 66, 115, 116, 117, 295, 360, 380, 542, 558, 584, 622, 674, 700, 738, 783, 807, 845, 867, 908, 926, 951, 979, 1010, 1035, 1073, 1091, 1115, 1169, 1181, 1223 ], "line_end_idx": [ 1, 64, 65, 66, 115, 116, 117, 295, 360, 380, 542, 558, 584, 622, 674, 700, 738, 783, 807, 845, 867, 908, 926, 951, 979, 1010, 1035, 1073, 1091, 1115, 1169, 1181, 1223, 1243 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1243, "ccnet_original_nlines": 33, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.21078431606292725, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.014705879613757133, "rps_doc_frac_lines_end_with_ellipsis": 0.029411759227514267, "rps_doc_frac_no_alph_words": 0.1666666716337204, "rps_doc_frac_unique_words": 0.52601158618927, "rps_doc_mean_word_length": 5.901733875274658, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0.004901960026472807, "rps_doc_unigram_entropy": 4.098546028137207, "rps_doc_word_count": 173, "rps_doc_frac_chars_dupe_10grams": 0.11753182858228683, "rps_doc_frac_chars_dupe_5grams": 0.23408423364162445, "rps_doc_frac_chars_dupe_6grams": 0.14299705624580383, "rps_doc_frac_chars_dupe_7grams": 0.11753182858228683, "rps_doc_frac_chars_dupe_8grams": 0.11753182858228683, "rps_doc_frac_chars_dupe_9grams": 0.11753182858228683, "rps_doc_frac_chars_top_2gram": 0.06170421093702316, "rps_doc_frac_chars_top_3gram": 0.0705190971493721, "rps_doc_frac_chars_top_4gram": 0.13320274651050568, "rps_doc_books_importance": -100.6894760131836, "rps_doc_books_importance_length_correction": -100.6894760131836, "rps_doc_openwebtext_importance": -50.4499397277832, "rps_doc_openwebtext_importance_length_correction": -50.44993591308594, "rps_doc_wikipedia_importance": -56.19242477416992, "rps_doc_wikipedia_importance_length_correction": -56.19242477416992 }, "fasttext": { "dclm": 0.00002384000072197523, "english": 0.7787185311317444, "fineweb_edu_approx": 1.7650375366210938, "eai_general_math": 0.2303275465965271, "eai_open_web_math": 0.02295595034956932, "eai_web_code": 0.00001728999995975755 } }
{ "free_decimal_correspondence": { "primary": { "code": "005.82", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computer programming" } }, "secondary": { "code": "516.35", "labels": { "level_1": "Science and Natural history", "level_2": "Mathematics", "level_3": "Geometry, Algebraic" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "5", "label": "Social/Forum" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "23", "label": "Tutorial" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-8,867,990,973,809,442,000
Privacy Policy for Students Privacy Notice for Students What is the purpose of this document? This privacy notice outlines how we, My Future Choice Ltd (hereafter “MyFutureChoice), a limited company registered in England under company number 02049351, collects, stores and uses the personal data that you or your school, provide to us in relation to the careers assessment programmes that we offer to students. The purpose of our assessment programmes is to give you feedback and guidance to help you make informed choices about your future educational choices and careers. MyFutureChoice is committed to safeguarding your personal information. Whenever you provide personal information to us, including any information provided via your school, we are legally obliged to use it in accordance with all laws concerning the protection of personal information (we refer to these laws collectively in this privacy notice as the “data protection laws”). This privacy notice applies to students participating in our careers assessment programmes and/or using our website or attending our events. We are required under data protection laws to notify you of the information contained in this privacy notice. It is important that you read this notice, together with any other privacy notice or policy we may provide on specific occasions when we are collecting or processing personal information. What information will MyFutureChoice collect about you? Personal data, or personal information, means any information about an individual from which that individual can be identified. It does not include data where the identity has been removed (anonymous data). We may collect, store, and use the following categories of personal information about you: • Identity details such as your name, gender and age / date of birth. • Contact details such as your postal address and email address. • Educational details such as your educational achievements (including past and predicted grades) and other related details which we may analyse in conjunction with any interest inventories and tests that you complete as part of our assessment programmes. • Usage and technical data about to how you use our website and software services. We may use the personal information that you or your school provide to us for both research purposes and improving our services although in these circumstances we will only use your information in an anonymised form. We may, in limited circumstances, collect and use some information about your health such as your dietary requirements (if you are attending an event) or any medical condition or disability that you have (if you are participating in our assessment programmes). These are “special categories” of more sensitive personal information, which we explain in further detail in the next sections. Unless we tell you otherwise, we will not collect and process any other “special categories” of more sensitive personal information (such as information about your race, ethnicity or nationality, religious beliefs and sexual orientation). How will MyFutureChoice collect and use your personal information? We typically collect your personal information in the following ways: • We will often obtain your personal details from you directly when you participate in our careers assessment programmes (including the interviews you attend and the interest inventories and tests that you complete using our software). • We may be provided with your personal details via your school in the course of their administering the careers programme with you. • In limited circumstances, your school may give us sensitive personal information about you (known as “special categories” of data), namely: (i) information about your dietary requirements if we are holding events at your school; and (ii) any relevant medical condition or disability that may be relevant to the advice and guidance we will provide to you as part of our careers assessment programmes. • We may also collect technical data about your browsing actions and patterns as you interact with our website and assessment software. We collect this personal data using cookies, server logs and other similar automated technologies. We will only use your personal data when the law allows us to. Most commonly, we will use your personal data in the following circumstances: • where it is necessary for our legitimate interests (or those of a third party) and our interests and fundamental rights do not override those interests; and/or • where we need to comply with a legal or regulatory obligation. We explain how we use your personal information in more detail below. Purposes for which MyFutureChoice uses your personal information Providing our careers services: We will use your personal information primarily for the purpose of providing our assessment services to you. This will involve giving you feedback and guidance to help you make informed choices about your future educational choices and careers. We use the information that we collect about you to tailor our feedback and guidance to you and your specific educational background, interests and career preferences. We do not use the results of the assessments to make decisions for or about you. MyFutureChoice’s legal basis for processing your personal information in this way is through your consent in agreeing to participate in the careers programme, and we ask the school or independent careers advisor to obtain your consent to share that data with us. The processing is also necessary for our legitimate interests, which are to hold our careers events and provide our assessment programmes to you as explained above. You are not obliged to provide your personal information to us but, without it, we are unlikely to be able to provide you with feedback and specific guidance on your future educational choices and careers. In cases where your school gives us any “special categories” of personal data about you (in the limited circumstances explained above), we ask the school to obtain your consent to share that data with us. You are not obliged to give your consent for these “special categories” of data to be shared with us. However, if we do not know about your dietary requirements, we will not be able to accommodate your dietary needs at our events. Similarly, if we are not told about any relevant medical conditions or disabilities that you have, then the careers advice and guidance that we give to you may not be appropriately tailored to your situation. Protecting and developing our business: Where we collect usage and technical data relating to your use of our website and software, we use that data to administer and protect our business and our website (including troubleshooting, data analysis, testing, system maintenance, support, hosting) and to improve our website, products, customer relationships and experiences. This is necessary for our legitimate interests (for running our business, provision of administration and IT services, network security, and to prevent fraud as well as to keep our website updated and relevant and to develop our business). How will MyFutureChoice share and disclose your personal information? We may share your personal information with third parties where required by law, where it is necessary to administer our working relationship with you or where we have another lawful basis for doing so. We ensure that access to your personal information is subject to restrictions on use and confidentiality commitments. Your personal data will be treated as confidential and will only be accessible by and/or disclosed as follows: • to our data processing staff and careers analysts/interviewers (who may be MyFutureChoice staff, consultants and/or sub-contractors); • to our IT service providers for the provision of IT services including support, hosting and data analytics; • to appropriate staff at your school (such as your careers teacher); • to your parent or guardian; • at your request or with your consent; or • for the purpose of investigating or preventing fraud or if the law otherwise permits it. We will not disclose the results of your careers assessment to your parent or guardian if you write to us and ask us not to (in which case, any such disclosure will be a matter for you to decide with your school). Our staff, careers analysts/interviewers and third-party service providers are required to take appropriate security measures to protect your personal information in line with our policies. We do not allow our staff, careers analysts/interviewers and third-party service providers to use your personal data for their own purposes. We only permit them to process your personal data for specified purposes and in accordance with our instructions. International transfers We do not transfer (or permit our third party service providers to transfer) your personal information outside of the European Economic Area. Data security We have put in place appropriate security measures to prevent your personal information from being accidentally lost, used or accessed in an unauthorised way, altered or disclosed. In addition, we limit access to your personal information to those employees, agents, contractors and other third parties who have a business need to know. They will only process your personal information on our instructions and they are subject to a duty of confidentiality. Details of these measures may be obtained from us using the details in the “Contacting us” section below. We have also put in place procedures to deal with any suspected data security breach and will notify you and any applicable regulator of a suspected breach where we are legally required to do so. How long will MyFutureChoice keep your personal information? We will not retain your personal information for longer than necessary but, in case you want us to provide follow-up services to you at a later date, we will keep your personal information for a certain number of years after you have completed the programme. The number of years that we will keep this information will depend on the programme you completed: Programme Period data is kept after testing is completed • MyUniChoices (Centigrade) 4 years • MyCareerChoices (Preview, including all variations) 6 years • MyAptitude (The Cambridge Profile) 6 years • MyFirstChoices (Probe) 4 years If you would prefer that we didn’t retain your personal information over this period of time, please write to us to let us know (using the details specified in the “Contacting us” section below) and we will remove it from our systems. We may, however, anonymise the results of your careers assessment and keep that information indefinitely for the purpose of researching and analysing educational and careers trends from time to time and for the purpose of improving our services. Your data protection rights Under certain circumstances, you have rights under data protection laws in relation to your personal information. This may include the following rights: • Request access to your personal information (commonly known as a “data subject access request”). This enables you to receive a copy of the personal information we hold about you and to check that we are lawfully processing it. • Request correction of the personal information that we hold about you. This enables you to have any incomplete or inaccurate information we hold about you corrected. • Request erasure of your personal information. This enables you to ask us to delete or remove personal information where there is no good reason for us continuing to process it. You also have the right to ask us to delete or remove your personal information where you have exercised your right to object to processing (see below). • Object to processing of your personal information. This right applies where we are relying on our legitimate interests (or those of a third party) and there is something about your particular situation which makes you want to object to processing on this ground. You also have the right to object where we are processing your personal information for direct marketing purposes. • Request the restriction of processing of your personal information. This enables you to ask us to suspend the processing of personal information about you, for example if you want us to establish its accuracy or the reason for processing it. • Request the transfer of your personal information to another party (known as the “right to data portability”). • Right to withdraw consent. In any circumstances where we have relied on your consent to the collection, processing and transfer of your personal information for a specific purpose, you have the right to withdraw your consent for that specific processing at any time. Once we have received notification that you have withdrawn your consent, we will no longer process your information for the purpose or purposes you originally agreed to, unless we have another legitimate basis for doing so in law. This will not affect the lawfulness of any processing carried out before you withdrew your consent. If you wish to exercise any of the rights set out above, please contact us using the details in our “Contacting us” section below. You will not have to pay a fee to access your personal information (or to exercise any of the other rights). However, we may charge a reasonable fee if your request is clearly unfounded, repetitive or excessive. Alternatively, we may refuse to comply with your request in these circumstances. We may need to request specific information from you to help us confirm your identity and ensure your right to access your personal information (or to exercise any of your other rights). This is a security measure to ensure that personal information is not disclosed to any person who has no right to receive it. We may also contact you to ask you for further information in relation to your request to speed up our response. We try to respond to all legitimate requests within one month. Occasionally it may take us longer than a month if your request is particularly complex or you have made a number of requests. In this case, we will notify you and keep you updated. Data Protection Authority You have the right to make a complaint at any time to the UK supervisory authority for data protection issues. This is the Information Commissioner’s Office (ICO) whose details can be accessed via the ICO website at https://ico.org.uk/global/contact-us/ We would, however, appreciate the chance to deal with your concerns before you approach the ICO so please do get in touch using the details in our “Contacting us” section below. Changes to this privacy notice We reserve the right to update this privacy notice at any time, and we will provide you with a new privacy notice when we make any substantial updates. We may also notify you in other ways from time to time about the processing of your personal information. If you have any questions about this privacy notice, please let us know using the “Contacting us” details below. Contacting us Our details are as follows: My Future Choice Ltd Joseph King House Abbey Farm Commercial Park Horsham St Faith Norwich NR10 3JU UK Tel: +44 (0)1362 688395 Email: [email protected]
{ "url": "https://www.myfuturechoice.com/privacy-policy-for-students/", "source_domain": "www.myfuturechoice.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "94355", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HUHNXFW3XYEFXRYHDW6DANYYSMQ5SY3N", "WARC-Concurrent-To": "<urn:uuid:fe4dba15-f4b4-4828-b9e6-75fc9d16e2ec>", "WARC-Date": "2019-10-18T00:36:29Z", "WARC-IP-Address": "104.28.5.196", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:6MJIFPF73DICNN5SMQ2O2RHTHDLBGN6E", "WARC-Record-ID": "<urn:uuid:23fab863-4b90-4db0-bd8a-e4834622b37d>", "WARC-Target-URI": "https://www.myfuturechoice.com/privacy-policy-for-students/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c6a61b5c-6e63-41b1-a130-b86dd6b15d31>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 28, 29, 57, 58, 96, 576, 577, 952, 953, 1204, 1205, 1393, 1394, 1450, 1657, 1658, 1749, 1750, 1822, 1889, 2147, 2232, 2233, 2450, 2451, 3079, 3080, 3147, 3148, 3218, 3219, 3457, 3592, 3996, 4233, 4234, 4375, 4376, 4540, 4607, 4608, 4678, 4679, 4744, 4745, 4777, 5271, 5272, 5906, 5907, 6214, 6215, 6553, 6554, 6594, 7166, 7167, 7237, 7669, 7670, 7808, 7920, 7992, 8024, 8069, 8162, 8163, 8822, 8823, 8847, 8989, 8990, 9004, 9494, 9567, 9568, 9764, 9765, 9826, 10184, 10185, 10242, 10243, 10281, 10345, 10392, 10427, 10428, 10909, 10910, 10938, 11091, 11092, 11323, 11493, 11827, 12209, 12455, 12570, 13172, 13173, 13304, 13305, 13598, 13599, 14025, 14026, 14271, 14272, 14298, 14552, 14553, 14731, 14732, 14763, 15021, 15022, 15135, 15136, 15150, 15178, 15199, 15217, 15244, 15261, 15269, 15278, 15281, 15305 ], "line_end_idx": [ 28, 29, 57, 58, 96, 576, 577, 952, 953, 1204, 1205, 1393, 1394, 1450, 1657, 1658, 1749, 1750, 1822, 1889, 2147, 2232, 2233, 2450, 2451, 3079, 3080, 3147, 3148, 3218, 3219, 3457, 3592, 3996, 4233, 4234, 4375, 4376, 4540, 4607, 4608, 4678, 4679, 4744, 4745, 4777, 5271, 5272, 5906, 5907, 6214, 6215, 6553, 6554, 6594, 7166, 7167, 7237, 7669, 7670, 7808, 7920, 7992, 8024, 8069, 8162, 8163, 8822, 8823, 8847, 8989, 8990, 9004, 9494, 9567, 9568, 9764, 9765, 9826, 10184, 10185, 10242, 10243, 10281, 10345, 10392, 10427, 10428, 10909, 10910, 10938, 11091, 11092, 11323, 11493, 11827, 12209, 12455, 12570, 13172, 13173, 13304, 13305, 13598, 13599, 14025, 14026, 14271, 14272, 14298, 14552, 14553, 14731, 14732, 14763, 15021, 15022, 15135, 15136, 15150, 15178, 15199, 15217, 15244, 15261, 15269, 15278, 15281, 15305, 15329 ] }
{ "red_pajama_v2": { "ccnet_original_length": 15329, "ccnet_original_nlines": 129, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 1, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.48189717531204224, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.003620560048148036, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11549601703882217, "rps_doc_frac_unique_words": 0.22986167669296265, "rps_doc_mean_word_length": 5.085028648376465, "rps_doc_num_sentences": 95, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.27032995223999, "rps_doc_word_count": 2458, "rps_doc_frac_chars_dupe_10grams": 0.04384351149201393, "rps_doc_frac_chars_dupe_5grams": 0.16953356564044952, "rps_doc_frac_chars_dupe_6grams": 0.10880870372056961, "rps_doc_frac_chars_dupe_7grams": 0.08440674841403961, "rps_doc_frac_chars_dupe_8grams": 0.06624530255794525, "rps_doc_frac_chars_dupe_9grams": 0.051204100251197815, "rps_doc_frac_chars_top_2gram": 0.06992559134960175, "rps_doc_frac_chars_top_3gram": 0.05888471007347107, "rps_doc_frac_chars_top_4gram": 0.012000960297882557, "rps_doc_books_importance": -1399.0223388671875, "rps_doc_books_importance_length_correction": -1399.0223388671875, "rps_doc_openwebtext_importance": -723.119140625, "rps_doc_openwebtext_importance_length_correction": -723.119140625, "rps_doc_wikipedia_importance": -613.7164916992188, "rps_doc_wikipedia_importance_length_correction": -613.7164916992188 }, "fasttext": { "dclm": 0.004637119825929403, "english": 0.9332590103149414, "fineweb_edu_approx": 0.9330303072929382, "eai_general_math": 0.0017301399493589997, "eai_open_web_math": 0.029043259099125862, "eai_web_code": 0.1495305299758911 } }
{ "free_decimal_correspondence": { "primary": { "code": "344.7", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "Martial law" } }, "secondary": { "code": "344", "labels": { "level_1": "Social sciences", "level_2": "Law", "level_3": "Martial law" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "11", "label": "Legal/Regulatory" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "11", "label": "Legal Notices" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "1", "label": "No Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,849,904,887,435,140,000
Spieler aus DE flag Deutschland Accepted! Jackpot City JackpotCity Casino Review Looking for a safe, secure and reputable place to play online casino games? Look no further than JackpotCity Casino. This virtual players’ paradise is packed to the brim with feature-packed slots and real live table games, endless member rewards, multiple sign-up bonuses, prize-packed promotions, daily offers and so much more. In short, JackpotCity’s got it all. And considering that it’s been around since 1998, it’s also stood the test of time, proving its popularity with continuously growing player numbers and new-made jackpot-winning millionaires. Best of all, players can switch between their PCs, laptops, tablets and smartphones to enjoy first-class gaming on the go, at the office or from the comfort of their homes. Four Welcome Bonuses Nothing says ‘welcome to the casino’ quite as well as four sign-up bonus offers. And that’s exactly what you’ll get when you kick off your play at JackpotCity Casino. To get started, simply register your new player account and log in to play. Your welcome bonuses will kick in the moment you make your first four deposits – each time, you’ll receive a 100% match bonus up to 400 bonus credits in your selected currency. That’s double your money up to 400 on each of your first four deposits, giving you a total of an incredible 1600 free bonus credits to boost your play. More Player Rewards Aside from a lucrative welcome offer, existing JackpotCity Casino players also have daily bonus offers to look forward to in the form of Deal-A-Day rewards. How it works is simple. If you’re a regular player, you’ll get comped with a new tailor-made match bonus once a day. All you need to do to enjoy this benefit, is log in and make a deposit – that’s it. If you keep playing during the day, you could unlock even more bonus offers. Another programme JackpotCity uses to incentivise wagering, is Loyalty rewards. When you place cash bets, you earn loyalty points. And once you’ve got enough, you get to exchange it for cash credits, which you can play with or cash out. It’s a win-win all around. Also make sure to check out the casino’s Promotions section in the software, it’s packed with fun-themed promos all bursting at the seams with sought-after prizes. Previous winners have walked away with cash, gadgets, luxury items, tickets to events, weekends away and even cruise holidays. Over 500 Casino Games JackpotCity players have the pick of the crop when it comes to its games selection. By using award-winning Microgaming software for all their games, players are guaranteed of simply the best quality graphics, audio effects, animation, navigation and features. They also have more than 500 world-class gaming options to choose from, suitable for every level of play and every size bankroll. These include realistic table games, instant win scratch cards, various video poker options and visually enticing video slots packed with interactive features, soundtracks, movie clips and 3D effects. Players can even enjoy Live Dealer table games like blackjack, baccarat and roulette, where they get to interact with live dealers, made possible via video streaming. Some of the top title games at JackpotCity include the blockbuster-themed Tomb Raider™, Terminator 2™ and Jurassic Park™ Online Slots. Millions in Payouts If players are dreaming about that one big life-changing win, there really is only one type of game to play – progressive jackpot slots. These include games like Treasure Nile, King Cashalot, Major Millions and the most popular of them all, Mega Moolah, which has a mega jackpot that promises to never dip below 1 million. As a result, this very game has turned many ordinary players into overnight millionaires – often in only a matter of spins. Licensed, Safe & Secure JackpotCity players can rest assured that the casino is as safe, private and secure as it gets. Not only does it carry a sought-after Maltese gaming licence, but it’s also received the industry watchdog, eCOGRA’s, seal of approval for fast payouts, fair gaming and top player service. With the most reputable banking options per region available, safe depositing and withdrawals also go without saying. Players are free to choose their favourites from a list of web wallets, prepaid cards, echeques, debit cards and of course, credit cards. Professional Support Since JackpotCity provides gaming to players from all corners of the globe, it not only accepts a number of currencies, but also provides support in multiple languages. The customer support centre is fully trained to address any possible player issues and can be reached around the clock via either email, phone or an instant online live chat facility.
{ "url": "http://www.slotspill.com/de/online-casino/jackpot-city/", "source_domain": "www.slotspill.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "32407", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:CEZVEYBCFR5I3MRFOMOULGJABU272AM6", "WARC-Concurrent-To": "<urn:uuid:306d35bb-3840-48fd-a436-dffe2952828b>", "WARC-Date": "2019-10-23T08:07:02Z", "WARC-IP-Address": "87.98.245.133", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:5V4XGWV64X6XMIUEMRNQXPABBORYYGWA", "WARC-Record-ID": "<urn:uuid:bcb52534-4141-4458-b73c-2a83d43f1b56>", "WARC-Target-URI": "http://www.slotspill.com/de/online-casino/jackpot-city/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d3b0284e-cc61-4ee8-bc01-7f89e33107e4>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-28.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 42, 43, 56, 57, 83, 84, 813, 814, 835, 836, 1408, 1409, 1429, 1430, 2420, 2421, 2443, 2444, 3337, 3338, 3358, 3359, 3806, 3807, 3831, 3832, 4373, 4374, 4395, 4396 ], "line_end_idx": [ 42, 43, 56, 57, 83, 84, 813, 814, 835, 836, 1408, 1409, 1429, 1430, 2420, 2421, 2443, 2444, 3337, 3338, 3358, 3359, 3806, 3807, 3831, 3832, 4373, 4374, 4395, 4396, 4748 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4748, "ccnet_original_nlines": 30, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37763711810112, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.003164560068398714, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.16139240562915802, "rps_doc_frac_unique_words": 0.5012919902801514, "rps_doc_mean_word_length": 4.961240291595459, "rps_doc_num_sentences": 38, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.515873908996582, "rps_doc_word_count": 774, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.01770832948386669, "rps_doc_frac_chars_top_3gram": 0.006770830135792494, "rps_doc_frac_chars_top_4gram": 0.010937499813735485, "rps_doc_books_importance": -471.1047668457031, "rps_doc_books_importance_length_correction": -471.1047668457031, "rps_doc_openwebtext_importance": -191.48876953125, "rps_doc_openwebtext_importance_length_correction": -191.48876953125, "rps_doc_wikipedia_importance": -128.48037719726562, "rps_doc_wikipedia_importance_length_correction": -128.48037719726562 }, "fasttext": { "dclm": 0.0008115199743770063, "english": 0.9472896456718445, "fineweb_edu_approx": 0.6418247222900391, "eai_general_math": 0.0032667499035596848, "eai_open_web_math": 0.05398846045136452, "eai_web_code": 0.0029802299104630947 } }
{ "free_decimal_correspondence": { "primary": { "code": "338.4", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } }, "secondary": { "code": "004.67", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "", "level_3": "Computers and Computer science" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "14", "label": "Reviews/Critiques" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
3,559,576,516,058,474,000
(048) 434-2022 | +63917-562-8887 | +63949-996-7491 [email protected] Login Sign Up After creating an account, you'll be able to track your payment status, track the confirmation and you can also rate the tour after you finished the tour. Username* Password* Confirm Password* First Name* Last Name* Birth Date* Email* Phone* Country* * Creating an account means you're okay with our Terms of Service and Privacy Statement. Please agree to all the terms and conditions before proceeding to the next step Already a member? Login (048) 434-2022 | +63917-562-8887 | +63949-996-7491 [email protected] Login Sign Up After creating an account, you'll be able to track your payment status, track the confirmation and you can also rate the tour after you finished the tour. Username* Password* Confirm Password* First Name* Last Name* Birth Date* Email* Phone* Country* * Creating an account means you're okay with our Terms of Service and Privacy Statement. Please agree to all the terms and conditions before proceeding to the next step Already a member? Login SICSICAN FIREFLY WATCHING WITH BUFFET DINNER (PPC-UCSC4-03.1) 0 Price From₱1,300 Price From₱1,300 Booking Form Enquiry Form Full Name* Email Address* Your Enquiry* * Creating an account means you're okay with our Terms of Service and Privacy Statement. Please agree to all the terms and conditions before proceeding to the next step Available: 100 seats * Please select all required fields to proceed to the next step. Proceed Booking Save To Wish List Adding item to wishlist requires an account 146 Want Another Tour? SOUTHERN & NORTHERN PALAWAN LAND TRANSFER Why Book With Us? • No-hassle best price guarantee • Customer care available 24/7 • Hand-picked tours and activities • Free Travel Insurance Got a Question? Do not hesitate to give us a call. We are an expert team and we are happy to talk to you. Landline: (048) 434-2022 | Globe: +63917-562-8887 | Smart: +63949-996-7491 [email protected] Currency Converter Currency Converter: PHP/USD 5-6 Hours Availability : All Year Round Anywhere Puerto Princesa City Min Age : All ages Max People : 100 Tour Details Be enthralled by the fascinating sight of myriad colonies of fireflies illuminating the riverbanks! Wonder at the unpredictability of scenes that unfold – will it be a burst of light or a subtle display? Departure & Return Location Start time/place: 1700 H  |Accommodation in Puerto Princesa City End time/place: 2300 H  |  Return to original departure point Price Includes • Services of Community Guide • Air-conditioned land transfer • Buffet Dinner • Entrance Fees/Paddle Boat Fees Price Excludes • Any kind of personal expenses or optional tours/meals ordered. • Gratuities (optional: Tips for guides and drivers) Complimentary Items: • Travel Insurance (65 years old and under) • Welcome Lei & Tarp What to Expect A light show that will never be equaled. Never take your eyes off at the magic as it can instantly change. • Dreamlike tour de force • Magnificent light show directed by nature • Peace, surprise, harmony with nature What To Wear What To Bring Notes Terms & Conditions What To Wear ✓ Sunglasses, Sun hat ✓ Preferred clothes [Pants/Polo, T-shirt, or any comfortable clothing] What To Bring ✓ Sun block ✓ Camera Notes 1. Prices quoted requires minimum of ten (10) persons per booking. 2. Private tour arrangement and applicable to all markets. 3. Pick up & Drop off to & from Accommodation is Free of Charge within the City of Puerto Princesa only. 4. Discount by age bracket:          -2 years old & below children are free of charge. -3-6 years old children are charge of 50% of the adult rate. -7 years old & above are considered/charged of Adult rate. 5. Prices may change without Prior Notice until Finalized. Terms & Conditions Confirmation 1. You will receive a confirmation email and voucher instantly after booking. 2. Bank transfer payment will be on hold within 24 hours from the time of booking. You will receive a confirmation via email once payment required is completed and verified. Failure to complete the bank transfer on the given date will automatically open the booking to others. 3. Full payment settlement should be done at least 5 working days upon arrival. No show 1. Failure of the guests to show up on the date and time of booking shall result to the automatic CANCELLATION as well as forfeiture of all payments made. Cancellation 1. Full refundswill be issued for cancelations made at least 5 days prior to the activity. However, this voucher is transferrable. You may choose to transfer the date of the tour or transfer the booking to another person but the date of tour should only be within 1 month from cancellation. Once the transfer has been completed, the trip should be undertaken. No second cancellation or transfer will be accepted. 2. Any unutilized services of the tour package is non-refundable.  Force Majeure 1. In case of force majeure, alternative tours and services shall be offered (if applicable) within the unused budget; other requested services will be subject to additional charges and approval. 2. In case of acts of God, fortuitous events, or any condition beyond our control, Trio Queen Travel & tours or our carriers shall not be held responsible for failure to deliver services, nor be obligated to provide additional services. Delays and/or cancellations of flights and/or boat transfer resulting from or related to weather disturbances or as mandated by the government authorities are beyond the control of Trio Queen Travel & Tours.   Itinerary DAY TRIPCITY HERITAGE WITH LIGHT SNACK & LUNCH 0800 H – Pick up at accommodation Visit to the following historical places: 1. Palawan Special Battalion (WW-II) Memorial Museum 2. Palawan Heritage Center 3. Palawan Museum 4. Binuatan Creation Weaving Center 5. Eco Butterfly Garden & Tribal Village 1200H LUNCH AT BAKER'S HILL RESTAURANT Visit to the following natural and man-made tourist attractions: 6. Mitra’s Ranch 7. Iwahig Penal Colony Farm 8. Crocodile Farm & Nature Park 9. Puerto Princesa Baywalk 10. Immaculate Conception Cathedral 11. Plaza Cuartel 12. Pasalubong Center 1700 H – Drop off at accommodation | End of tour Trip Time and Duration Duration: 5-6 hrs. Start: 5:00-6:00pm End: 10:00-11:00pm Map Photos 20 travellers are considering this tour right now! Certifications & Registrations Terms & Condition Privacy Policy Plan A Tour? Follow Us Twit With Us IG with Us
{ "url": "https://www.trioqueentourspalawan.com.ph/tour/sicsican-firefly-watching-with-buffet-dinner-ppc-ucsc4-03-1/", "source_domain": "www.trioqueentourspalawan.com.ph", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "195243", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:6RCSRBYDJGSYZHTTM6XII3NORVA4WXPJ", "WARC-Concurrent-To": "<urn:uuid:834c9347-af73-4e80-9bb4-67bdd8e8f9e1>", "WARC-Date": "2019-10-23T06:29:23Z", "WARC-IP-Address": "148.66.136.153", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:2VX6AK2WUV6WLMPUE75EGIZO2EK5WFLG", "WARC-Record-ID": "<urn:uuid:d030d234-942b-49dd-a1a3-8e03a04f4542>", "WARC-Target-URI": "https://www.trioqueentourspalawan.com.ph/tour/sicsican-firefly-watching-with-buffet-dinner-ppc-ucsc4-03-1/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:34c8f122-c454-4fbc-9b09-51dd2a501462>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-81.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 85, 86, 92, 93, 101, 102, 257, 267, 277, 295, 307, 318, 330, 337, 344, 353, 442, 522, 523, 541, 542, 548, 633, 634, 640, 641, 649, 650, 805, 815, 825, 843, 855, 866, 878, 885, 892, 901, 990, 1070, 1071, 1089, 1090, 1096, 1097, 1159, 1160, 1162, 1168, 1179, 1185, 1196, 1209, 1222, 1233, 1248, 1262, 1351, 1431, 1452, 1517, 1518, 1534, 1535, 1553, 1554, 1598, 1599, 1603, 1604, 1623, 1624, 1666, 1667, 1685, 1686, 1721, 1754, 1791, 1817, 1818, 1834, 1835, 1925, 1926, 2001, 2002, 2036, 2037, 2056, 2057, 2085, 2086, 2096, 2126, 2135, 2156, 2175, 2192, 2205, 2206, 2313, 2410, 2411, 2439, 2440, 2505, 2506, 2568, 2569, 2584, 2585, 2617, 2651, 2669, 2704, 2705, 2720, 2721, 2788, 2843, 2844, 2865, 2866, 2912, 2935, 2950, 2951, 3058, 3059, 3087, 3133, 3174, 3187, 3201, 3207, 3226, 3239, 3240, 3262, 3333, 3334, 3348, 3349, 3361, 3370, 3371, 3377, 3446, 3447, 3508, 3509, 3616, 3617, 3656, 3710, 3775, 3838, 3839, 3900, 3901, 3920, 3921, 3934, 3935, 4015, 4016, 4295, 4296, 4378, 4379, 4387, 4388, 4545, 4546, 4559, 4560, 4975, 4976, 5044, 5045, 5060, 5061, 5259, 5260, 5707, 5708, 5710, 5711, 5721, 5722, 5769, 5770, 5804, 5846, 5899, 5926, 5944, 5980, 6021, 6022, 6061, 6062, 6063, 6128, 6145, 6173, 6205, 6232, 6268, 6286, 6308, 6357, 6358, 6381, 6382, 6401, 6420, 6439, 6440, 6444, 6445, 6452, 6503 ], "line_end_idx": [ 85, 86, 92, 93, 101, 102, 257, 267, 277, 295, 307, 318, 330, 337, 344, 353, 442, 522, 523, 541, 542, 548, 633, 634, 640, 641, 649, 650, 805, 815, 825, 843, 855, 866, 878, 885, 892, 901, 990, 1070, 1071, 1089, 1090, 1096, 1097, 1159, 1160, 1162, 1168, 1179, 1185, 1196, 1209, 1222, 1233, 1248, 1262, 1351, 1431, 1452, 1517, 1518, 1534, 1535, 1553, 1554, 1598, 1599, 1603, 1604, 1623, 1624, 1666, 1667, 1685, 1686, 1721, 1754, 1791, 1817, 1818, 1834, 1835, 1925, 1926, 2001, 2002, 2036, 2037, 2056, 2057, 2085, 2086, 2096, 2126, 2135, 2156, 2175, 2192, 2205, 2206, 2313, 2410, 2411, 2439, 2440, 2505, 2506, 2568, 2569, 2584, 2585, 2617, 2651, 2669, 2704, 2705, 2720, 2721, 2788, 2843, 2844, 2865, 2866, 2912, 2935, 2950, 2951, 3058, 3059, 3087, 3133, 3174, 3187, 3201, 3207, 3226, 3239, 3240, 3262, 3333, 3334, 3348, 3349, 3361, 3370, 3371, 3377, 3446, 3447, 3508, 3509, 3616, 3617, 3656, 3710, 3775, 3838, 3839, 3900, 3901, 3920, 3921, 3934, 3935, 4015, 4016, 4295, 4296, 4378, 4379, 4387, 4388, 4545, 4546, 4559, 4560, 4975, 4976, 5044, 5045, 5060, 5061, 5259, 5260, 5707, 5708, 5710, 5711, 5721, 5722, 5769, 5770, 5804, 5846, 5899, 5926, 5944, 5980, 6021, 6022, 6061, 6062, 6063, 6128, 6145, 6173, 6205, 6232, 6268, 6286, 6308, 6357, 6358, 6381, 6382, 6401, 6420, 6439, 6440, 6444, 6445, 6452, 6503, 6613 ] }
{ "red_pajama_v2": { "ccnet_original_length": 6613, "ccnet_original_nlines": 224, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.24981188774108887, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.03009781986474991, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.27012792229652405, "rps_doc_frac_unique_words": 0.4469548165798187, "rps_doc_mean_word_length": 5.075638294219971, "rps_doc_num_sentences": 76, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.647200584411621, "rps_doc_word_count": 1018, "rps_doc_frac_chars_dupe_10grams": 0.19256821274757385, "rps_doc_frac_chars_dupe_5grams": 0.2030191570520401, "rps_doc_frac_chars_dupe_6grams": 0.19256821274757385, "rps_doc_frac_chars_dupe_7grams": 0.19256821274757385, "rps_doc_frac_chars_dupe_8grams": 0.19256821274757385, "rps_doc_frac_chars_dupe_9grams": 0.19256821274757385, "rps_doc_frac_chars_top_2gram": 0.007741440087556839, "rps_doc_frac_chars_top_3gram": 0.01645055040717125, "rps_doc_frac_chars_top_4gram": 0.010063869878649712, "rps_doc_books_importance": -568.7667846679688, "rps_doc_books_importance_length_correction": -568.7667846679688, "rps_doc_openwebtext_importance": -350.060546875, "rps_doc_openwebtext_importance_length_correction": -350.060546875, "rps_doc_wikipedia_importance": -289.62890625, "rps_doc_wikipedia_importance_length_correction": -289.62890625 }, "fasttext": { "dclm": 0.00026338998577557504, "english": 0.8245627284049988, "fineweb_edu_approx": 0.7597707509994507, "eai_general_math": 0.00012170999980298802, "eai_open_web_math": 0.0705685019493103, "eai_web_code": 0.00004958999852533452 } }
{ "free_decimal_correspondence": { "primary": { "code": "910.41", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "" } }, "secondary": { "code": "595.789", "labels": { "level_1": "Science and Natural history", "level_2": "Zoology", "level_3": "Arthropoda and Worms" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-1,408,898,317,747,935,000
kingsnake.com - reptile and amphibian classifieds, breeders, forums, photos, videos and more return to main index   mobile - desktop follow us on facebook follow us on twitter follow us on YouTube link to us on LinkedIn   Click here for LLL Reptile & Supply Mealworms, Crickets, Dubia, More... Available Now at New York Worms! Locate a business by name: click to list your business search the classifieds. buy an account events by zip code list an event Search the forums             Search in: News & Events: Herp Photo of the Day: Lizard . . . . . . . . . .  Herp Photo of the Day: Axolotl . . . . . . . . . .  MAHS Fox Valley Meeting - Oct. 18, 2019 . . . . . . . . . .  ReptiCon West Palm Beach - Oct. 19-20, 2019 . . . . . . . . . .  ReptiCon Denver - Oct. 19-20, 2019 . . . . . . . . . .  ReptiCon Charlotte - Oct. 19-20, 2019 . . . . . . . . . .  DFW Herpetolocial Society Meeting - Oct. 19, 2019 . . . . . . . . . .  Long Island Reptile Expo - Oct. 20, 2019 . . . . . . . . . .  Bay Area Amph. and Reptile Society Meeti - Oct. 25, 2019 . . . . . . . . . .  Suncoast Herp Society Meeting - Oct. 26, 2019 . . . . . . . . . .  Richmond Reptile Expo - Oct. 26, 2019 . . . . . . . . . .  ReptiDay Gainesville - Oct. 26, 2019 . . . . . . . . . .  Rick (and others), wetland filter question [ Follow Ups ] [ Post Followup ] [ The Water Dragon and Basilisk Forum ] Posted by rick gordon on April 29, 2003 at 12:01:01: In Reply to: Rick (and others), wetland filter question posted by dsgnGrl on April 29, 2003 at 09:03:31: :thats algae, it needs plenty of light to grow. Rick:: Live moss is not a necessary part of the filter and is hard to grow, however a wetland filter does provide an ideal environment in which to grow it. You will have to seed it with moss spores or patches of collected moss to get it started. And as mentioned above good lighting is essential. I have some moss growing on mine and reindeer moss which is pretty cool. Carolina biological supply is a good source for moss and moss growing products, see the link below. As far as the solids are concerned, I have a couple small rosy red minnows in the pond area. They pick at the solids and break them up. You could also try crayfish, fiddler crabs,ghost shrimp and aquatic frogs. No guarantee that they won't end up as feeders though. The watercolor will look like tea at first because of the sphagnum moss, it will clear in time. Follow Ups: [ Follow Ups ] [ The Water Dragon and Basilisk Forum ]
{ "url": "http://forum.kingsnake.com/dragon/messages/17068.html", "source_domain": "forum.kingsnake.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "39729", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LMF5LYIU7RIOC4BIPZ64ERNUTJ37PVEP", "WARC-Concurrent-To": "<urn:uuid:ffd65532-5d0c-4383-812d-bb8057ad247a>", "WARC-Date": "2019-10-18T01:24:16Z", "WARC-IP-Address": "209.198.140.182", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:XNBLGNJVDPPNPQ7C36O5MVXVXGZOMLF7", "WARC-Record-ID": "<urn:uuid:f93a1199-6c3c-400a-b78a-86e76433ed92>", "WARC-Target-URI": "http://forum.kingsnake.com/dragon/messages/17068.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:346f5a1d-524f-4315-b601-09c09c3e7477>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-144.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 93, 94, 115, 116, 135, 222, 224, 260, 296, 329, 384, 423, 456, 497, 1251, 1252, 1295, 1296, 1297, 1370, 1371, 1424, 1425, 1530, 1531, 1579, 2411, 2412, 2413, 2414, 2415, 2427, 2428, 2429, 2430, 2431 ], "line_end_idx": [ 93, 94, 115, 116, 135, 222, 224, 260, 296, 329, 384, 423, 456, 497, 1251, 1252, 1295, 1296, 1297, 1370, 1371, 1424, 1425, 1530, 1531, 1579, 2411, 2412, 2413, 2414, 2415, 2427, 2428, 2429, 2430, 2431, 2485 ] }
{ "red_pajama_v2": { "ccnet_original_length": 2485, "ccnet_original_nlines": 36, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.21192052960395813, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.008278150111436844, "rps_doc_frac_lines_end_with_ellipsis": 0.027027029544115067, "rps_doc_frac_no_alph_words": 0.41721853613853455, "rps_doc_frac_unique_words": 0.54666668176651, "rps_doc_mean_word_length": 4.530666828155518, "rps_doc_num_sentences": 39, "rps_doc_symbol_to_word_ratio": 0.0016556299524381757, "rps_doc_unigram_entropy": 5.00028657913208, "rps_doc_word_count": 375, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.11300764977931976, "rps_doc_frac_chars_dupe_6grams": 0.07533843070268631, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.00941730011254549, "rps_doc_frac_chars_top_3gram": 0.0176574494689703, "rps_doc_frac_chars_top_4gram": 0.016480280086398125, "rps_doc_books_importance": -217.75738525390625, "rps_doc_books_importance_length_correction": -217.75738525390625, "rps_doc_openwebtext_importance": -95.64453125, "rps_doc_openwebtext_importance_length_correction": -95.64453125, "rps_doc_wikipedia_importance": -40.35582733154297, "rps_doc_wikipedia_importance_length_correction": -40.35582733154297 }, "fasttext": { "dclm": -9.500000146545062e-7, "english": 0.6061475872993469, "fineweb_edu_approx": 1.2499959468841553, "eai_general_math": 0.0002480100083630532, "eai_open_web_math": 0.11417561769485474, "eai_web_code": 0.00010132999886991456 } }
{ "free_decimal_correspondence": { "primary": { "code": "639.16", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Hunting, Fishing, Trapping, and Fish culture" } }, "secondary": { "code": "635.93", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Agriculture", "level_3": "Gardening" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "23", "label": "Tutorial" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-233,511,777,366,548,580
Wings And Wheels by Emirates Airlines   Whether you are transporting a classic, luxury or super car, our specialized Emirates Wheels service is designed to offer you maximum flexibility and reliability. We have a team of automobile transportation experts, committed to delivering your cars to your stated destination safely and securely. Management of all mandatory documentation for permits and insurance on your behalf is also available. Fly your car to any of our destinations worldwide or choose our exclusive package to five European countries* and the USA. *UK, France, Germany, Switzerland and Italy   Emirates Wheels Air Cargo - Door To Door Service   exotic-car-transport-bugatti.jpg TRADE TO TRADE Samuri motor company LIMITED
{ "url": "https://www.samurimotorcompany.com/world-wide-car-sourcing", "source_domain": "www.samurimotorcompany.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "60670", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:LJNULZ22XJE7TOJAKJGQBYEL73GBHVGD", "WARC-Concurrent-To": "<urn:uuid:e03139fd-d8e1-4c81-85b3-e30a72d009e3>", "WARC-Date": "2019-10-16T02:08:23Z", "WARC-IP-Address": "198.185.159.144", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:IW65INZJICCGFALPE73OPEDGLTMW7XQ5", "WARC-Record-ID": "<urn:uuid:19c195f5-f109-4f0e-99db-4c8a3c619f7f>", "WARC-Target-URI": "https://www.samurimotorcompany.com/world-wide-car-sourcing", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:381b141c-5e2e-4c53-99c8-b20b1404b63e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 38, 39, 41, 42, 205, 206, 341, 342, 444, 445, 568, 569, 613, 614, 616, 617, 666, 667, 669, 702, 703, 718, 719 ], "line_end_idx": [ 38, 39, 41, 42, 205, 206, 341, 342, 444, 445, 568, 569, 613, 614, 616, 617, 666, 667, 669, 702, 703, 718, 719, 747 ] }
{ "red_pajama_v2": { "ccnet_original_length": 747, "ccnet_original_nlines": 23, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.302325576543808, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.046511631458997726, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13178294897079468, "rps_doc_frac_unique_words": 0.7222222089767456, "rps_doc_mean_word_length": 5.601851940155029, "rps_doc_num_sentences": 6, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.180364608764648, "rps_doc_word_count": 108, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04628099128603935, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -59.44764709472656, "rps_doc_books_importance_length_correction": -59.44773483276367, "rps_doc_openwebtext_importance": -27.642925262451172, "rps_doc_openwebtext_importance_length_correction": -27.64301300048828, "rps_doc_wikipedia_importance": -22.009248733520508, "rps_doc_wikipedia_importance_length_correction": -22.009336471557617 }, "fasttext": { "dclm": 0.0017201900482177734, "english": 0.8778459429740906, "fineweb_edu_approx": 0.8184854388237, "eai_general_math": -0.000005129999863129342, "eai_open_web_math": 0.008202970027923584, "eai_web_code": -0.000008340000022144523 } }
{ "free_decimal_correspondence": { "primary": { "code": "658.7", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } }, "secondary": { "code": "629.2", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
8,930,986,895,271,995,000
Black basketball shorts with orange and white side stripes and matching calf sleeves. Download this item for your avatar exclusively from Ultrafresh by Konsole Kingz. Copy and paste this link into an e-mail or instant message: http://marketplace.xbox.com/EN-US/Product/Team-Basketball-Shorts-Black-Orange/00000010-d579-f2d1-c587-c8b24d3107d1?cid=SLink Click to create and send a link using your email application Like Team Basketball Shorts Black Orange on Facebook $1.99 Purchase
{ "url": "https://marketplace.xbox.com/EN-US/Product/Team-Basketball-Shorts-Black-Orange/00000010-d579-f2d1-c587-c8b24d3107d1", "source_domain": "marketplace.xbox.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "89271", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:N4GKOUKDQXEYOBHOX6N4XGF3EUFJLS5Q", "WARC-Concurrent-To": "<urn:uuid:fd5da06e-cebc-46de-a027-b15f248674f9>", "WARC-Date": "2019-10-21T03:28:30Z", "WARC-IP-Address": "104.89.0.217", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:Y2MTBANYZSKH2PQ4LS3557WHDL6FQXQC", "WARC-Record-ID": "<urn:uuid:c9c7ab43-809e-4372-8b72-e417b470765a>", "WARC-Target-URI": "https://marketplace.xbox.com/EN-US/Product/Team-Basketball-Shorts-Black-Orange/00000010-d579-f2d1-c587-c8b24d3107d1", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:f607a41b-65b1-43ea-a216-f8bcad66c59e>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-214.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 167, 168, 228, 353, 354, 415, 416 ], "line_end_idx": [ 167, 168, 228, 353, 354, 415, 416, 483 ] }
{ "red_pajama_v2": { "ccnet_original_length": 483, "ccnet_original_nlines": 7, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.20588235557079315, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.019607840105891228, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2647058665752411, "rps_doc_frac_unique_words": 0.8103448152542114, "rps_doc_mean_word_length": 6.844827651977539, "rps_doc_num_sentences": 7, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.773623466491699, "rps_doc_word_count": 58, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.08060453087091446, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -53.931190490722656, "rps_doc_books_importance_length_correction": -60.574710845947266, "rps_doc_openwebtext_importance": -31.37070655822754, "rps_doc_openwebtext_importance_length_correction": -38.01422882080078, "rps_doc_wikipedia_importance": -18.378732681274414, "rps_doc_wikipedia_importance_length_correction": -25.022254943847656 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.6669720411300659, "fineweb_edu_approx": 0.41536271572113037, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": 0.007062490098178387, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "794.8", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "658.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Business", "level_3": "Management" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "19", "label": "Spam / Ads" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "6", "label": "Indeterminate" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "5", "label": "Indeterminate" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-8,711,451,165,088,764,000
Find a Business Near: Woodstock Valley, CT Below is a list of the types of businesses in the City of Woodstock Valley in which we have business listings. If you do not see your city within the list below. You can add a business for just $49.95 per year. To add a business submit your info here. Find a Business Near: Woodstock Valley, CT Population: No data available Seems like we could not load the Census Data for Woodstock Valley, CT (What should have appeared here). Sometimes this happens when we can not properly match a city or hamlet with 2010 census data. For complete census data for the Connecticut region click here The error has been logged and we will look into the issue. Business Industries in Woodstock Valley   Other cities in connecticut Brief Information About Woodstock Valley The community of Woodstock Valley is located in the county of Windham. Businesses related to contracting in building, financial advisory services, home building, publishing, printing services and contracting in remodeling and repairing, contribute to the local economy in a positive way.   EPA Statement
{ "url": "https://www.yellowpagesdirectory.com/Woodstock+Valley-CT", "source_domain": "www.yellowpagesdirectory.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "98044", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:JGCIOYB4MXFWLLOIMIN62K3NS7RRU6WX", "WARC-Concurrent-To": "<urn:uuid:d917249f-c88b-4a20-8053-abc47c270c47>", "WARC-Date": "2019-10-19T19:29:49Z", "WARC-IP-Address": "72.32.104.226", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:5ICOQNPMVG52GDSHODR2SMMG2QKV4QL5", "WARC-Record-ID": "<urn:uuid:a409d974-25ca-4fc4-aa24-633c420100b4>", "WARC-Target-URI": "https://www.yellowpagesdirectory.com/Woodstock+Valley-CT", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:e56d1bfe-73fe-4746-af69-e515248e0e44>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-65.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 43, 44, 296, 297, 298, 341, 342, 372, 373, 693, 694, 734, 736, 764, 805, 806, 1094, 1096, 1097 ], "line_end_idx": [ 43, 44, 296, 297, 298, 341, 342, 372, 373, 693, 694, 734, 736, 764, 805, 806, 1094, 1096, 1097, 1110 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1110, "ccnet_original_nlines": 19, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37378641963005066, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.019417479634284973, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.12621359527111053, "rps_doc_frac_unique_words": 0.5549450516700745, "rps_doc_mean_word_length": 4.906593322753906, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.325852394104004, "rps_doc_word_count": 182, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.07614781707525253, "rps_doc_frac_chars_dupe_6grams": 0.07614781707525253, "rps_doc_frac_chars_dupe_7grams": 0.07614781707525253, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.11758118867874146, "rps_doc_frac_chars_top_3gram": 0.05711086094379425, "rps_doc_frac_chars_top_4gram": 0.038073908537626266, "rps_doc_books_importance": -94.74109649658203, "rps_doc_books_importance_length_correction": -94.74109649658203, "rps_doc_openwebtext_importance": -64.53585815429688, "rps_doc_openwebtext_importance_length_correction": -56.74449920654297, "rps_doc_wikipedia_importance": -49.920536041259766, "rps_doc_wikipedia_importance_length_correction": -49.920536041259766 }, "fasttext": { "dclm": 0.00011015000200131908, "english": 0.914211630821228, "fineweb_edu_approx": 1.4184519052505493, "eai_general_math": 0.0004387499939184636, "eai_open_web_math": 0.016280649229884148, "eai_web_code": 0.00013184999988880008 } }
{ "free_decimal_correspondence": { "primary": { "code": "338.09746", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } }, "secondary": { "code": "307.76", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Social sciences — Research, Social sciences — Study and teaching, and Cities and towns" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "7", "label": "Search/Directory/Bibliography" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "1", "label": "About (Org.)" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
4,829,836,750,586,522,000
The Stack Overflow podcast is back! Listen to an interview with our new CEO. Reputation (412) This user has no recent positive reputation changes 21 × 9 2 × 2 14 × 2 2 × 2 12 2 7 × 6 1 × 2 2 × 2 1 × 2 Stack Overflow 1,734 rep 11 silver badges16 bronze badges Server Fault 412 rep 3 silver badges8 bronze badges Writing 143 rep 3 bronze badges TeX - LaTeX 101 rep Ask Ubuntu 101 rep 1 bronze badge Votes cast (32) all time   by type   32 up 11 question 0 down 21 answer
{ "url": "https://serverfault.com/users/23961/goran-juri%C4%87?tab=topactivity", "source_domain": "serverfault.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "118862", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:3JO3R2J2GV2OG4I434HDTBCRHL3IF3WQ", "WARC-Concurrent-To": "<urn:uuid:771342de-8232-4604-aaf7-e41834eb2528>", "WARC-Date": "2019-10-20T11:27:00Z", "WARC-IP-Address": "151.101.129.69", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:S37KPPMA4VPSAKVETUUREVRABINSRWCY", "WARC-Record-ID": "<urn:uuid:c193e8f4-5ca4-47ef-a9a8-688b17a2fa2d>", "WARC-Target-URI": "https://serverfault.com/users/23961/goran-juri%C4%87?tab=topactivity", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:955f7f59-952c-49d9-90b5-767dbe278f68>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-180.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 77, 78, 95, 96, 148, 151, 155, 157, 161, 164, 168, 170, 174, 177, 179, 181, 185, 187, 191, 193, 197, 199, 203, 261, 313, 345, 365, 399, 400, 416, 417, 438, 456 ], "line_end_idx": [ 77, 78, 95, 96, 148, 151, 155, 157, 161, 164, 168, 170, 174, 177, 179, 181, 185, 187, 191, 193, 197, 199, 203, 261, 313, 345, 365, 399, 400, 416, 417, 438, 456, 472 ] }
{ "red_pajama_v2": { "ccnet_original_length": 472, "ccnet_original_nlines": 33, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.11926606297492981, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.00917430967092514, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.4587155878543854, "rps_doc_frac_unique_words": 0.6299999952316284, "rps_doc_mean_word_length": 3.559999942779541, "rps_doc_num_sentences": 3, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.868086576461792, "rps_doc_word_count": 100, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.028089890256524086, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.0337078683078289, "rps_doc_frac_chars_top_3gram": 0.025280900299549103, "rps_doc_frac_chars_top_4gram": 0.02247191034257412, "rps_doc_books_importance": -40.63176727294922, "rps_doc_books_importance_length_correction": -45.2534294128418, "rps_doc_openwebtext_importance": -23.6942195892334, "rps_doc_openwebtext_importance_length_correction": -28.315879821777344, "rps_doc_wikipedia_importance": -26.451101303100586, "rps_doc_wikipedia_importance_length_correction": -31.072763442993164 }, "fasttext": { "dclm": 0.00024061999283730984, "english": 0.7862111330032349, "fineweb_edu_approx": 0.8246674537658691, "eai_general_math": 0.010468070395290852, "eai_open_web_math": 0.013055800460278988, "eai_web_code": 0.03848785161972046 } }
{ "free_decimal_correspondence": { "primary": { "code": "025.042", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } }, "secondary": { "code": "303.483", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Social sciences — Dictionaries" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "9", "label": "Personal/Misc" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "2", "label": "About (Personal)" }, "secondary": { "code": "18", "label": "Q&A Forum" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
1,341,932,904,309,489,700
4D Imaging of Protein Aggregation in Live Cells * These authors contributed equally Biology   Summary Cellular viability depends on timely and efficient management of protein misfolding. Here we describe a method for visualizing the different potential fates of a misfolded protein: refolding, degradation, or sequestration in inclusions. We demonstrate the use of a folding sensor, Ubc9ts, for monitoring proteostasis and aggregation quality control in live cells using 4D microscopy. Cite this Article Copy Citation | Download Citations | Reprints and Permissions Spokoini, R., Shamir, M., Keness, A., Kaganovich, D. 4D Imaging of Protein Aggregation in Live Cells. J. Vis. Exp. (74), e50083, doi:10.3791/50083 (2013). Abstract One of the key tasks of any living cell is maintaining the proper folding of newly synthesized proteins in the face of ever-changing environmental conditions and an intracellular environment that is tightly packed, sticky, and hazardous to protein stability1. The ability to dynamically balance protein production, folding and degradation demands highly-specialized quality control machinery, whose absolute necessity is observed best when it malfunctions. Diseases such as ALS, Alzheimer's, Parkinson's, and certain forms of Cystic Fibrosis have a direct link to protein folding quality control components2, and therefore future therapeutic development requires a basic understanding of underlying processes. Our experimental challenge is to understand how cells integrate damage signals and mount responses that are tailored to diverse circumstances. The primary reason why protein misfolding represents an existential threat to the cell is the propensity of incorrectly folded proteins to aggregate, thus causing a global perturbation of the crowded and delicate intracellular folding environment1. The folding health, or "proteostasis," of the cellular proteome is maintained, even under the duress of aging, stress and oxidative damage, by the coordinated action of different mechanistic units in an elaborate quality control system3,4. A specialized machinery of molecular chaperones can bind non-native polypeptides and promote their folding into the native state1, target them for degradation by the ubiquitin-proteasome system5, or direct them to protective aggregation inclusions6-9. In eukaryotes, the cytosolic aggregation quality control load is partitioned between two compartments8-10: the juxtanuclear quality control compartment (JUNQ) and the insoluble protein deposit (IPOD) (Figure 1 - model). Proteins that are ubiquitinated by the protein folding quality control machinery are delivered to the JUNQ, where they are processed for degradation by the proteasome. Misfolded proteins that are not ubiquitinated are diverted to the IPOD, where they are actively aggregated in a protective compartment. Up until this point, the methodological paradigm of live-cell fluorescence microscopy has largely been to label proteins and track their locations in the cell at specific time-points and usually in two dimensions. As new technologies have begun to grant experimenters unprecedented access to the submicron scale in living cells, the dynamic architecture of the cytosol has come into view as a challenging new frontier for experimental characterization. We present a method for rapidly monitoring the 3D spatial distributions of multiple fluorescently labeled proteins in the yeast cytosol over time. 3D timelapse (4D imaging) is not merely a technical challenge; rather, it also facilitates a dramatic shift in the conceptual framework used to analyze cellular structure. We utilize a cytosolic folding sensor protein in live yeast to visualize distinct fates for misfolded proteins in cellular aggregation quality control, using rapid 4D fluorescent imaging. The temperature sensitive mutant of the Ubc9 protein10-12 (Ubc9ts) is extremely effective both as a sensor of cellular proteostasis, and a physiological model for tracking aggregation quality control. As with most ts proteins, Ubc9ts is fully folded and functional at permissive temperatures due to active cellular chaperones. Above 30 °C, or when the cell faces misfolding stress, Ubc9ts misfolds and follows the fate of a native globular protein that has been misfolded due to mutation, heat denaturation, or oxidative damage. By fusing it to GFP or other fluorophores, it can be tracked in 3D as it forms Stress Foci, or is directed to JUNQ or IPOD. Protocol 1. Yeast Preparations 1. Transform yeast strains with a plasmid carrying a GAL1-GFP-Y68L (UBC9ts) cassette. 2. Grow yeast in synthetic media containing 2% raffinose for 24 hr and back diluted to 2% galactose containing media for 16 hr or O/N. Incubate cells at 30 °C while shaking at 200 rpm. 3. The following morning, dilute the query strain to OD600= 0.2. Shake for 4-6 hr at 30 °C (200 rpm) until the culture reaches OD600= 0.8-1.0. 4. To repress expression (so as to monitor only the already-translated and folded pool of GFP-Ubc9ts), change media to synthetic media supplemented with 2% glucose (SD) 30 min prior to imaging. 5. Treatment - Heat shock the cells for 20 min at 37 °C to induce misfolding, or continuously in microscope incubator to follow protein aggregation in heat-shock conditions. Note - if you are using the microscope at any temperature above RT, pre-heat for about 2 hr to equilibrate the temperature along the body of the microscope and the objectives (see below). 2. Plate\Slide Preparations 1. Choose appropriate plate. The main consideration is the ability to maintain focus during imaging acquisition. The following points are critical for 4D imaging and not for 2D time lapses or 3D imaging. 1. Multiple wells plate- the bottom of the different wells may not be homogenous (i.e. the wells will be at different heights relative to the objective). This will make it difficult to maintain focus across x y points and time points, regardless of the autofocusing technique being used. 2. Slide material: glass vs. plastic. Glass bottomed slides are more z-homogenous between wells, but are more expensive. 3. Thickness of the plate's bottom: we usually use coverslip-bottom plates index 1.5, but index 1 is also acceptable depending on the objective. 2. Cover bottom of the plate\slide with ConA (0.25 mg/ml) for 10 min. ConA is used to adhere cells to the slide, which enables following a single cell over time. 3. Remove ConA and incubate the slide in a chemical hood so that excess ConA will evaporate. 4. Plate 200 μl of yeast sample (OD600= 0.5) into the ConAed well. 5. Incubate for 15 min, as to enable cells stick to the surface of the plate. 6. Extract the medium, and wash three times with new medium to get one layer of cells. Note: if a long time lapse is planned, seed the cells sparsely so that new buds won't fill and interrupt the region of interest. 3. Microscope Preparations 1. We use a Nikon A1Rsi confocal microscope with a few non-standard modifications. For yeast imaging we use up to 4 lasers (405 nm, 50 mW CUBE laser; 457-514 nm, 65 mW Argon Ion laser; 561 nm, 50 mW Sapphire laser; and 640 nm, 40 mW CUBE laser), and up to 4 PMTs equipped with filters. Most of our imaging is done with a green filter set for EGFP and a red filter set for mCherry and tdTomato. With GFP and mCherry there is almost no bleedthrough, therefore we often use simultaneous scanning. However, line-scanning can also be used to prevent bleedthrough when it does occur. Our confocal is also equipped with a PInano Piezo stage (MCL), which can make 3 msec steps in z, enabling 2-3 z-stacks (30-50 sections) per second. The systems also has a spectral detector, Perfect Focus (laser offset), and two scanners - a galvano scanner and a resonant scanner. 2. Choose appropriate objective. Main considerations: 1. Water/Oil/Air objective: the main consideration is the refractive index of the imaging medium vs the medium of the sample. 1. Oil objective advantages: 1. Oil objectives can have higher numerical apertures (oil breaks light more than water, and therefore more photons go back to the objective). Oil objectives can have up to NA 1.49, compared to 1.27 for water. (However, this is not actually a huge difference in resolution). 2. The refractive index of oil matches the refractive index of glass, therefore no photons are lost going from the sample, through the glass, to the objective. (Note - chose an immersion oil that has a refractive index that is appropriate for your objective and your coverslip). 3. Oil enables hassle-free long time-lapses since it does not evaporate. Oil Objective disadvantages: 1. The higher resolution enabled by the higher NA of oil objectives degrades rapidly if the light has to travel through an aqueous medium (such as a cell). 2. Images typically have more spherical aberrations and a "stretched out" effect in 3D. 3. Oil is sticky, messy, and a hazard to objectives. 2. Water objective advantages 1. The cell itself is aqueous, therefore there are fewer distortions in z, and the resolution remains high deep into an aqueous sample. 2. Clean and user friendly. Water objective disadvantages: evaporates quickly, therefore not suitable for long movies without special arrangements being made to pump water continuously to the objective. 3. Air objective advantages: 1. No material is lost/evaporates during multiple point acquisition or a long movie. 2. Clean and user friendly. Disadvantage: low resolution and low signal sensitivity. 2. Room and incubator temperature: changing temperature affects matter properties, and in delicate systems changes the focus. The temperature should be adjusted before choosing points for acquisition. Changing the temperature during acquisition will disrupt imaging and will result in loss of focus. We let our microscope system equilibrate for 2 hr at the desired temperature before imaging. 3. Correction collars: Many objectives come with a correction ring enabling the objective to be adjusted for a given cover-slip thickness. We recommend adjusting the correction collar while using fluorescent beads to visualize the point spread function. This will ensure correct settings for every sample. 4. Stable sample holders: we find that most commercially available sample holders are the weakest part of the microscope. They are often wobbly and not straight. This is a disaster for high-resolution, multi-point 4D imaging. We design our own sample holders that are straight and fit tightly onto the stage. They can also be bolted down when needed. 5. Multi-point acquisition: our imaging system is equipped with the Nikon "Perfect focus" system, which is basically a laser-based auto-focus mechanism. However, autofocusing is not necessarily necessary with 4D imaging, especially if the system does not drift a lot. 4. Imaging 1. Turn on the system: lasers, stage, controller, camera and computer software. 2. Place plate on stage holder, properly secured and stabilized. 3. Use eye port to determine location and orientation of yeast. 4. Using brightfield, assess cell health and viability according to shape and texture. 5. Turn on epifluorescent light according to the relevant fluorophore (e.g. FITC filter for GFP), and focus on cells displaying the phenotype which is subject to your research. Cells which are highly fluorescent in more than one wavelength may be dead and therefore autofluorescent. We visualize the nucleus with a tdTomato fluorophore fused to an SV40 NLS signal (NLS-TFP). TFP is twice the size of GFP, and is therefore above the diffusion limit of the nucleus, therefore it works very well as a nuclear marker. We can also excite TFP with a green (488 nm) laser simultaneously as GFP, but collect the green and red emissions into two separate PMTs for spectral resolution. 6. Adjust the following settings to minimize noise and oversaturation: 1. Laser power - photobleaching and phototoxicity vs. brightness of image should be considered. 2. Gain: affects camera sensitivity, thus Signal to Noise ratio. 3. Pinhole diameter - should be adjusted according to the laser with the shorter wavelength. The pinhole diameter determines the thickness (height) of the optical section imaged. Thus, opening the pinhole will collect more light (let more photons in), but will decrease resolution in z (less confocality). 7. Useful tips: 1. If different fluorophores emit congruent wavelength, use the Spectral Detector feature which enables the choice of virtual filters. Keep in mind that spectral detectors are less sensitive than regular PMTs. 2. If different fluorophores are excited by the same laser, use the line scanning feature. 3. A Galvano scanner enables more sensitivity, but has a higher risk for photobleaching. A Resonant scanner enables faster acquisition, thus lowering the risk for photobleaching, but is less sensitive. 4. Averaging between 2 and 16 images, it enhances signal to noise ratio, but makes acquisition slower and, of course, involves more exposure of the sample to the laser. 5. Duration of acquisition- depends on the biological question (e.g JUNQ and IPOD formation takes ~2 hr). We have imaged yeast with the resonant scanner for up to 30 hr in 3D time-lapse. 6. Time lapse intervals- Smaller intervals will create a more coherent movie but might cause photo bleaching and therefore loss of signal. Representative Results Figure 1 Figure 1. Model: Sub-cellular compartmentalization of misfolded proteins. Quality control machinery directs misfolded proteins into distinct compartments with distinct functions: Soluble proteins, targeted for degradation, undergo poly-ubiquitination and are sent to the Juxta-NuclearQuality control compartment (JUNQ). Insoluble proteins that can't be ubiquitinated are sent for protective sequestration to the InsolubleProteinDeposit (IPOD), adjacent to the vacuole, where they undergo active aggregation. Figure 2 Figure 2. Modeling protein misfolding with GFP-Ubc9ts. Under normal conditions, GFP-Ubc9ts (green) is natively folded, and is localized diffusely in the nucleus and the cytosol. The nucleus is labeled by NLS-TFP (red). Expression of Ubc9ts was shut off by addition of 2% glucose before imaging in all experiments. Click here to view larger figure. 1. Upon temperature shift to 37 °C, GFP-Ubc9ts (green) is misfolded and forms cytosolic Stress Foci. The nucleus is labeled by NLS-TFP (red). 2. Upon recovery from heat shock at 23 °C, the thermally denaturated GFP-Ubc9ts is degraded, as indicated by decreased fluorescence level. 3. Upon temperature shift to 37 °C and proteasome inhibition with 80 Mm MG132, GFP-Ubc9ts is misfolded and processed into JUNQ and IPOD inclusions. The nucleus is labeled by NLS-TFP (red). 4. Upon temperature shift to 37 °C and ubiquitination inhibition, GFP-Ubc9ts is misfolded and processed into the IPOD inclusion. The nucleus is labeled by NLS-TFP (red). The Ubiquitin Protease 4 (Ubp4) is overexpressed to block Ubc9ts ubiquitination. Figure 3 Figure 3. Time lapse of JUNQ and IPOD formation. Upon temperature shift to 37 °C and proteasome inhibition with 80 Mm MG132, GFP-Ubc9ts Stress Foci are processed into JUNQ and IPOD inclusions. The nucleus is labeled by NLS-TFP (red). 3D images were acquired at 4 min intervals. (also see Movie 1). Click here to view larger figure. Discussion Our intuitions about biochemical processes derive from bench top experiments in which a well-mixed solution of reactants and products is allowed to reach equilibrium in a beaker. In such a setting, the concentration of a given chemical species may be expressed as a single number, which is the ratio of a molar quantity of molecules to a macroscopic volume. Much of what we know about protein structure and function derives from using methods that reflect the classic, bulk reaction picture: western blots, centrifugations, and spectrophotometric measurements carried out on extracts from homogenates of whole populations of cells. As the technology we use to look at cells under magnification improves by leaps and bounds, it becomes ever clearer that the conditions in which most biochemical reactions take place in vivo bear only the slightest resemblance to those of the classic bench top scenario. Not only is the interior of the cell a densely packed environment, in which crowding effects substantially alter the activities of various reactants, it is also quite the opposite of well-mixed. This accounts for the frequent disparity between in vitro and in vivo efficiencies of a wide range of complex macromolecular reactions. Nowhere are intuitions stemming from classical in vitro biochemical experiments more prone to mislead as in questions pertaining to the in vivo folding, misfolding, and aggregation of proteins. Whereas studies of protein chemistry in bulk reactions can treat the issue of folding for a given protein as a simple yes or no question, any attempt to track the dynamics of whole populations of macromolecules in a live cell must be sensitive to the whole distribution of possible conformational outcomes available to a polypeptide chain, and in particular to the risk of misfolding and aggregation. For example, we might examine a bulk cell lysate of an aggregating protein by western blotting, and determine that the protein is mostly insoluble and not ubiquitinated. However, in the living cell a discrete sub-population of the protein, difficult to detect when averaging over many cells, may be soluble and ubiquitinated in a particular compartment where the local concentration of the species is extremely high. The latter scenario may have more important consequences for the viability of the cell than the larger bulk sub-population. Furthermore, whereas chaperones display a variety of pleiotropic behaviors and functions in vitro, it is becoming evident that in the cell their discrete functions are spatially and temporally confined. In the newly emerging paradigm for understanding biochemistry, concentration becomes a variable property of each specific nano-environment in the cell, and the molecular events that underlie biological processes must be assayed not only in time, but also in space. The 4D imaging approach presented here enables sensitive modeling of protein misfolding in live cells, though it can be used to study any number of other biological processes and how they are regulated in space, time, and following changes in environmental conditions. In this paper we use the Ubc9ts folding sensor, which effectively demonstrates the stages and options for dealing with the onset of protein aggregation in the cytosol. In addition to illustrating the cell biology of aggregation quality control, this approach can serve as a powerful tool for deciphering the effect of specific perturbations or genetic mutations on proteostasis (for example Ubc9ts can be used to measure protein folding stress in response to oxidation, the expression of a toxic aggregate, or mutations in the quality control pathway). 4D imaging is also essential for accurately determining protein localization or colocalization between two different proteins, and for detecting phenomena which maybe be transient but important. For example, especially in a small spherical organism such as yeast, it may appear to be the case that a structure or aggregate has juxtanuclear localization, whereas 4D imaging may reveal that this is simply an artifact of the angle of inspection. In the example experiment we present here, we demonstrate the use of a model misfolded protein, Ubc9ts, to follow aggregation quality control over time and space in the cytosol. At the permissive temperature, Ubc9ts is folded and diffused in the nucleus and cytosol. Upon heat-induced misfolding, it initially forms rapidly diffusing small aggregate Stress Foci that are processed for proteasomal degradation. When the proteasome is partially inhibited, these Stress Foci are converted into JUNQ and IPOD inclusions over the course of about 2 hr. If ubiquitin-mediated degradation is not available as a quality control option, Ubc9ts is immediately re-routed to the IPOD inclusion for protective aggregation. These tools offer incredible opportunities to discover novel genetic factors involved in aggregation quality control, and to explore their spatial and temporal regulation in the cell. Disclosures No conflicts of interest declared. Materials Name Company Catalog Number Comments MG132 Mercury mbs474790 con A Sigma C2010 Glass bottom plates ibidi ibd81158 4D Fluorescence Imaging of Protein Aggregation Confocal 3D movies were acquired using a Nikon A1R-si microscope equipped with a PInano Piezo stage (MCL), using a 60x water objective NA 1.27, 0.3 micron slices, 0.5% laser power (from 65 mW 488 laser and 50 mW 561 laser). z-stacks were acquired every 5 min for 90 min. Each z-series was acquired with 0.5 micron step size and 30 total steps. Image processing was performed using NIS-Elements software. DOWNLOAD MATERIALS LIST References 1. Gershenson, A., Gierasch, L. M. Protein folding in the cell: challenges and progress. Current opinion in structural biology. 21, 32-41 (2011). 2. Aguzzi, A., Calella, A. M. Prions: protein aggregation and infectious diseases. Physiological reviews. 89, 1105-1152 (2009). 3. Morimoto, R. I. Proteotoxic stress and inducible chaperone networks in neurodegenerative disease and aging. Genes & development. 22, 1427-14 (2008). 4. Cohen, E., Dillin, A. The insulin paradox: aging, proteotoxicity and neurodegeneration. Nature reviews. Neuroscience. (2008). 5. Hershko, A., Ciechanover, A. The ubiquitin system. Annual review of biochemistry. 67, (1998). 6. Tyedmers, J., Mogk, A., Bukau, B. Cellular strategies for controlling protein aggregation. Nature reviews. Molecular cell biology. 11, 777-788 (2010). 7. Treusch, S., Cyr, D. M., Lindquist, S. Amyloid deposits: Protection against toxic protein species? Cell cycle (Georgetown, Tex.). 8, 1668-1674 (2009). 8. Spokoini, R., et al. Confinement to Organelle-Associated Inclusion Structures Mediates Asymmetric Inheritance of Aggregated Protein in Budding Yeast. Cell Rep. (2012). 9. Weisberg, S. J., et al. Compartmentalization of superoxide dismutase 1 (SOD1G93A) aggregates determines their toxicity. Proc Natl Acad Sci U S A. 109, 15811-15816 (2012). 10. Kaganovich, D., Kopito, R., Frydman, J. Misfolded proteins partition between two distinct quality control compartments. Nature. 454, 1088 (2008). 11. Betting, J., Seufert, W. A yeast Ubc9 mutant protein with temperature-sensitive in vivo function is subject to conditional proteolysis by a ubiquitin- and proteasome-dependent pathway. The Journal of biological chemistry. 271, 25790 (1996). 12. Tongaonkar, P., Beck, K., Shinde, U. P., Madura, K. Characterization of a temperature-sensitive mutant of a ubiquitin-conjugating enzyme and its use as a heat-inducible degradation signal. Analytical biochemistry. 272, 263 (1999). Comments 0 Comments Post a Question / Comment / Request You must be signed in to post a comment. Please or create an account. Usage Statistics
{ "url": "https://www.jove.com/video/50083/4d-imaging-of-protein-aggregation-in-live-cells", "source_domain": "www.jove.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "198400", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:5H7IYAIIB37SNQP53R6VSYTH3JI66TJA", "WARC-Concurrent-To": "<urn:uuid:83e4e309-917a-4bc5-a2be-33a2afffe974>", "WARC-Date": "2019-10-14T04:16:47Z", "WARC-IP-Address": "52.203.249.181", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:YNMU75PJOP3DFMFPFAUNNB6RF2WO5PSQ", "WARC-Record-ID": "<urn:uuid:58edcede-ae22-438f-8966-a2bba45fea12>", "WARC-Target-URI": "https://www.jove.com/video/50083/4d-imaging-of-protein-aggregation-in-live-cells", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:52fc6662-1ebb-4a9d-9472-16debc2cc531>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-10.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 48, 49, 85, 93, 95, 96, 104, 105, 489, 490, 508, 509, 571, 572, 727, 728, 737, 738, 1591, 1592, 2333, 2334, 2858, 2859, 3631, 3632, 4473, 4474, 4483, 4484, 4506, 4507, 4595, 4782, 4927, 5123, 5487, 5488, 5516, 5517, 5723, 6015, 6140, 6289, 6453, 6548, 6617, 6697, 6915, 6916, 6943, 6944, 7805, 7861, 7991, 8026, 8309, 8596, 8677, 8714, 8878, 8974, 9035, 9071, 9215, 9426, 9631, 10028, 10338, 10693, 10965, 10966, 10977, 10978, 11060, 11127, 11193, 11282, 11960, 12033, 12133, 12202, 12512, 12530, 12744, 12839, 13045, 13218, 13409, 13552, 13553, 13576, 13577, 13586, 14094, 14095, 14104, 14452, 14453, 14597, 14738, 14929, 15182, 15183, 15192, 15524, 15525, 15536, 15537, 16169, 16170, 16772, 16773, 18112, 18113, 19200, 19201, 19645, 19646, 20539, 20540, 20552, 20553, 20588, 20589, 20599, 20600, 20637, 20661, 20679, 20714, 20761, 21165, 21166, 21190, 21191, 21202, 21203, 21351, 21481, 21635, 21766, 21865, 22021, 22177, 22350, 22526, 22678, 22925, 23162, 23163, 23172, 23173, 23184, 23185, 23186, 23226, 23227, 23301, 23302 ], "line_end_idx": [ 48, 49, 85, 93, 95, 96, 104, 105, 489, 490, 508, 509, 571, 572, 727, 728, 737, 738, 1591, 1592, 2333, 2334, 2858, 2859, 3631, 3632, 4473, 4474, 4483, 4484, 4506, 4507, 4595, 4782, 4927, 5123, 5487, 5488, 5516, 5517, 5723, 6015, 6140, 6289, 6453, 6548, 6617, 6697, 6915, 6916, 6943, 6944, 7805, 7861, 7991, 8026, 8309, 8596, 8677, 8714, 8878, 8974, 9035, 9071, 9215, 9426, 9631, 10028, 10338, 10693, 10965, 10966, 10977, 10978, 11060, 11127, 11193, 11282, 11960, 12033, 12133, 12202, 12512, 12530, 12744, 12839, 13045, 13218, 13409, 13552, 13553, 13576, 13577, 13586, 14094, 14095, 14104, 14452, 14453, 14597, 14738, 14929, 15182, 15183, 15192, 15524, 15525, 15536, 15537, 16169, 16170, 16772, 16773, 18112, 18113, 19200, 19201, 19645, 19646, 20539, 20540, 20552, 20553, 20588, 20589, 20599, 20600, 20637, 20661, 20679, 20714, 20761, 21165, 21166, 21190, 21191, 21202, 21203, 21351, 21481, 21635, 21766, 21865, 22021, 22177, 22350, 22526, 22678, 22925, 23162, 23163, 23172, 23173, 23184, 23185, 23186, 23226, 23227, 23301, 23302, 23322 ] }
{ "red_pajama_v2": { "ccnet_original_length": 23322, "ccnet_original_nlines": 160, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3108384609222412, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.034992050379514694, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.2206316739320755, "rps_doc_frac_unique_words": 0.3479490876197815, "rps_doc_mean_word_length": 5.281470775604248, "rps_doc_num_sentences": 334, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 6.150871753692627, "rps_doc_word_count": 3535, "rps_doc_frac_chars_dupe_10grams": 0.014461699873209, "rps_doc_frac_chars_dupe_5grams": 0.04413497820496559, "rps_doc_frac_chars_dupe_6grams": 0.03786823898553848, "rps_doc_frac_chars_dupe_7grams": 0.02854846976697445, "rps_doc_frac_chars_dupe_8grams": 0.018746649846434593, "rps_doc_frac_chars_dupe_9grams": 0.014461699873209, "rps_doc_frac_chars_top_2gram": 0.006159610114991665, "rps_doc_frac_chars_top_3gram": 0.00937332957983017, "rps_doc_frac_chars_top_4gram": 0.005088380072265863, "rps_doc_books_importance": -1976.320556640625, "rps_doc_books_importance_length_correction": -1976.320556640625, "rps_doc_openwebtext_importance": -1142.7591552734375, "rps_doc_openwebtext_importance_length_correction": -1142.7591552734375, "rps_doc_wikipedia_importance": -883.7042846679688, "rps_doc_wikipedia_importance_length_correction": -883.7042846679688 }, "fasttext": { "dclm": 0.21384620666503906, "english": 0.9005634188652039, "fineweb_edu_approx": 2.3083431720733643, "eai_general_math": 0.25018203258514404, "eai_open_web_math": 0.3136712312698364, "eai_web_code": 0.008258519694209099 } }
{ "free_decimal_correspondence": { "primary": { "code": "572.62", "labels": { "level_1": "Science and Natural history", "level_2": "Biology and Anthropology", "level_3": "Anthropology" } }, "secondary": { "code": "621.368", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } } }, "bloom_cognitive_process": { "primary": { "code": "3", "label": "Apply" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "3", "label": "Procedural" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "2", "label": "Academic/Research" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "3", "label": "Academic Writing" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "4", "label": "Advanced Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "3", "label": "Mostly Correct" } }, "education_level": { "primary": { "code": "4", "label": "Graduate/Expert Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
927,213,967,426,373,500
2018 Pumpkins (2018) 0 Pumpkins (2018) Watch Pumpkins Movie Online on Bmovies, Fmovies, BmoviesFree, A teen Horror Movie set in the 80’s in the North of England. The 11th Patient (2018) 0 The 11th Patient (2018) Watch The 11th Patient Movie Online on Bmovies, Fmovies, BmoviesFree, Steven, A young teenage boy, is found in a comatose state deep in the woods ... Slime (2018) 0 Slime (2018) Watch Slime Movie Online on Bmovies, Fmovies, BmoviesFree, In Atlanta Yo Money name is gaining respek in the streets when it comes to his music, ... Robbery (2018) 0 Robbery (2018) Watch Robbery Movie Online on Bmovies, Fmovies, BmoviesFree, When his criminal father is diagnosed with dementia, a young thief plans a series of ... Fronteras (2018) 0 Fronteras (2018) Watch Fronteras Movie Online on Bmovies, Fmovies, BmoviesFree, A Hispanic Border Patrol Agent has his morals challenged when a life-threatening ... Gundermann (2018) 0 Gundermann (2018) Watch Gundermann Movie Online on Bmovies, Fmovies, BmoviesFree, The real life story of East German singer and writer Gerhard Gundermann and his ... Wake (2018) 0 Wake (2018) Watch Wake Movie Online on Bmovies, Fmovies, BmoviesFree, A widowed mortician, struggling with agoraphobia, is given a birthday gift from her ... 30 Nights (2018) 0 30 Nights (2018) Watch 30 Nights Movie Online on Bmovies, Fmovies, BmoviesFree, In a last ditch effort to save their marriage, Nick and Willa visit a renowned, ... Draug (2018) 0 Draug (2018) Watch Draug Movie Online on Bmovies, Fmovies, BmoviesFree, In the 11th century a missionary goes missing somewhere in the huge forests bordering ...
{ "url": "https://ww2.bmovies32.net/release/2018/", "source_domain": "ww2.bmovies32.net", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "78934", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:7JVPPWKH3A4FNTMYPBLNPJKLNGSCTMSJ", "WARC-Concurrent-To": "<urn:uuid:c70b805c-bc54-49d2-889e-306a677821cf>", "WARC-Date": "2019-10-18T07:02:38Z", "WARC-IP-Address": "104.31.91.35", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:V573EGGNWSVCDBJNYNQIBUVAMZAUXCKL", "WARC-Record-ID": "<urn:uuid:4e50c770-6c17-454a-af3c-d27f4b3e02d0>", "WARC-Target-URI": "https://ww2.bmovies32.net/release/2018/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c4098251-cb78-4017-9092-71e1e366e397>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-173.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 5, 6, 22, 24, 25, 41, 42, 165, 189, 191, 192, 216, 217, 367, 380, 382, 383, 396, 397, 546, 561, 563, 564, 579, 580, 730, 747, 749, 750, 767, 768, 916, 934, 936, 937, 955, 956, 1104, 1116, 1118, 1119, 1131, 1132, 1278, 1295, 1297, 1298, 1315, 1316, 1463, 1476, 1478, 1479, 1492, 1493 ], "line_end_idx": [ 5, 6, 22, 24, 25, 41, 42, 165, 189, 191, 192, 216, 217, 367, 380, 382, 383, 396, 397, 546, 561, 563, 564, 579, 580, 730, 747, 749, 750, 767, 768, 916, 934, 936, 937, 955, 956, 1104, 1116, 1118, 1119, 1131, 1132, 1278, 1295, 1297, 1298, 1315, 1316, 1463, 1476, 1478, 1479, 1492, 1493, 1641 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1641, "ccnet_original_nlines": 55, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.17994099855422974, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.011799409985542297, "rps_doc_frac_lines_end_with_ellipsis": 0.1428571343421936, "rps_doc_frac_no_alph_words": 0.3362831771373749, "rps_doc_frac_unique_words": 0.4117647111415863, "rps_doc_mean_word_length": 4.952941417694092, "rps_doc_num_sentences": 9, "rps_doc_symbol_to_word_ratio": 0.023598819971084595, "rps_doc_unigram_entropy": 4.145558834075928, "rps_doc_word_count": 255, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.2779097259044647, "rps_doc_frac_chars_dupe_6grams": 0.2779097259044647, "rps_doc_frac_chars_dupe_7grams": 0.1876484602689743, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.035629451274871826, "rps_doc_frac_chars_top_3gram": 0.0926365777850151, "rps_doc_frac_chars_top_4gram": 0.1425178050994873, "rps_doc_books_importance": -196.5574188232422, "rps_doc_books_importance_length_correction": -182.83975219726562, "rps_doc_openwebtext_importance": -89.48617553710938, "rps_doc_openwebtext_importance_length_correction": -89.48617553710938, "rps_doc_wikipedia_importance": -54.02558135986328, "rps_doc_wikipedia_importance_length_correction": -41.44826126098633 }, "fasttext": { "dclm": 0.00013328000204637647, "english": 0.8975686430931091, "fineweb_edu_approx": 1.2469562292099, "eai_general_math": 0.0005285100196488202, "eai_open_web_math": 0.0736951231956482, "eai_web_code": 0.00003517000004649162 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.4372", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "025.2", "labels": { "level_1": "General works, books and libraries, information sciences", "level_2": "Library science", "level_3": "Library administration" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "3", "label": "Reference/Encyclopedic/Educational" }, "secondary": { "code": "6", "label": "Promotional/Advertisement" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-9,149,541,498,562,086,000
South Africa whip Trinidad & Tobago 12-0New Delhi: Coetzee Pietie marked her return from retirement by slamming four goals as South Africa pounded Trinidad and Tobago 12-0 in a pool A match of the women's hockey competition in the 19th Commonwealth Games here Monday. Pietie, the 32-year-old forward and penalty corner specialist, came out of a self-imposed five-year absence from competitive hockey and showed she was none the worse for it by slotting home the goals as the South Africans ran riot at the Major Dhyan Chand National Stadium. "Everything went to plan today (Monday) and it is a privilege to score a hat-trick in an international match," said Pietie, who showcased her versatility with two penalty corner conversions and as many field goals. "I took a five-year break because I was exhausted, but I was playing in local matches. Then, my coach convinced me to return and this is my third month," she added. Pietie began the flood of goals with two conversions in the first 10 minutes and thereafter, the Trinidadians were helpless against the South African onslaughts that were magnified by the tottering defence. "We need to remain focused on our next match. We made too many mistakes in the defence, but we can bounce back," said a brave Trinidad and Tobago skipper Patricia Wright-Alexis. The other goal-scorers for South Africa, who led 3-0 at the break, were: Dirkie Chamberlain (3), Jennifer Wilson (2), Kathleen Taylor, Lesle Anne George and Farah Fredericks. Source: IANS Continue Reading...
{ "url": "https://ttolympic.org/index.php/international-games/commonwealth-games/905-cwg-womens-hockey-south-africa-whip-trinidad-a-tobago-12-0", "source_domain": "ttolympic.org", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "62922", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:RYFV6UEZO7AYNE2ZF5WYKOZG7CBSEZZC", "WARC-Concurrent-To": "<urn:uuid:67815eb5-72af-4a28-a95c-9184cd953fd9>", "WARC-Date": "2019-10-21T08:35:50Z", "WARC-IP-Address": "216.194.165.162", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:KJGXFCGR4SATVTMD26QFD7KHQ34W7RXF", "WARC-Record-ID": "<urn:uuid:7557a892-ff28-4ddb-b785-d2999bf9f736>", "WARC-Target-URI": "https://ttolympic.org/index.php/international-games/commonwealth-games/905-cwg-womens-hockey-south-africa-whip-trinidad-a-tobago-12-0", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4956452f-188c-44f0-959e-159435255ac2>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 268, 269, 543, 544, 759, 760, 925, 926, 1133, 1134, 1312, 1313, 1488, 1489, 1502, 1503, 1504 ], "line_end_idx": [ 268, 269, 543, 544, 759, 760, 925, 926, 1133, 1134, 1312, 1313, 1488, 1489, 1502, 1503, 1504, 1523 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1523, "ccnet_original_nlines": 17, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3603896200656891, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.016233770176768303, "rps_doc_frac_lines_end_with_ellipsis": 0.055555559694767, "rps_doc_frac_no_alph_words": 0.18506494164466858, "rps_doc_frac_unique_words": 0.6330645084381104, "rps_doc_mean_word_length": 4.8830647468566895, "rps_doc_num_sentences": 10, "rps_doc_symbol_to_word_ratio": 0.003246749984100461, "rps_doc_unigram_entropy": 4.797342300415039, "rps_doc_word_count": 248, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.02725020982325077, "rps_doc_frac_chars_top_3gram": 0.028075970709323883, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -139.7994842529297, "rps_doc_books_importance_length_correction": -129.2073974609375, "rps_doc_openwebtext_importance": -63.49825668334961, "rps_doc_openwebtext_importance_length_correction": -63.49825668334961, "rps_doc_wikipedia_importance": -50.101436614990234, "rps_doc_wikipedia_importance_length_correction": -37.249935150146484 }, "fasttext": { "dclm": 0.0062218899838626385, "english": 0.9783276319503784, "fineweb_edu_approx": 1.3612380027770996, "eai_general_math": 0.007981779985129833, "eai_open_web_math": 0.21118873357772827, "eai_web_code": 0.0017965399893000722 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.9601", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.9602", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "10", "label": "Knowledge Article" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
7,138,541,377,418,071,000
Vintage Rose Gold Engagement Rings Art Deco Vintage Rose Gold Engagement Rings Art Deco Photo Detail Rose gold vintage engagement rings wedding, promise. Solid 10k rose gold 6mm round morganite engagement wedding. Vintage rose gold engagement rings art deco. Vintage antique solid 10k rose gold 45m round morganite. Date December 13, 2018 Color Palettes       Copyrights © 2013 & All Rights Reserved by CoWorker Inc.
{ "url": "http://www.bluecollarcorner.com/vintage-rose-gold-engagement-rings-art-deco-f96dc8f0c8f10b8d.html", "source_domain": "www.bluecollarcorner.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "34713", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:HDFPBCHK32ZGD7TOO4PPUEX4B7IJB52X", "WARC-Concurrent-To": "<urn:uuid:95983c68-2112-4c47-9e0b-16a5dca7762d>", "WARC-Date": "2019-10-23T20:41:06Z", "WARC-IP-Address": "104.31.84.244", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:CGZLCVXUYEY6DOBP526CYEJE5PJ4SC3D", "WARC-Record-ID": "<urn:uuid:518120eb-656f-42e5-a42a-1500295c3c3c>", "WARC-Target-URI": "http://www.bluecollarcorner.com/vintage-rose-gold-engagement-rings-art-deco-f96dc8f0c8f10b8d.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:c25ce441-d0a4-469b-9e09-906a239b3f9f>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 44, 45, 89, 90, 103, 104, 319, 320, 325, 343, 358, 364 ], "line_end_idx": [ 44, 45, 89, 90, 103, 104, 319, 320, 325, 343, 358, 364, 420 ] }
{ "red_pajama_v2": { "ccnet_original_length": 420, "ccnet_original_nlines": 12, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.014084509573876858, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.1690140813589096, "rps_doc_frac_unique_words": 0.5238094925880432, "rps_doc_mean_word_length": 5.38095235824585, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 3.243709087371826, "rps_doc_word_count": 63, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.34808260202407837, "rps_doc_frac_chars_dupe_6grams": 0.34808260202407837, "rps_doc_frac_chars_dupe_7grams": 0.34808260202407837, "rps_doc_frac_chars_dupe_8grams": 0.25958701968193054, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.14159291982650757, "rps_doc_frac_chars_top_3gram": 0.13274335861206055, "rps_doc_frac_chars_top_4gram": 0.22123894095420837, "rps_doc_books_importance": -15.694754600524902, "rps_doc_books_importance_length_correction": -15.6949462890625, "rps_doc_openwebtext_importance": -13.230642318725586, "rps_doc_openwebtext_importance_length_correction": -13.230834007263184, "rps_doc_wikipedia_importance": -17.936643600463867, "rps_doc_wikipedia_importance_length_correction": -17.93683433532715 }, "fasttext": { "dclm": -0.000010009999641624745, "english": 0.6509923338890076, "fineweb_edu_approx": 0.7150575518608093, "eai_general_math": -0.000010009999641624745, "eai_open_web_math": -0.0000066799998421629425, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "745.6", "labels": { "level_1": "Arts", "level_2": "Drawing, Decoration and ornament, and Design", "level_3": "Decorative arts" } }, "secondary": { "code": "684.2", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Handicraft and Occupations", "level_3": "Woodwork and Furniture" } } }, "bloom_cognitive_process": { "primary": { "code": "1", "label": "Remember" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
8,961,498,300,675,656,000
NETWORKING TOOLS • Register Product Code: 6101-05002 DINTEK UTP/STP Cable Strippers You Can Request Pricing By Building Up An RFP: - + Go To RFP DINTEK UTP/STP Cable Strippers The DINTEK UTP/STP strippers to add to its current line of quality tools. Twisted pair cable prep has never been made easier. DINTEK's professional twisted pair cable strippers are small enough to fit into your pocket and provide quality cable preparation. With an adjustable cable cutter and stripper for round cables, UTP/STP telephone and data cables, and other flexible cables. DINTEK's cable stripper provides effortless, finger-loop cutting and stripping of flexible cables. It features easily adjustable blade depth to "score" without damaging shielding and conductors. Use it to easily cut and strip round cables, UTP/STP telephone and data cables plus other flexible cables. Applications • Premise wiring • Cable assemblies • Cable repair Physical Structure • Professional all-in-one cutter/stripper for twisted pair and coaxial cables • Cuts and strips multiple cable types: Twisted Pair (UTP/STP): Cat.6A, Cat6, Cat5e and Coax: RG6, RG59 • Easy-to-use combination cutter/stripper • Adjustable stripping blade for UTP/STP accommodates different insulation thicknesses without damaging conductors • Contoured finger grips for cutting power • Ensures damage-free stripping. • Use with twisted-pair wire tightly wrapped stranded cables. Ordering Information Product NumberProduct NameStd Pkg QtyStd Pkg Qty 6101-05002 DINTEK UTP/STP Cable Strippers 1pcs / Blister Pack 40pcs/Box Stay Up To Date Thanks for coming to use the services provided by logging in to the DINTEK website. Press the login button. Once you are logged into the DINTEK Website. You will have access to additional content and services depending on the level of access that has been assigned to you. Register
{ "url": "https://www.dintek.com.tw/index.php/dintek-utp-stp-cable-strippers.html", "source_domain": "www.dintek.com.tw", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "135381", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:RYDWRU6VJZC3TWITX2XFDKHGNNDTKBXG", "WARC-Concurrent-To": "<urn:uuid:6e6aff60-d37f-48ff-bab3-72366b56f580>", "WARC-Date": "2019-10-22T07:21:19Z", "WARC-IP-Address": "146.66.93.93", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:N537BR2KFCI7A5B4JXQHT64FMRDTOR5Q", "WARC-Record-ID": "<urn:uuid:0e405cff-1598-4d18-bb69-59d1fe478808>", "WARC-Target-URI": "https://www.dintek.com.tw/index.php/dintek-utp-stp-cable-strippers.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ad8d6353-bb50-420a-b52e-6a4368c92209>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-141.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 17, 30, 55, 56, 87, 88, 135, 139, 149, 150, 151, 182, 183, 257, 440, 441, 442, 869, 870, 871, 872, 885, 886, 905, 926, 943, 944, 945, 946, 947, 948, 949, 950, 951, 970, 971, 1051, 1157, 1201, 1318, 1363, 1398, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1490, 1539, 1540, 1551, 1552, 1583, 1584, 1604, 1605, 1615, 1616, 1617, 1633, 1634, 1742, 1743, 1908, 1909 ], "line_end_idx": [ 17, 30, 55, 56, 87, 88, 135, 139, 149, 150, 151, 182, 183, 257, 440, 441, 442, 869, 870, 871, 872, 885, 886, 905, 926, 943, 944, 945, 946, 947, 948, 949, 950, 951, 970, 971, 1051, 1157, 1201, 1318, 1363, 1398, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1490, 1539, 1540, 1551, 1552, 1583, 1584, 1604, 1605, 1615, 1616, 1617, 1633, 1634, 1742, 1743, 1908, 1909, 1917 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1917, "ccnet_original_nlines": 68, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.20338982343673706, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.08757062256336212, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.19491524994373322, "rps_doc_frac_unique_words": 0.5451263785362244, "rps_doc_mean_word_length": 5.505414962768555, "rps_doc_num_sentences": 15, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.678826332092285, "rps_doc_word_count": 277, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0.09704917669296265, "rps_doc_frac_chars_dupe_6grams": 0.05114753916859627, "rps_doc_frac_chars_dupe_7grams": 0.05114753916859627, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.031475409865379333, "rps_doc_frac_chars_top_3gram": 0.03344262018799782, "rps_doc_frac_chars_top_4gram": 0.05114753916859627, "rps_doc_books_importance": -168.7216033935547, "rps_doc_books_importance_length_correction": -168.72158813476562, "rps_doc_openwebtext_importance": -73.61692810058594, "rps_doc_openwebtext_importance_length_correction": -73.61692810058594, "rps_doc_wikipedia_importance": -68.82392120361328, "rps_doc_wikipedia_importance_length_correction": -68.82392120361328 }, "fasttext": { "dclm": 0.00013578000653069466, "english": 0.7941374182701111, "fineweb_edu_approx": 0.8915936946868896, "eai_general_math": 0.0007286699838005006, "eai_open_web_math": 0.06265532970428467, "eai_web_code": 0.00015675999748054892 } }
{ "free_decimal_correspondence": { "primary": { "code": "621.3172", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } }, "secondary": { "code": "621.317", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "3", "label": "Reference/Encyclopedic/Educational" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "4", "label": "Missing Images or Figures" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "4", "label": "Highly Correct" }, "secondary": { "code": "6", "label": "Not Applicable/Indeterminate" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-2,955,144,397,254,079,500
Wimbledon 2015: Men singles semi-finals Novak Djokovic, Roger Federer,Andy Murray and Richard Gasquet enters in semi-finals  As the quarter-final of Wimbledon 2015 is over, out of top four seeded three advances to semi-finals. None of them struggled to reach in the semis. But No. 4 seed Stan Wawrinka was eliminated by 21 seeded Richard Gasquest in quarter-finals match. 2015 Wimbledon scores and results of Men singles No. 1 Novak Djokovic def. No. 9 Marin Cilic, 6-4, 6-4, 6-4 No. 2 Roger Federer def. No. 12 Gilles Simon, 6-3, 7-5, 6-2 No. 3 Andy Murray def. Vasek Pospisil, 6-4, 7-5, 6-4 No. 21 Richard Gasquet def. No. 4 Stan Wawrinka, 6-4, 4-6, 3-6, 6-4, 11-9 semifinals wimbledon Roger Federe vs Andy Murry   British No1 Andy Murry beats Canadian Vasek Pospisil to reach semi-finals. The 2013 champion wins in straight sets and now he will face 17-time slam champion Roger Federer in semi finals match who defeated No. 12 Gilles Simon by 6-3, 7-5, 6-2 in quarter finals. Win in the Wimbledon 2015 Quarter finals was his 150th grand slam victory. Murray’s said: I felt like I played some good stuff. I tried to change my return position at the end of the second set which made him think a bit. It was difficult when we stopped a couple of times for the rain so I was pleased considering that. smifinals wimbledon djokovic vs Richard Gasquet Top seed Novak Djokovic will play Frenchman Richard Gasquet in the Wimbledon semi-finals. Djokovic beats Croat Marin Cilic by 6-4 6-4 6-4. Gasquet defeated 4th seeded Stan Wawrinka in an exciting five-set match. Wimbledon 2015 : order of play of 9 July   full Result of day nine of Wimbledon 2015    Facebook Comments vin Leave a Reply Your email address will not be published. Required fields are marked *
{ "url": "http://www.sportsjuggle.com/tennis-2/wimbledon-2015-men-singles-semi-finals/", "source_domain": "www.sportsjuggle.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "66447", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:ACHFENERYHNSQK2V7MHZZBG3Q2LUMSPT", "WARC-Concurrent-To": "<urn:uuid:67b0ae38-af0d-4df5-a82c-124cd972a2a3>", "WARC-Date": "2019-10-14T02:36:34Z", "WARC-IP-Address": "23.229.193.231", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:NHJ2TC5KLIPG5Q4XT2ACQ3Z3HNWOEFC6", "WARC-Record-ID": "<urn:uuid:70ebe2dd-99b8-41f6-b131-1d932495f1a8>", "WARC-Target-URI": "http://www.sportsjuggle.com/tennis-2/wimbledon-2015-men-singles-semi-finals/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:ac95c9a3-63d6-4fe9-b723-40fe030bd801>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 40, 41, 126, 127, 374, 375, 424, 483, 543, 596, 670, 671, 692, 719, 720, 722, 723, 1060, 1061, 1076, 1077, 1308, 1309, 1329, 1357, 1358, 1570, 1571, 1612, 1613, 1615, 1616, 1661, 1662, 1680, 1681, 1685, 1686, 1700, 1701 ], "line_end_idx": [ 40, 41, 126, 127, 374, 375, 424, 483, 543, 596, 670, 671, 692, 719, 720, 722, 723, 1060, 1061, 1076, 1077, 1308, 1309, 1329, 1357, 1358, 1570, 1571, 1612, 1613, 1615, 1616, 1661, 1662, 1680, 1681, 1685, 1686, 1700, 1701, 1771 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1771, "ccnet_original_nlines": 40, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.19756098091602325, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.009756100364029408, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3365853726863861, "rps_doc_frac_unique_words": 0.5433333516120911, "rps_doc_mean_word_length": 4.556666851043701, "rps_doc_num_sentences": 27, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.795912742614746, "rps_doc_word_count": 300, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.04754938185214996, "rps_doc_frac_chars_top_3gram": 0.02194586955010891, "rps_doc_frac_chars_top_4gram": 0.02194586955010891, "rps_doc_books_importance": -155.2297821044922, "rps_doc_books_importance_length_correction": -147.87368774414062, "rps_doc_openwebtext_importance": -94.79286193847656, "rps_doc_openwebtext_importance_length_correction": -94.79286193847656, "rps_doc_wikipedia_importance": -58.10942840576172, "rps_doc_wikipedia_importance_length_correction": -55.55864334106445 }, "fasttext": { "dclm": 0.0005878200172446668, "english": 0.9171476364135742, "fineweb_edu_approx": 0.8516775369644165, "eai_general_math": 3.6000000136482413e-7, "eai_open_web_math": 0.10876458883285522, "eai_web_code": -0.000010009999641624745 } }
{ "free_decimal_correspondence": { "primary": { "code": "796.35702", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } }, "secondary": { "code": "796.357", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "Sports and Athletics" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "6", "label": "Content Listing" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-3,024,998,362,045,242,000
The Most Medicated Country In The World: 46% Of Americans Have Taken A Pharmaceutical Drug Within The Last 30 Days If it seems like about half the country is on drugs, that is because it is actually true.  According to a new survey from the National Center for Health Statistics, almost half of all Americans have taken a pharmaceutical drug within the past 30 days, and that officially makes us “the most medicated country in the world”.  And needless to say, those dealing these drugs are becoming exceedingly wealthy at our expense.  The average American spends $1,200 a year on prescription drugs, but of course many Americans spend far more than that and others spend nothing at all.  In recent years there has been a tremendous backlash against the big pharmaceutical corporations, because many of them have become exceedingly greedy.  As you will see below, prices have been raised on 650 different drugs this year alone.  Once they get their claws into you, the pharmaceutical giants want to get every last penny out of you that they possibly can. (Read More...) Shocking New Study Finds That 137 Million Americans Suffered “Medical Financial Hardship In The Past Year” The healthcare system in the United States is deeply broken, and it is causing massive financial pain for millions of American families.  Previously, I have published articles where I talked about how medical bills are the primary factor in two-thirds of all personal bankruptcies in the United States, and that Americans had to borrow a whopping 88 billion dollars last year to cover medical costs.  This is happening even though more than 90 percent of all Americans have some form of health coverage.  Thanks to soaring deductibles and health insurance policies that are absolutely riddled with loopholes, more Americans than ever are being wiped out by medical bills.  And now a brand new study that was conducted by researchers from the American Cancer Society has discovered that 137.1 million Americans suffered “medical financial hardship in the past year”.  The following comes directly from the study(Read More...) After You Read What They Did To One Elderly Couple, You Will Question Everything About Our Barbaric Healthcare System Most Americans are just a single illness away from losing everything.  In our country today, medical bills are the number one reason why people go bankrupt, and many of them even had “good health insurance”.  As you will see below, even if you have “good health insurance” you can still be stuck with a $100,000 bill for a single hospital stay.  Our healthcare system does not work, it is absolutely barbaric, and both political parties have completely dropped the ball.  The big health insurance corporations now dominate the entire industry, and they have become masters at finding loopholes that will allow them to wiggle out from having to pay claims.  The entire purpose of these companies is to take in as much money as possible and to pay out as little as they can, and in the process millions upon millions of American families are being financially ruined. (Read More...) Healthcare Spending Now Accounts For Almost One-Fifth Of The Entire U.S. Economy Everybody agrees that healthcare costs are way too high.  Back in 1960, healthcare spending accounted for approximately 5 percent of GDP, and by 2020 it is being projected that healthcare spending will account for 20 percent of GDP.  And when you break those numbers down into actual dollars, they become even more staggering.  Back in 1960, an average of $146 was spent on healthcare per person for the entire year, but today that number has skyrocketed to $9,990.  On a per capita basis, we spend far more than anyone else in the world on healthcare.  In fact, we spend almost twice as much as most other industrialized nations on a per capita basis.  Something has gone terribly wrong, and we desperately need to get this fixed. (Read More...) Thanks Obamacare! Health Insurance Premiums Are Projected To Spike Dramatically Once Again In 2018 Are you ready for your health insurance premiums to go up again?  Ever since Obamacare became law, health insurance premiums have been rising dramatically year after year.  In 2016, one study found that the average Obamacare premium rose by about 24 percent, and similar increases have been seen all around the nation in 2017.  As you will see below, large premium hikes are on tap for 2018 as well, and rates are going to continue to rise until lawmakers finally do something about this nightmare. (Read More...) The Elite Are Attempting To Convince Us That Killing Off Our Sick Grandparents Is Cool And Trendy What should be done with elderly Americans when they become very seriously ill?  Should we try to save their lives or should we just let them die?  Unfortunately, there is a growing consensus among the “intellectual elite” that most elderly people are not going to have a high enough “quality of life” to justify the expense of costly life saving procedures.  This philosophy is now being promoted very heavily through mainstream news outlets, in our television shows and in big Hollywood movies.  The elite are attempting to convince us that killing off our sick grandparents is cool and trendy.  We are being told that “pulling the plug” on grandma and grandpa is compassionate (because it will end their suffering), that it is good for the environment and that it is even good for the economy.  We are being told that denying life saving treatments to old people will dramatically reduce health care costs and make the system better for all of us. We are being told that it is not “efficient” for health insurance companies to shell out $100,000 for an operation that may extend the life of an elderly person by 6 months.  But the truth is that all of this is part of a larger agenda that the elite are attempting to advance.  As I have written about previously, the elite love death, and they truly believe that reducing the population is good for society and good for the planet.  Sadly, population control propaganda has reached a fever pitch in recent months. (Read More...) Do NOT follow this link or you will be banned from the site!
{ "url": "http://endoftheamericandream.com/archives/tag/health-care-costs", "source_domain": "endoftheamericandream.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "79169", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:2UB6EUTMQVOW3FEY3VJ6TEGNWWHGDUMU", "WARC-Concurrent-To": "<urn:uuid:ba6ed98d-5913-48cd-907d-5d7cf317afe9>", "WARC-Date": "2019-10-21T11:10:59Z", "WARC-IP-Address": "162.241.155.92", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:J26A5WOCFQ7IDFTN263XK7HUC7NPEOM7", "WARC-Record-ID": "<urn:uuid:d1abf847-cc6c-444f-828d-b4798ed58600>", "WARC-Target-URI": "http://endoftheamericandream.com/archives/tag/health-care-costs", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:4adda31c-7325-4c93-89be-dd9e663a8190>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 115, 116, 1072, 1073, 1180, 1181, 2106, 2107, 2225, 2226, 3107, 3108, 3189, 3190, 3937, 3938, 4037, 4038, 4552, 4553, 4651, 4652, 6134, 6135 ], "line_end_idx": [ 115, 116, 1072, 1073, 1180, 1181, 2106, 2107, 2225, 2226, 3107, 3108, 3189, 3190, 3937, 3938, 4037, 4038, 4552, 4553, 4651, 4652, 6134, 6135, 6195 ] }
{ "red_pajama_v2": { "ccnet_original_length": 6195, "ccnet_original_nlines": 24, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.42540493607521057, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.007672629784792662, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.13128730654716492, "rps_doc_frac_unique_words": 0.413859486579895, "rps_doc_mean_word_length": 4.794995307922363, "rps_doc_num_sentences": 51, "rps_doc_symbol_to_word_ratio": 0.005115089938044548, "rps_doc_unigram_entropy": 5.490411758422852, "rps_doc_word_count": 1039, "rps_doc_frac_chars_dupe_10grams": 0.05901243910193443, "rps_doc_frac_chars_dupe_5grams": 0.12003211677074432, "rps_doc_frac_chars_dupe_6grams": 0.07747892290353775, "rps_doc_frac_chars_dupe_7grams": 0.07747892290353775, "rps_doc_frac_chars_dupe_8grams": 0.07747892290353775, "rps_doc_frac_chars_dupe_9grams": 0.05901243910193443, "rps_doc_frac_chars_top_2gram": 0.008028900250792503, "rps_doc_frac_chars_top_3gram": 0.005419509951025248, "rps_doc_frac_chars_top_4gram": 0.007226009853184223, "rps_doc_books_importance": -552.3189697265625, "rps_doc_books_importance_length_correction": -552.3189697265625, "rps_doc_openwebtext_importance": -298.40386962890625, "rps_doc_openwebtext_importance_length_correction": -298.40386962890625, "rps_doc_wikipedia_importance": -248.45101928710938, "rps_doc_wikipedia_importance_length_correction": -248.45101928710938 }, "fasttext": { "dclm": 0.007014160044491291, "english": 0.959377646446228, "fineweb_edu_approx": 1.9469517469406128, "eai_general_math": 0.023677710443735123, "eai_open_web_math": 0.11671614646911621, "eai_web_code": 0.0008449599845334888 } }
{ "free_decimal_correspondence": { "primary": { "code": "362.1", "labels": { "level_1": "Social sciences", "level_2": "Social service and Societies", "level_3": "Hospitals, Asylums, and Human services" } }, "secondary": { "code": "338.4", "labels": { "level_1": "Social sciences", "level_2": "Economics", "level_3": "Industries, Prices, and Microeconomics" } } }, "bloom_cognitive_process": { "primary": { "code": "5", "label": "Evaluate" }, "secondary": { "code": "2", "label": "Understand" } }, "bloom_knowledge_domain": { "primary": { "code": "2", "label": "Conceptual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "1", "label": "News/Editorial" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "14", "label": "News Article" }, "secondary": { "code": "16", "label": "Personal Blog" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "2", "label": "Partially Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,387,190,164,994,440,700
UK'S NUMBER ONE BATHROOM BASIN RETAILER UK'S NUMBER ONE BATHROOM BASIN RETAILER Grey Wash Solid Oak 600mm Bathroom Cabinet + Matt Round Deva Basin Set ALTA60G In Stock - Free Delivery For Mainland UK - Next Day Delivery From Only £6.99 - 30 Day Money Back Guarantee - UK's Number One Bathroom Basin Seller - Speedy Delivery Service On All Products Single Door Natual Oak GREY WASH Vanity  Pre-Assembled Cabinet - No Flat Pack Great Family Size  Internal Shelf - Loads of Storage Fabulous Finish and High Quality Was: Regular Price £749.00 Now only: Special Price £379.00 Please select a product option Qty:   We are proud to offer this stunning round solid surface basin and grey wash solid oak bathroom cabinet as a combination purchase,  it really is a touch of luxury for your bathroom.  The BRAND NEW Range of HIGH QUALITY GREY WASH SOLID OAK Contemporary bathroom furniture is a real winner for any bathroom colour and style.  Easy to install, it is a winner on all fronts. This solid oak cabinet is finished with a GREY WASH .. a highly popular colour.  Unlike a painted finish, the natural grain is visible with our GREY WASH cabinets - and is a new addition to our range.   The external finish on the grey wash cabinets has a rustic, distressed, shabby chic feel which is very popular and compliments many colour schemes.  The interior finish on the cabinet is not to the same standard as the external finish and whilst this will not be very noticeable once the cabinet has been filled with towels, bottles and bathroom accessories, we are bringing it to your attention and are selling the cabinet at this reduced introductory price to compensate for this.  If you require sample photos, then please contact the office. The ALTA Single Door Unit comes complete and undrilled to allow flexibility with basin and tap placement .  The stunning Round Stone Resin basin which is supplied with this oak cabinet is a generous family size and with its matt finish and curves it really is the perfect pairing for any bathroom setting. PRICE INCLUDED CABINET + BASIN + CHOICE OF WALL TAP + MATCHING WASTE This premier quality Cabinet Unit is handcrafted throughout from Solid Oak with Single Door Cabinet with internal shelf . Cabinet Size Width: 60cm Height: 80cm Depth: 50cm UK Mainland Delivery Included in Price  Write Your Own Review You're reviewing:Grey Wash Solid Oak 600mm Bathroom Cabinet + Matt Round Deva Basin Set ALTA60G Your Rating   Please find below Clickbasin Delivery Information:   Items under 30kg:   Bathroom Basins, Cloakroom Oak Cabinets, Mirrors and Wall Units. Despatched next working day following order being placed.  Fully trackable. Free Delivery:   Delivered within 24 / 48 hours of dispatch via Yodel anytime between 8am and 8pm Monday to Friday. Next Day Delivery:   £6.99 Available for Orders placed before 12 Noon.  DPD will email/text with a one hour timeslot on the morning of delivery. Saturday Delivery Option:   £8.49 Available for Orders placed before 12 Noon.   Items over 30kg:   Large Oak Cabinets over 60cm Wide, Echo Basin and Deco or Leno Wall Hung Cabinets. Single Person Pallet Delivery Service Monday to Friday Clickbasin Customer Services will ring to confirm your preferred delivery date as the item needs to be checked and signed for on delivery. Option at checkout to upgrade to 24 hour delivery at a cost of £35.00 Saturday delivery can be arranged at a charge of £40 - please discuss with customer service All products purchased on www.clickbasin.co.uk will be delivered FREE OF CHARGE to addresses in Mainland UK unless upgraded delivery selected.  However, certain areas are liable to a surcharge, these areas can be found along with full Delivery Terms and Conditions on the following page; https://www.clickbasin.co.uk/delivery   Please call us on 01772 671354 to discuss any special requirements you may require and we will do our best to assist you with these. Please find below Clickbasin Return Details    Before Dispatch A Change to your Order or Cancellation prior to goods being dispatched is not a problem. Please let us know before 11am if you have changed your mind.  If the goods have not been dispatched, we will action the refund in full or change your order.   After Dispatch If you decide to change your mind and don’t wish to keep all or parts of your order, we offer a 30 Day Money Back Guarantee and the full details of this can be found at the following:  https://www.clickbasin.co.uk/our-guarantee We would also like customers to note that all goods that have been delivered and then returned back to us will be subject to a 10% restocking charge.  Full details can be found at the following:  https://www.clickbasin.co.uk/online-terms   If you do have any questions about cancellation, return or refund of any items, please feel free to call us on 01772 671354
{ "url": "https://www.clickbasin.co.uk/due-mid-march-2019-grey-wash-solid-oak-single-door-bathroom-basin-cabinet-alta60g-4.html", "source_domain": "www.clickbasin.co.uk", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "203060", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:SQ2QMFEWPP34LOV53OZXLLKMRVJZAWOL", "WARC-Concurrent-To": "<urn:uuid:98be20a8-6ea1-444e-af22-56db3114c703>", "WARC-Date": "2019-10-13T22:32:46Z", "WARC-IP-Address": "185.217.41.99", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:J6FIX7KT7VMR3S7XIPMKP3MXAWN3N5A4", "WARC-Record-ID": "<urn:uuid:f184c84a-07b7-43f0-862e-5aad98f47c51>", "WARC-Target-URI": "https://www.clickbasin.co.uk/due-mid-march-2019-grey-wash-solid-oak-single-door-bathroom-basin-cabinet-alta60g-4.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:466b6ef4-ae5b-446e-8619-0eabbdfa9d9c>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-129.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 40, 80, 81, 160, 161, 170, 202, 238, 268, 308, 350, 351, 392, 393, 430, 431, 450, 451, 485, 486, 519, 520, 547, 579, 610, 617, 618, 619, 620, 621, 803, 804, 992, 993, 1196, 1197, 1743, 1744, 1852, 1853, 2051, 2052, 2121, 2122, 2244, 2245, 2258, 2259, 2271, 2272, 2285, 2286, 2298, 2299, 2339, 2340, 2362, 2458, 2470, 2472, 2473, 2524, 2525, 2527, 2528, 2613, 2614, 2690, 2691, 2807, 2808, 2953, 2954, 3032, 3033, 3035, 3036, 3138, 3139, 3194, 3195, 3334, 3335, 3405, 3406, 3498, 3499, 3825, 3826, 3828, 3829, 3962, 3963, 4008, 4009, 4011, 4012, 4028, 4029, 4276, 4277, 4279, 4280, 4295, 4296, 4524, 4525, 4763, 4764, 4766, 4767 ], "line_end_idx": [ 40, 80, 81, 160, 161, 170, 202, 238, 268, 308, 350, 351, 392, 393, 430, 431, 450, 451, 485, 486, 519, 520, 547, 579, 610, 617, 618, 619, 620, 621, 803, 804, 992, 993, 1196, 1197, 1743, 1744, 1852, 1853, 2051, 2052, 2121, 2122, 2244, 2245, 2258, 2259, 2271, 2272, 2285, 2286, 2298, 2299, 2339, 2340, 2362, 2458, 2470, 2472, 2473, 2524, 2525, 2527, 2528, 2613, 2614, 2690, 2691, 2807, 2808, 2953, 2954, 3032, 3033, 3035, 3036, 3138, 3139, 3194, 3195, 3334, 3335, 3405, 3406, 3498, 3499, 3825, 3826, 3828, 3829, 3962, 3963, 4008, 4009, 4011, 4012, 4028, 4029, 4276, 4277, 4279, 4280, 4295, 4296, 4524, 4525, 4763, 4764, 4766, 4767, 4890 ] }
{ "red_pajama_v2": { "ccnet_original_length": 4890, "ccnet_original_nlines": 111, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.3201707601547241, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.053361788392066956, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.150480255484581, "rps_doc_frac_unique_words": 0.4231258034706116, "rps_doc_mean_word_length": 4.92249059677124, "rps_doc_num_sentences": 46, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 5.341874599456787, "rps_doc_word_count": 787, "rps_doc_frac_chars_dupe_10grams": 0.030975740402936935, "rps_doc_frac_chars_dupe_5grams": 0.10712441802024841, "rps_doc_frac_chars_dupe_6grams": 0.07898812741041183, "rps_doc_frac_chars_dupe_7grams": 0.04956118017435074, "rps_doc_frac_chars_dupe_8grams": 0.030975740402936935, "rps_doc_frac_chars_dupe_9grams": 0.030975740402936935, "rps_doc_frac_chars_top_2gram": 0.01445533987134695, "rps_doc_frac_chars_top_3gram": 0.012390290386974812, "rps_doc_frac_chars_top_4gram": 0.015487870201468468, "rps_doc_books_importance": -422.5506286621094, "rps_doc_books_importance_length_correction": -422.5506286621094, "rps_doc_openwebtext_importance": -240.70347595214844, "rps_doc_openwebtext_importance_length_correction": -240.70347595214844, "rps_doc_wikipedia_importance": -203.8169708251953, "rps_doc_wikipedia_importance_length_correction": -203.8169708251953 }, "fasttext": { "dclm": 0.00005400000009103678, "english": 0.8822057843208313, "fineweb_edu_approx": 0.5519751906394958, "eai_general_math": 0.0000953700000536628, "eai_open_web_math": 0.054692450910806656, "eai_web_code": -0.000003580000111469417 } }
{ "free_decimal_correspondence": { "primary": { "code": "690.89", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "-1", "label": "Abstain" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v1": { "primary": { "code": "15", "label": "E-Commerce/Marketplace" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "4", "label": "Missing Images or Figures" }, "secondary": { "code": "0", "label": "No missing content" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-6,609,089,996,365,116,000
DV Info Net DV Info Net (https://www.dvinfo.net/forum/) -   JVC GY-HD Series Camera Systems (https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/) -   -   FREE upgrade for U.S. owners to "A" Version (https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/63294-free-upgrade-u-s-owners-version.html) Stephen L. Noe March 27th, 2006 09:23 PM Quote: Originally Posted by Stephen L. Noe Progress report. Camera was recieved by JVC today and it's now in the system. I sent the camera out on Monday from the Chicago area (USPS Priority w/insurance) and they've input it into the system today. I also ordered the confirmation on when the camera was recieved from the USPS, however I have not received the confirmation yet. Progress report. I sent an HD-100 last monday (March 20) and now it's exactly 7 days later and they've updated the camera on their website and "dispatched" it via UPS today. The tracking number and UPS information states the camera should be delivered on the 31st. If that holds true then the entire process takes 12 days when the camera is sent from Chicago... Carl Hicks March 29th, 2006 11:36 AM Update turn-around time   All: Please remember that the stated 3 day turn-around goal is only if the unit is sent to the Cypress, CA facility, as the website states. If you send it to another JVC Pro service facility, it may take longer. Also, if there are any other issues that you ask to be looked at, it will take longer. Also, remember shipping transit time to & from JVC. Regards, Carl Nate Weaver March 29th, 2006 05:58 PM Well, i just got my cam back from Cypress. There's 2 new menu items now, one about battery display in LCD/VF menu (page 2), and one about how the rec trigger in the firewire stream is timed vs. the tape mech. For curiosity's sake, here's the numbers: sys cpu c1590 v0401 cam cpu c1591 v0203 vtr cpu c1594 v0120 enc cpu L1187 v0108 package c1615 v0202 fpga2 c1595 v0202 fpga3 c1596 v0101 fpga4 c1597 v0106 Almost all the numbers in the "V" column have incremented compared to other numbers posted on the board here. I myself wouldn't freak out if you get your camera back and have different numbers than I, I guarantee that there's more to know about this than just simply "my numbers are different, they must have screwed up". Just FYI... [update: I just found by holding STOP and MENU down for 5secs you can access a menu to adjust Anton Bauer battery voltage cutoffs.] Daniel Patton March 29th, 2006 06:36 PM Thanks Nate, I hope more people post the new firmware numbers as well. I have been holding back from sending our camera in. I need to wait until I know we can be without, for a weeks time. Besides, none of the issues that the firmware fixes are criticle for us right now, or so I hope. Do we have a solid list of everything that this update fixes / adds, like your new found menu items? Carl Hicks March 29th, 2006 08:50 PM Firmware versions   Keep in mind that depending on when your GYHD100U was built, there are various combinations of hardware and firmware that will be installed to accomplish "A" upgrades. So, even after everyone's "A" upgrades are done, the firmware versions may not match exactly. The goal is for everyone to have the full functionality of the "A" version, whatever that takes. Carl John Mitchell March 29th, 2006 09:01 PM Quote: Originally Posted by Carl Hicks Keep in mind that depending on when your GYHD100U was built, there are various combinations of hardware and firmware that will be installed to accomplish "A" upgrades. Carl Carl can you specify whether any other hardware upgrades may be required apart from the one mentioned by Marc Colemont (in this thread) or is that "highly secret stuff"? Carl Hicks March 29th, 2006 09:17 PM John, I don't have specifics on the hardware updates. I'm not privy to the details on that in my position. It's nothing major, and may or may not be required, based on when the camera was built. Daniel Patton March 29th, 2006 09:21 PM Got it Carl, thanks for the info. You know us anal-retentive techie camera geeks, we just like to analyze everything regardless. ;) Thanks again for all your help this last month by the way. I have been editing down the results from that shoot for a couple weeks now. The production crew keeps praising the footage and how well of a job the JVC did. It kills me not to show it off early around here, but I ike my job too much to risk it. Carl Hicks March 29th, 2006 09:30 PM I look forward to seeing some samples eventually. Nate Weaver March 29th, 2006 11:30 PM Quote: Originally Posted by Carl Hicks Keep in mind that depending on when your GYHD100U was built, there are various combinations of hardware and firmware that will be installed to accomplish "A" upgrades. So, even after everyone's "A" upgrades are done, the firmware versions may not match exactly. That's kinda what I was getting at on the tail end of my post. In one way, posting numbers for people to compare is pointless, because I highly suspected it was much more complicated than just "these are the new versions" and if you don't have them it's wrong. So sorry for making your job more difficult that way, but I wanted to post my info just for the sake of science. Chris Basmas March 30th, 2006 12:20 AM From a technical point of view, if every HD100 has the same hardware components, then all hardware and firmware numbers should be the same. Otherwise is not the same camera. Chris Hurd March 30th, 2006 12:44 AM Sorry but no, you do not know that to be a fact. When Carl says that the firmware versions may not match exactly, but that everyone will have whatever it takes to complete the "A" model upgrade, then we're going to take that to be true. There may be one firmware version to get a Sep. 2005 camera upgraded to A status, there may be another version to get a Feb. 2006 camera upgraded to A status, and so on. Please, no conspiracy theories -- thanks in advance, Chris Basmas March 30th, 2006 01:47 AM Then the Sep.2005 camera and the Feb.2006 camera did't have the same hardware components. But i agree the end result is what counts, and JVC this time is serious about helping its customers. Chris Hurd March 30th, 2006 01:49 AM Yes inded, I'm with ya on that one. Stephen L. Noe March 31st, 2006 06:10 PM Camera is back in my hands   OK, Today the UPS carrier brought back an HD-100 to me that has been "A'd" The entire process took 12 days from Chicago. I'm wasting no time getting it back into production. end of story.... All times are GMT -6. The time now is 06:03 PM. DV Info Net -- Real Names, Real People, Real Info! 1998-2019 The Digital Video Information Network
{ "url": "https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/63294-free-upgrade-u-s-owners-version-6-print.html", "source_domain": "www.dvinfo.net", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "22795", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:VLSUIGOT3C74Y7TZMLD7HS6BDWZT6545", "WARC-Concurrent-To": "<urn:uuid:d743ed84-bd20-4bca-9a6c-9164be9c21e4>", "WARC-Date": "2019-10-17T00:03:15Z", "WARC-IP-Address": "162.254.117.25", "WARC-Identified-Payload-Type": "application/xhtml+xml", "WARC-Payload-Digest": "sha1:QYWM5NVZJJVV3ITBYSJJ3FECAUMNC5E7", "WARC-Record-ID": "<urn:uuid:0b7754e5-8091-42de-abc8-6035e16dcd69>", "WARC-Target-URI": "https://www.dvinfo.net/forum/jvc-gy-hd-series-camera-systems/63294-free-upgrade-u-s-owners-version-6-print.html", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:d26a8085-b277-4e99-a746-2ed5e1b4e39d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-179.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 12, 13, 57, 157, 315, 316, 357, 358, 365, 366, 402, 419, 420, 736, 737, 754, 755, 1100, 1101, 1138, 1139, 1163, 1165, 1170, 1171, 1465, 1466, 1518, 1519, 1533, 1534, 1572, 1573, 1782, 1783, 1825, 1826, 1846, 1866, 1886, 1906, 1907, 1927, 1945, 1963, 1981, 1982, 2304, 2305, 2317, 2318, 2450, 2451, 2491, 2492, 2563, 2564, 2779, 2780, 2881, 2882, 2919, 2920, 2938, 2940, 3202, 3203, 3300, 3301, 3306, 3307, 3347, 3348, 3355, 3356, 3388, 3556, 3561, 3562, 3732, 3733, 3770, 3771, 3966, 3967, 4007, 4008, 4042, 4043, 4141, 4142, 4448, 4449, 4486, 4487, 4537, 4538, 4576, 4577, 4584, 4585, 4617, 4879, 4880, 5141, 5142, 5255, 5256, 5295, 5296, 5470, 5471, 5508, 5509, 5558, 5559, 5747, 5748, 5971, 5972, 6011, 6012, 6102, 6153, 6203, 6204, 6241, 6242, 6278, 6279, 6320, 6321, 6348, 6350, 6524, 6525, 6542, 6543, 6544, 6592, 6593, 6644 ], "line_end_idx": [ 12, 13, 57, 157, 315, 316, 357, 358, 365, 366, 402, 419, 420, 736, 737, 754, 755, 1100, 1101, 1138, 1139, 1163, 1165, 1170, 1171, 1465, 1466, 1518, 1519, 1533, 1534, 1572, 1573, 1782, 1783, 1825, 1826, 1846, 1866, 1886, 1906, 1907, 1927, 1945, 1963, 1981, 1982, 2304, 2305, 2317, 2318, 2450, 2451, 2491, 2492, 2563, 2564, 2779, 2780, 2881, 2882, 2919, 2920, 2938, 2940, 3202, 3203, 3300, 3301, 3306, 3307, 3347, 3348, 3355, 3356, 3388, 3556, 3561, 3562, 3732, 3733, 3770, 3771, 3966, 3967, 4007, 4008, 4042, 4043, 4141, 4142, 4448, 4449, 4486, 4487, 4537, 4538, 4576, 4577, 4584, 4585, 4617, 4879, 4880, 5141, 5142, 5255, 5256, 5295, 5296, 5470, 5471, 5508, 5509, 5558, 5559, 5747, 5748, 5971, 5972, 6011, 6012, 6102, 6153, 6203, 6204, 6241, 6242, 6278, 6279, 6320, 6321, 6348, 6350, 6524, 6525, 6542, 6543, 6544, 6592, 6593, 6644, 6691 ] }
{ "red_pajama_v2": { "ccnet_original_length": 6691, "ccnet_original_nlines": 142, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.37061548233032227, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.05823957920074463, "rps_doc_frac_lines_end_with_ellipsis": 0.02097902074456215, "rps_doc_frac_no_alph_words": 0.21839840710163116, "rps_doc_frac_unique_words": 0.3714531362056732, "rps_doc_mean_word_length": 4.436801433563232, "rps_doc_num_sentences": 75, "rps_doc_symbol_to_word_ratio": 0.001985440030694008, "rps_doc_unigram_entropy": 5.495151519775391, "rps_doc_word_count": 1163, "rps_doc_frac_chars_dupe_10grams": 0.1211240291595459, "rps_doc_frac_chars_dupe_5grams": 0.20251938700675964, "rps_doc_frac_chars_dupe_6grams": 0.12829457223415375, "rps_doc_frac_chars_dupe_7grams": 0.12829457223415375, "rps_doc_frac_chars_dupe_8grams": 0.1211240291595459, "rps_doc_frac_chars_dupe_9grams": 0.1211240291595459, "rps_doc_frac_chars_top_2gram": 0.015697669237852097, "rps_doc_frac_chars_top_3gram": 0.022674420848488808, "rps_doc_frac_chars_top_4gram": 0.013953490182757378, "rps_doc_books_importance": -734.0731201171875, "rps_doc_books_importance_length_correction": -734.0731201171875, "rps_doc_openwebtext_importance": -404.0584716796875, "rps_doc_openwebtext_importance_length_correction": -404.0584716796875, "rps_doc_wikipedia_importance": -341.1804504394531, "rps_doc_wikipedia_importance_length_correction": -341.1804504394531 }, "fasttext": { "dclm": 0.0006833099760115147, "english": 0.946962833404541, "fineweb_edu_approx": 1.0180821418762207, "eai_general_math": 0.07726746797561646, "eai_open_web_math": 0.11808676272630692, "eai_web_code": 0.0009481299784965813 } }
{ "free_decimal_correspondence": { "primary": { "code": "621.392", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Engineering", "level_3": "Mechanical engineering and Machinery" } }, "secondary": { "code": "-1", "labels": { "level_1": "", "level_2": "", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "5", "label": "Social/Forum" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "0", "label": "No Artifacts" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "18", "label": "Q&A Forum" }, "secondary": { "code": "8", "label": "Documentation" } }, "reasoning_depth": { "primary": { "code": "2", "label": "Basic Reasoning" }, "secondary": { "code": "3", "label": "Intermediate Reasoning" } }, "technical_correctness": { "primary": { "code": "3", "label": "Mostly Correct" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "2", "label": "High School Level" }, "secondary": { "code": "3", "label": "Undergraduate Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
4,667,218,258,627,501,000
Restaurants near Belfast City Hall 2 people 13 Oct 2019 October 2019 Mon Tue Wed Thu Fri Sat Sun 30 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 2 3 4 5 6 7 8 9 10 20:30 Price Cuisines(20 of 41) 158 restaurants available nearby Hell Cat Maggies 1. Hell Cat Maggies Reviews Coming Soon $$$$ British | Randalstown Home Restaurant 2. Home Restaurant 4.3 204 reviews $$$$ International | BelfastBooked 8 times todayBeautiful meal in a warm, lively atmosphere. Afternoon Tea at Solo Restaurant 3. Afternoon Tea at Solo Restaurant Reviews Coming Soon $$$$ British | Belfast Welcome to Afternoon Tea at Solo Restaurant , we look forward to serving you. Mumbai Milano 4. Mumbai Milano Reviews Coming Soon $$$$ Indian | Belfast At Mumbai Milano we’ve created a beautiful, authentic dining experience by taking the best of Indian and Italian food culture to create a delicious fusion menu. By bringing the best fresh local Northern Ireland produce together with the rich herbs, spices and cooking techniques from across India... The Allotment Bistro 5. The Allotment Bistro 3.8 3 reviews $$$$ Breakfast | BelfastFirst time and what a great night. The menu selection and variety was excellent. I had plaice and my friend had sirloin. The food was plentiful tasty hot and reasonably priced. The bistro has a shabby chic interior which add to the atomsphere. We also had the pleasure of engagement with chef and to... EDŌ 6. EDŌ 4.6 390 reviews $$$$ Modern European | BelfastBooked 10 times todayGot a voucher for the restaurant for my birthday and we found the staff very pleasant, helpful in telling us how to order and the ambiance was very good and the food excellent. Rusty Saddle @ 21 Howard St 7. Rusty Saddle @ 21 Howard St 4.8 8 reviews $$$$ Bar / Lounge / Bottle Service | BelfastBooked 3 times todayLovely venue for food and drinks with pleasent staff Deanes Meat Locker 8. Deanes Meat Locker Reviews Coming Soon $$$$ Steak | Belfast When you combine the sheer skill of Deanes chefs with the superb quality of the well renowned Hannan Meats and the accuracy of the Asador Grill you create a product that simply excels... and that's at the heart of Deanes Meat Locker. Deanes Love Fish 9. Deanes Love Fish Reviews Coming Soon $$$$ Seafood | Belfast Deanes Love Fish is a totally different eating out experience in Belfast. The 100 seater dining space is flooded with light from a conservatory style roof. In the informal but stylish all white interior, reminiscent of a warm summer day on the coast, you will feel welcome and relaxed the menute... Afternoon Tea at Ten Square Hotel 10. Afternoon Tea at Ten Square Hotel Reviews Coming Soon $$$$ Afternoon Tea | Belfast Afternoon Tea in The Loft, Ten Square - a delightful indulgence amongst the rooftops of Belfast, where time stands still - reassuringly traditional& irresistibly delicious. Get settled in our luxurious Loft Bar, drink in the ambience, sit back & catch up, while we serve our signature 3-tiered...
{ "url": "https://www.opentable.co.uk/landmark/restaurants-near-belfast-city-hall", "source_domain": "www.opentable.co.uk", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "246370", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:BTH2EIJAEIOAK6VQIRK2LGP5XFEYRPEE", "WARC-Concurrent-To": "<urn:uuid:1424658b-9582-4ead-bf5e-b9c6dcc0d418>", "WARC-Date": "2019-10-13T20:05:10Z", "WARC-IP-Address": "104.117.18.20", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:3YDHDWIEXV7EREMO4RBGDLCLN77MQ6AG", "WARC-Record-ID": "<urn:uuid:9c0c3659-cf74-4f34-89a9-2530f3815176>", "WARC-Target-URI": "https://www.opentable.co.uk/landmark/restaurants-near-belfast-city-hall", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:1e50698f-fa9f-4aaa-9ae1-9909d0dee7e4>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 35, 36, 45, 57, 70, 74, 78, 82, 86, 90, 94, 98, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 122, 125, 128, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 161, 164, 167, 170, 173, 176, 179, 182, 185, 187, 189, 191, 193, 195, 197, 199, 201, 203, 206, 212, 218, 237, 238, 271, 272, 289, 309, 329, 334, 356, 372, 391, 395, 407, 412, 500, 533, 569, 589, 594, 612, 690, 704, 721, 741, 746, 763, 1063, 1084, 1108, 1112, 1122, 1127, 1449, 1453, 1460, 1464, 1476, 1481, 1704, 1732, 1763, 1767, 1777, 1782, 1894, 1913, 1935, 1955, 1960, 1976, 2210, 2227, 2247, 2267, 2272, 2290, 2589, 2623, 2661, 2681, 2686, 2710 ], "line_end_idx": [ 35, 36, 45, 57, 70, 74, 78, 82, 86, 90, 94, 98, 101, 103, 105, 107, 109, 111, 113, 115, 117, 119, 122, 125, 128, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 161, 164, 167, 170, 173, 176, 179, 182, 185, 187, 189, 191, 193, 195, 197, 199, 201, 203, 206, 212, 218, 237, 238, 271, 272, 289, 309, 329, 334, 356, 372, 391, 395, 407, 412, 500, 533, 569, 589, 594, 612, 690, 704, 721, 741, 746, 763, 1063, 1084, 1108, 1112, 1122, 1127, 1449, 1453, 1460, 1464, 1476, 1481, 1704, 1732, 1763, 1767, 1777, 1782, 1894, 1913, 1935, 1955, 1960, 1976, 2210, 2227, 2247, 2267, 2272, 2290, 2589, 2623, 2661, 2681, 2686, 2710, 3006 ] }
{ "red_pajama_v2": { "ccnet_original_length": 3006, "ccnet_original_nlines": 118, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.22765599191188812, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.0050590201281011105, "rps_doc_frac_lines_end_with_ellipsis": 0.033613450825214386, "rps_doc_frac_no_alph_words": 0.26644182205200195, "rps_doc_frac_unique_words": 0.54347825050354, "rps_doc_mean_word_length": 4.654150009155273, "rps_doc_num_sentences": 32, "rps_doc_symbol_to_word_ratio": 0.008431700058281422, "rps_doc_unigram_entropy": 5.241308212280273, "rps_doc_word_count": 506, "rps_doc_frac_chars_dupe_10grams": 0.009341830387711525, "rps_doc_frac_chars_dupe_5grams": 0.08662419766187668, "rps_doc_frac_chars_dupe_6grams": 0.0331210196018219, "rps_doc_frac_chars_dupe_7grams": 0.009341830387711525, "rps_doc_frac_chars_dupe_8grams": 0.009341830387711525, "rps_doc_frac_chars_dupe_9grams": 0.009341830387711525, "rps_doc_frac_chars_top_2gram": 0.035668790340423584, "rps_doc_frac_chars_top_3gram": 0.04331209883093834, "rps_doc_frac_chars_top_4gram": 0.02292994037270546, "rps_doc_books_importance": -199.1821746826172, "rps_doc_books_importance_length_correction": -199.1821746826172, "rps_doc_openwebtext_importance": -101.84583282470703, "rps_doc_openwebtext_importance_length_correction": -101.84583282470703, "rps_doc_wikipedia_importance": -114.50712585449219, "rps_doc_wikipedia_importance_length_correction": -114.50712585449219 }, "fasttext": { "dclm": 0.0006614900194108486, "english": 0.868063747882843, "fineweb_edu_approx": 0.8465389013290405, "eai_general_math": 0.0001448399998480454, "eai_open_web_math": 0.04720008000731468, "eai_web_code": -0.000005960000180493807 } }
{ "free_decimal_correspondence": { "primary": { "code": "647.95", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Home economics", "level_3": "Household employees, Caterers and catering, and Real estate management" } }, "secondary": { "code": "910.41", "labels": { "level_1": "History and Geography", "level_2": "Geography and Voyages and travels", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "7", "label": "Search/Directory/Bibliography" }, "secondary": { "code": "15", "label": "E-Commerce/Marketplace" } }, "extraction_artifacts": { "primary": { "code": "3", "label": "Irrelevant Content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "2", "label": "Click Here References" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "6", "label": "Content Listing" }, "secondary": { "code": "17", "label": "Product Page" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
-4,871,884,174,378,900,000
Plantation Shutter Sale in Minneapolis We love offering you the best prices on the best plantation shutter brands in Minneapolis. So, whether you’re contemplating our Polywood® or our Ovation® shutters, right now is the time to order them. How Do I Get This Plantation Shutter Discount? To get a discount on your plantation shutters, you simply have to purchase your shutters from us by scheduling an in-home consultation before the sale ends. We bring samples of our Polywood and Ovation shutters – and all their color and frame options – so you can see how they go with your décor. We measure your windows and take notice of those with special shapes. Then, we present you with a quote of what this home improvement task will cost. Next, we take all that information to our store and order your custom shutters from our manufacturing facility. Once the shutters are complete, our installers bring them to your house to be fitted precisely to your windows. And, just like that, you have charming window shutters that work effortlessly – and save you real dollars. Find out what offers are available on plantation shutters in Minneapolis: We are currently not offering any discounts in the Minneapolis market.
{ "url": "https://www.sunburstshuttersminneapolis.com/about-us/plantation-shutter-sale-in-minneapolis", "source_domain": "www.sunburstshuttersminneapolis.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "81457", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:MU435MHKXJMUUTDG7HVGYG3AUEBLIKX4", "WARC-Concurrent-To": "<urn:uuid:217cbe00-ab39-4e6d-861f-372a9bec8967>", "WARC-Date": "2019-10-14T16:28:29Z", "WARC-IP-Address": "151.139.237.32", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:TN3F7FHSWHYCH5GMY4BWLHH5BTWWVZAN", "WARC-Record-ID": "<urn:uuid:6311094f-3c0f-4fd2-9b2f-d7fc42444336>", "WARC-Target-URI": "https://www.sunburstshuttersminneapolis.com/about-us/plantation-shutter-sale-in-minneapolis", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:bc80d985-d06a-482d-9b9e-423124f1c4d7>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-97.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 39, 40, 241, 242, 289, 290, 447, 448, 738, 739, 963, 964, 1071, 1072, 1146, 1147 ], "line_end_idx": [ 39, 40, 241, 242, 289, 290, 447, 448, 738, 739, 963, 964, 1071, 1072, 1146, 1147, 1217 ] }
{ "red_pajama_v2": { "ccnet_original_length": 1217, "ccnet_original_nlines": 16, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.45652174949645996, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.004347830079495907, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.11739130318164825, "rps_doc_frac_unique_words": 0.5735294222831726, "rps_doc_mean_word_length": 4.833333492279053, "rps_doc_num_sentences": 11, "rps_doc_symbol_to_word_ratio": 0, "rps_doc_unigram_entropy": 4.49623966217041, "rps_doc_word_count": 204, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.0517241396009922, "rps_doc_frac_chars_top_3gram": 0.030425960198044777, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -90.15592193603516, "rps_doc_books_importance_length_correction": -90.15592193603516, "rps_doc_openwebtext_importance": -55.59077072143555, "rps_doc_openwebtext_importance_length_correction": -55.59061813354492, "rps_doc_wikipedia_importance": -31.707992553710938, "rps_doc_wikipedia_importance_length_correction": -31.707992553710938 }, "fasttext": { "dclm": 0.00013374999980442226, "english": 0.9176800847053528, "fineweb_edu_approx": 0.6119473576545715, "eai_general_math": 0.0014071499463170767, "eai_open_web_math": 0.040086209774017334, "eai_web_code": 0.00022166999406181276 } }
{ "free_decimal_correspondence": { "primary": { "code": "692.8", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "Architecture — Designs and plans and Buildings — Specifications" } }, "secondary": { "code": "690", "labels": { "level_1": "Industrial arts, Technology, and Engineering", "level_2": "Building", "level_3": "" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "3", "label": "Procedural" } }, "document_type_v1": { "primary": { "code": "6", "label": "Promotional/Advertisement" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "3", "label": "Irrelevant Content" } }, "missing_content": { "primary": { "code": "0", "label": "No missing content" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "17", "label": "Product Page" }, "secondary": { "code": "21", "label": "Customer Support" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "2", "label": "High School Level" } } }
f0efa13f8f25d2994d4b9f7294f5230e
7,582,608,152,492,554,000
Work/Life Imbalance 27 Jul WLI Episode 30: Watermelon Park July 27, 2018 A bit of a short episode this week due to scheduling constraints, so enjoy this condensed “all killer, no filler” episode! In this episode, we talk waterspo... err, water parks, quaint American tourist traps, belt bifurcation, and going commando. This week’s Indie Podcast Corner: @BrookReadingPod! This week’s promo: @YouCanRewindIt!
{ "url": "https://worklifeimbalance.podbean.com/e/wli-episode-30-watermelon-park/", "source_domain": "worklifeimbalance.podbean.com", "snapshot_id": "crawl=CC-MAIN-2019-43", "warc_metadata": { "Content-Length": "48353", "Content-Type": "application/http; msgtype=response", "WARC-Block-Digest": "sha1:Y6V4SRZTEE2CB4Z6DE7YM776XYR3CJGV", "WARC-Concurrent-To": "<urn:uuid:9e7cbe85-7739-4023-9221-fd7a229182fb>", "WARC-Date": "2019-10-17T20:49:04Z", "WARC-IP-Address": "54.174.236.155", "WARC-Identified-Payload-Type": "text/html", "WARC-Payload-Digest": "sha1:FH6FJ3T5UQCQDNV3SELXWHE54W2Q2INZ", "WARC-Record-ID": "<urn:uuid:b4984df7-502b-438f-bade-d9873096eac6>", "WARC-Target-URI": "https://worklifeimbalance.podbean.com/e/wli-episode-30-watermelon-park/", "WARC-Truncated": null, "WARC-Type": "response", "WARC-Warcinfo-ID": "<urn:uuid:5a31be00-1616-4b43-8f4d-f555e627918d>" }, "warc_info": "isPartOf: CC-MAIN-2019-43\r\npublisher: Common Crawl\r\ndescription: Wide crawl of the web for October 2019\r\noperator: Common Crawl Admin ([email protected])\r\nhostname: ip-10-67-67-201.ec2.internal\r\nsoftware: Apache Nutch 1.16 (modified, https://github.com/commoncrawl/nutch/)\r\nrobots: checked via crawler-commons 1.1-SNAPSHOT (https://github.com/crawler-commons/crawler-commons)\r\nformat: WARC File Format 1.1\r\nconformsTo: http://iipc.github.io/warc-specifications/specifications/warc-format/warc-1.1/" }
{ "line_start_idx": [ 0, 20, 21, 24, 28, 29, 61, 62, 76, 77, 200, 201, 325, 326, 378, 379 ], "line_end_idx": [ 20, 21, 24, 28, 29, 61, 62, 76, 77, 200, 201, 325, 326, 378, 379, 414 ] }
{ "red_pajama_v2": { "ccnet_original_length": 414, "ccnet_original_nlines": 15, "rps_doc_curly_bracket": 0, "rps_doc_ldnoobw_words": 0, "rps_doc_lorem_ipsum": 0, "rps_doc_stop_word_fraction": 0.16091954708099365, "rps_doc_ut1_blacklist": 0, "rps_doc_frac_all_caps_words": 0.022988509386777878, "rps_doc_frac_lines_end_with_ellipsis": 0, "rps_doc_frac_no_alph_words": 0.3103448152542114, "rps_doc_frac_unique_words": 0.8360655903816223, "rps_doc_mean_word_length": 5.34426212310791, "rps_doc_num_sentences": 5, "rps_doc_symbol_to_word_ratio": 0.011494250036776066, "rps_doc_unigram_entropy": 3.8198697566986084, "rps_doc_word_count": 61, "rps_doc_frac_chars_dupe_10grams": 0, "rps_doc_frac_chars_dupe_5grams": 0, "rps_doc_frac_chars_dupe_6grams": 0, "rps_doc_frac_chars_dupe_7grams": 0, "rps_doc_frac_chars_dupe_8grams": 0, "rps_doc_frac_chars_dupe_9grams": 0, "rps_doc_frac_chars_top_2gram": 0.061349689960479736, "rps_doc_frac_chars_top_3gram": 0, "rps_doc_frac_chars_top_4gram": 0, "rps_doc_books_importance": -42.98238754272461, "rps_doc_books_importance_length_correction": -42.98241424560547, "rps_doc_openwebtext_importance": -21.91798210144043, "rps_doc_openwebtext_importance_length_correction": -21.91800880432129, "rps_doc_wikipedia_importance": -21.408689498901367, "rps_doc_wikipedia_importance_length_correction": -21.40871810913086 }, "fasttext": { "dclm": 0.00011361000360921025, "english": 0.8951637148857117, "fineweb_edu_approx": 0.9110109210014343, "eai_general_math": 0.003214180003851652, "eai_open_web_math": 0.08110827207565308, "eai_web_code": 0.000008340000022144523 } }
{ "free_decimal_correspondence": { "primary": { "code": "791.457", "labels": { "level_1": "Arts", "level_2": "Amusements and Recreation", "level_3": "" } }, "secondary": { "code": "306.3", "labels": { "level_1": "Social sciences", "level_2": "", "level_3": "Culture" } } }, "bloom_cognitive_process": { "primary": { "code": "2", "label": "Understand" }, "secondary": { "code": "3", "label": "Apply" } }, "bloom_knowledge_domain": { "primary": { "code": "1", "label": "Factual" }, "secondary": { "code": "2", "label": "Conceptual" } }, "document_type_v1": { "primary": { "code": "9", "label": "Personal/Misc" }, "secondary": { "code": "-1", "label": "Abstain" } }, "extraction_artifacts": { "primary": { "code": "0", "label": "No Artifacts" }, "secondary": { "code": "-1", "label": "Abstain" } }, "missing_content": { "primary": { "code": "1", "label": "Truncated Snippets" }, "secondary": { "code": "-1", "label": "Abstain" } }, "document_type_v2": { "primary": { "code": "4", "label": "Audio Transcript" }, "secondary": { "code": "22", "label": "Truncated" } }, "reasoning_depth": { "primary": { "code": "1", "label": "No Reasoning" }, "secondary": { "code": "2", "label": "Basic Reasoning" } }, "technical_correctness": { "primary": { "code": "6", "label": "Not Applicable/Indeterminate" }, "secondary": { "code": "4", "label": "Highly Correct" } }, "education_level": { "primary": { "code": "1", "label": "General Audience" }, "secondary": { "code": "5", "label": "Indeterminate" } } }
f0efa13f8f25d2994d4b9f7294f5230e